Skip to content

Commit d612a21

Browse files
committedFeb 12, 2017
for #299, refine audio codec object name
1 parent caf69f1 commit d612a21

9 files changed

+66
-64
lines changed
 

‎trunk/src/app/srs_app_dvr.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -536,8 +536,8 @@ int SrsDvrMp4Segmenter::encode_audio(SrsSharedPtrMessage* audio)
536536
uint8_t v = buffer->read_1bytes();
537537
SrsAudioCodecId sound_format = (SrsAudioCodecId)((v >> 4) & 0x0f);
538538
SrsAudioSampleRate sound_rate = (SrsAudioSampleRate)((v >> 2) & 0x03);
539-
SrsAudioSampleSize sound_size = (SrsAudioSampleSize)((v >> 1) & 0x01);
540-
SrsAudioSoundType channels = (SrsAudioSoundType)(v&0x01);
539+
SrsAudioSampleBits sound_size = (SrsAudioSampleBits)((v >> 1) & 0x01);
540+
SrsAudioChannels channels = (SrsAudioChannels)(v&0x01);
541541

542542
uint16_t ct = 0x00;
543543
if (sound_format == SrsAudioCodecIdAAC) {

‎trunk/src/app/srs_app_rtsp.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -521,8 +521,8 @@ int SrsRtspConn::write_sequence_header()
521521
SrsAudioCodecConfig* dec = format->acodec;
522522

523523
acodec->sound_format = SrsAudioCodecIdAAC;
524-
acodec->sound_type = (dec->aac_channels == 2)? SrsAudioSoundTypeStereo : SrsAudioSoundTypeMono;
525-
acodec->sound_size = SrsAudioSampleSize16bit;
524+
acodec->sound_type = (dec->aac_channels == 2)? SrsAudioChannelsStereo : SrsAudioChannelsMono;
525+
acodec->sound_size = SrsAudioSampleBits16bit;
526526
acodec->aac_packet_type = 0;
527527

528528
static int srs_aac_srates[] = {

‎trunk/src/app/srs_app_statistic.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ SrsStatisticStream::SrsStatisticStream()
106106
has_audio = false;
107107
acodec = SrsAudioCodecIdReserved1;
108108
asample_rate = SrsAudioSampleRateReserved;
109-
asound_type = SrsAudioSoundTypeReserved;
109+
asound_type = SrsAudioChannelsReserved;
110110
aac_object = SrsAacObjectTypeReserved;
111111
width = 0;
112112
height = 0;
@@ -329,7 +329,7 @@ int SrsStatistic::on_video_info(SrsRequest* req,
329329
}
330330

331331
int SrsStatistic::on_audio_info(SrsRequest* req,
332-
SrsAudioCodecId acodec, SrsAudioSampleRate asample_rate, SrsAudioSoundType asound_type,
332+
SrsAudioCodecId acodec, SrsAudioSampleRate asample_rate, SrsAudioChannels asound_type,
333333
SrsAacObjectType aac_object
334334
) {
335335
int ret = ERROR_SUCCESS;

‎trunk/src/app/srs_app_statistic.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ struct SrsStatisticStream
9292
bool has_audio;
9393
SrsAudioCodecId acodec;
9494
SrsAudioSampleRate asample_rate;
95-
SrsAudioSoundType asound_type;
95+
SrsAudioChannels asound_type;
9696
/**
9797
* audio specified
9898
* audioObjectType, in 1.6.2.1 AudioSpecificConfig, page 33,
@@ -177,7 +177,7 @@ class SrsStatistic
177177
* when got audio info for stream.
178178
*/
179179
virtual int on_audio_info(SrsRequest* req,
180-
SrsAudioCodecId acodec, SrsAudioSampleRate asample_rate, SrsAudioSoundType asound_type,
180+
SrsAudioCodecId acodec, SrsAudioSampleRate asample_rate, SrsAudioChannels asound_type,
181181
SrsAacObjectType aac_object
182182
);
183183
/**

‎trunk/src/kernel/srs_kernel_codec.cpp

+11-11
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ string srs_audio_codec_id2str(SrsAudioCodecId codec)
7878
}
7979
}
8080

81-
string srs_codec_audio_samplerate2str(SrsAudioSampleRate v)
81+
string srs_audio_sample_rate2str(SrsAudioSampleRate v)
8282
{
8383
switch (v) {
8484
case SrsAudioSampleRate5512: return "5512";
@@ -215,20 +215,20 @@ int srs_aac_srates[] =
215215
7350, 0, 0, 0
216216
};
217217

218-
string srs_audio_samplesize2str(SrsAudioSampleSize v)
218+
string srs_audio_sample_bits2str(SrsAudioSampleBits v)
219219
{
220220
switch (v) {
221-
case SrsAudioSampleSize16bit: return "16bits";
222-
case SrsAudioSampleSize8bit: return "8bits";
221+
case SrsAudioSampleBits16bit: return "16bits";
222+
case SrsAudioSampleBits8bit: return "8bits";
223223
default: return "Other";
224224
}
225225
}
226226

227-
string srs_audio_channels2str(SrsAudioSoundType v)
227+
string srs_audio_channels2str(SrsAudioChannels v)
228228
{
229229
switch (v) {
230-
case SrsAudioSoundTypeStereo: return "Stereo";
231-
case SrsAudioSoundTypeMono: return "Mono";
230+
case SrsAudioChannelsStereo: return "Stereo";
231+
case SrsAudioChannelsMono: return "Mono";
232232
default: return "Other";
233233
}
234234
}
@@ -363,8 +363,8 @@ SrsAudioCodecConfig::SrsAudioCodecConfig()
363363
{
364364
id = SrsAudioCodecIdForbidden;
365365
sound_rate = SrsAudioSampleRateForbidden;
366-
sound_size = SrsAudioSampleSizeForbidden;
367-
sound_type = SrsAudioSoundTypeForbidden;
366+
sound_size = SrsAudioSampleBitsForbidden;
367+
sound_type = SrsAudioChannelsForbidden;
368368

369369
audio_data_rate = 0;
370370

@@ -1270,9 +1270,9 @@ int SrsFormat::audio_aac_demux(SrsBuffer* stream, int64_t timestamp)
12701270
SrsAudioCodecId codec_id = (SrsAudioCodecId)sound_format;
12711271
acodec->id = codec_id;
12721272

1273-
acodec->sound_type = (SrsAudioSoundType)sound_type;
1273+
acodec->sound_type = (SrsAudioChannels)sound_type;
12741274
acodec->sound_rate = (SrsAudioSampleRate)sound_rate;
1275-
acodec->sound_size = (SrsAudioSampleSize)sound_size;
1275+
acodec->sound_size = (SrsAudioSampleBits)sound_size;
12761276

12771277
// we support h.264+mp3 for hls.
12781278
if (codec_id == SrsAudioCodecIdMP3) {

‎trunk/src/kernel/srs_kernel_codec.hpp

+29-27
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ enum SrsAudioSampleRate
199199
SrsAudioSampleRate22050 = 2,
200200
SrsAudioSampleRate44100 = 3,
201201
};
202-
std::string srs_codec_audio_samplerate2str(SrsAudioSampleRate v);
202+
std::string srs_audio_sample_rate2str(SrsAudioSampleRate v);
203203

204204
/**
205205
* The frame type, for example, audio, video or data.
@@ -291,40 +291,42 @@ extern int srs_aac_srates[];
291291
#define SrsMaxNbSamples 256
292292

293293
/**
294-
* the FLV/RTMP supported audio sample size.
295-
* Size of each audio sample. This parameter only pertains to
296-
* uncompressed formats. Compressed formats always decode
297-
* to 16 bits internally.
298-
* 0 = 8-bit samples
299-
* 1 = 16-bit samples
300-
*/
301-
enum SrsAudioSampleSize
294+
* The audio sample size in bits.
295+
* @doc video_file_format_spec_v10_1.pdf, page 76, E.4.2 Audio Tags
296+
* Size of each audio sample. This parameter only pertains to
297+
* uncompressed formats. Compressed formats always decode
298+
* to 16 bits internally.
299+
* 0 = 8-bit samples
300+
* 1 = 16-bit samples
301+
*/
302+
enum SrsAudioSampleBits
302303
{
303304
// set to the max value to reserved, for array map.
304-
SrsAudioSampleSizeReserved = 2,
305-
SrsAudioSampleSizeForbidden = 2,
305+
SrsAudioSampleBitsReserved = 2,
306+
SrsAudioSampleBitsForbidden = 2,
306307

307-
SrsAudioSampleSize8bit = 0,
308-
SrsAudioSampleSize16bit = 1,
308+
SrsAudioSampleBits8bit = 0,
309+
SrsAudioSampleBits16bit = 1,
309310
};
310-
std::string srs_audio_samplesize2str(SrsAudioSampleSize v);
311+
std::string srs_audio_sample_bits2str(SrsAudioSampleBits v);
311312

312313
/**
313-
* the FLV/RTMP supported audio sound type/channel.
314-
* Mono or stereo sound
315-
* 0 = Mono sound
316-
* 1 = Stereo sound
317-
*/
318-
enum SrsAudioSoundType
314+
* The audio channels.
315+
* @doc video_file_format_spec_v10_1.pdf, page 77, E.4.2 Audio Tags
316+
* Mono or stereo sound
317+
* 0 = Mono sound
318+
* 1 = Stereo sound
319+
*/
320+
enum SrsAudioChannels
319321
{
320322
// set to the max value to reserved, for array map.
321-
SrsAudioSoundTypeReserved = 2,
322-
SrsAudioSoundTypeForbidden = 2,
323+
SrsAudioChannelsReserved = 2,
324+
SrsAudioChannelsForbidden = 2,
323325

324-
SrsAudioSoundTypeMono = 0,
325-
SrsAudioSoundTypeStereo = 1,
326+
SrsAudioChannelsMono = 0,
327+
SrsAudioChannelsStereo = 1,
326328
};
327-
std::string srs_audio_channels2str(SrsAudioSoundType v);
329+
std::string srs_audio_channels2str(SrsAudioChannels v);
328330

329331
/**
330332
* Table 7-1 - NAL unit type codes, syntax element categories, and NAL unit type classes
@@ -518,8 +520,8 @@ class SrsAudioCodecConfig : public SrsCodecConfig
518520
SrsAudioCodecId id;
519521
// audio aac specified.
520522
SrsAudioSampleRate sound_rate;
521-
SrsAudioSampleSize sound_size;
522-
SrsAudioSoundType sound_type;
523+
SrsAudioSampleBits sound_size;
524+
SrsAudioChannels sound_type;
523525
int audio_data_rate; // in bps
524526
public:
525527
/**

‎trunk/src/kernel/srs_kernel_mp4.cpp

+12-12
Original file line numberDiff line numberDiff line change
@@ -3861,8 +3861,8 @@ SrsMp4Decoder::SrsMp4Decoder()
38613861
pasc = pavcc = NULL;
38623862
asc_written = avcc_written = false;
38633863
sample_rate = SrsAudioSampleRateForbidden;
3864-
sound_bits = SrsAudioSampleSizeForbidden;
3865-
channels = SrsAudioSoundTypeForbidden;
3864+
sound_bits = SrsAudioSampleBitsForbidden;
3865+
channels = SrsAudioChannelsForbidden;
38663866
samples = new SrsMp4SampleManager();
38673867
current_index = 0;
38683868
current_offset = 0;
@@ -4062,15 +4062,15 @@ int SrsMp4Decoder::parse_moov(SrsMp4MovieBox* moov)
40624062
}
40634063

40644064
if (mp4a->samplesize == 16) {
4065-
sound_bits = SrsAudioSampleSize16bit;
4065+
sound_bits = SrsAudioSampleBits16bit;
40664066
} else {
4067-
sound_bits = SrsAudioSampleSize8bit;
4067+
sound_bits = SrsAudioSampleBits8bit;
40684068
}
40694069

40704070
if (mp4a->channelcount == 2) {
4071-
channels = SrsAudioSoundTypeStereo;
4071+
channels = SrsAudioChannelsStereo;
40724072
} else {
4073-
channels = SrsAudioSoundTypeMono;
4073+
channels = SrsAudioChannelsMono;
40744074
}
40754075
}
40764076

@@ -4117,8 +4117,8 @@ int SrsMp4Decoder::parse_moov(SrsMp4MovieBox* moov)
41174117
ss << ", soun=" << moov->nb_soun_tracks() << "("
41184118
<< srs_audio_codec_id2str(acodec) << "," << nb_asc << "BSH"
41194119
<< "," << srs_audio_channels2str(channels)
4120-
<< "," << srs_audio_samplesize2str(sound_bits)
4121-
<< "," << srs_codec_audio_samplerate2str(sample_rate)
4120+
<< "," << srs_audio_sample_bits2str(sound_bits)
4121+
<< "," << srs_audio_sample_rate2str(sample_rate)
41224122
<< ")";
41234123

41244124
srs_trace("MP4 moov %s", ss.str().c_str());
@@ -4233,8 +4233,8 @@ SrsMp4Encoder::SrsMp4Encoder()
42334233

42344234
acodec = SrsAudioCodecIdForbidden;
42354235
sample_rate = SrsAudioSampleRateForbidden;
4236-
sound_bits = SrsAudioSampleSizeForbidden;
4237-
channels = SrsAudioSoundTypeForbidden;
4236+
sound_bits = SrsAudioSampleBitsForbidden;
4237+
channels = SrsAudioChannelsForbidden;
42384238
vcodec = SrsVideoCodecIdForbidden;
42394239
}
42404240

@@ -4494,12 +4494,12 @@ int SrsMp4Encoder::flush()
44944494

44954495
SrsMp4AudioSampleEntry* mp4a = new SrsMp4AudioSampleEntry();
44964496
mp4a->samplerate = uint32_t(srs_flv_srates[sample_rate]) << 16;
4497-
if (sound_bits == SrsAudioSampleSize16bit) {
4497+
if (sound_bits == SrsAudioSampleBits16bit) {
44984498
mp4a->samplesize = 16;
44994499
} else {
45004500
mp4a->samplesize = 8;
45014501
}
4502-
if (channels == SrsAudioSoundTypeStereo) {
4502+
if (channels == SrsAudioChannelsStereo) {
45034503
mp4a->channelcount = 2;
45044504
} else {
45054505
mp4a->channelcount = 1;

‎trunk/src/kernel/srs_kernel_mp4.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1579,9 +1579,9 @@ class SrsMp4Decoder
15791579
// The audio sample rate.
15801580
SrsAudioSampleRate sample_rate;
15811581
// The audio sound bits.
1582-
SrsAudioSampleSize sound_bits;
1582+
SrsAudioSampleBits sound_bits;
15831583
// The audio sound type.
1584-
SrsAudioSoundType channels;
1584+
SrsAudioChannels channels;
15851585
private:
15861586
// For AAC, the asc in esds box.
15871587
int nb_asc;
@@ -1652,9 +1652,9 @@ class SrsMp4Encoder
16521652
// The audio sample rate.
16531653
SrsAudioSampleRate sample_rate;
16541654
// The audio sound bits.
1655-
SrsAudioSampleSize sound_bits;
1655+
SrsAudioSampleBits sound_bits;
16561656
// The audio sound type.
1657-
SrsAudioSoundType channels;
1657+
SrsAudioChannels channels;
16581658
private:
16591659
// For AAC, the asc in esds box.
16601660
int nb_asc;

‎trunk/src/libs/srs_librtmp.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -536,9 +536,9 @@ typedef struct {
536536

537537
// The audio sample rate, it's SrsAudioSampleRate.
538538
uint8_t sample_rate;
539-
// The audio sound bits, it's SrsAudioSampleSize.
539+
// The audio sound bits, it's SrsAudioSampleBits.
540540
uint8_t sound_bits;
541-
// The audio sound type, it's SrsAudioSoundType.
541+
// The audio sound type, it's SrsAudioChannels.
542542
uint8_t channels;
543543

544544
// The size of sample payload in bytes.

0 commit comments

Comments
 (0)
Please sign in to comment.