mirror of https://git.ffmpeg.org/ffmpeg.git
avformat: Inline raw_codec_id where known
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
d0b03b4182
commit
830b5cc35e
|
@ -113,7 +113,7 @@ static int adts_aac_read_header(AVFormatContext *s)
|
|||
return AVERROR(ENOMEM);
|
||||
|
||||
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
st->codecpar->codec_id = s->iformat->raw_codec_id;
|
||||
st->codecpar->codec_id = AV_CODEC_ID_AAC;
|
||||
ffstream(st)->need_parsing = AVSTREAM_PARSE_FULL_RAW;
|
||||
|
||||
ff_id3v1_read(s);
|
||||
|
|
|
@ -120,7 +120,7 @@ static int adx_read_header(AVFormatContext *s)
|
|||
|
||||
par->ch_layout.nb_channels = channels;
|
||||
par->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
par->codec_id = s->iformat->raw_codec_id;
|
||||
par->codec_id = AV_CODEC_ID_ADPCM_ADX;
|
||||
par->bit_rate = (int64_t)par->sample_rate * par->ch_layout.nb_channels * BLOCK_SIZE * 8LL / BLOCK_SAMPLES;
|
||||
|
||||
avpriv_set_pts_info(st, 64, BLOCK_SAMPLES, par->sample_rate);
|
||||
|
|
|
@ -50,7 +50,7 @@ static int dfpwm_read_header(AVFormatContext *s)
|
|||
par = st->codecpar;
|
||||
|
||||
par->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
par->codec_id = s->iformat->raw_codec_id;
|
||||
par->codec_id = AV_CODEC_ID_DFPWM;
|
||||
par->sample_rate = s1->sample_rate;
|
||||
#if FF_API_OLD_CHANNEL_LAYOUT
|
||||
if (s1->ch_layout.nb_channels) {
|
||||
|
|
|
@ -78,7 +78,7 @@ static int gsm_read_header(AVFormatContext *s)
|
|||
return AVERROR(ENOMEM);
|
||||
|
||||
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
st->codecpar->codec_id = s->iformat->raw_codec_id;
|
||||
st->codecpar->codec_id = AV_CODEC_ID_GSM;
|
||||
st->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO;
|
||||
st->codecpar->sample_rate = c->sample_rate;
|
||||
st->codecpar->bit_rate = GSM_BLOCK_SIZE * 8 * c->sample_rate / GSM_BLOCK_SAMPLES;
|
||||
|
|
|
@ -74,7 +74,7 @@ static int loas_read_header(AVFormatContext *s)
|
|||
return AVERROR(ENOMEM);
|
||||
|
||||
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
st->codecpar->codec_id = s->iformat->raw_codec_id;
|
||||
st->codecpar->codec_id = AV_CODEC_ID_AAC_LATM;
|
||||
ffstream(st)->need_parsing = AVSTREAM_PARSE_FULL_RAW;
|
||||
|
||||
//LCM of all possible AAC sample rates
|
||||
|
|
|
@ -80,7 +80,7 @@ static int ser_read_header(AVFormatContext *s)
|
|||
}
|
||||
|
||||
st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
|
||||
st->codecpar->codec_id = s->iformat->raw_codec_id;
|
||||
st->codecpar->codec_id = AV_CODEC_ID_RAWVIDEO;
|
||||
|
||||
avpriv_set_pts_info(st, 64, ser->framerate.den, ser->framerate.num);
|
||||
|
||||
|
|
|
@ -125,7 +125,7 @@ static int wsd_read_header(AVFormatContext *s)
|
|||
av_dict_set(&s->metadata, "playback_time", playback_time, 0);
|
||||
|
||||
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
st->codecpar->codec_id = s->iformat->raw_codec_id;
|
||||
st->codecpar->codec_id = AV_CODEC_ID_DSD_MSBF;
|
||||
st->codecpar->sample_rate = avio_rb32(pb) / 8;
|
||||
avio_skip(pb, 4);
|
||||
st->codecpar->ch_layout.nb_channels = avio_r8(pb) & 0xF;
|
||||
|
|
Loading…
Reference in New Issue