mirror of https://git.ffmpeg.org/ffmpeg.git
fwse: convert to new channel layout API
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
07cdec42d1
commit
7261f2a180
|
@ -40,6 +40,7 @@ static int fwse_probe(const AVProbeData *p)
|
|||
static int fwse_read_header(AVFormatContext *s)
|
||||
{
|
||||
unsigned start_offset, version;
|
||||
int channels;
|
||||
AVIOContext *pb = s->pb;
|
||||
AVCodecParameters *par;
|
||||
AVStream *st;
|
||||
|
@ -59,13 +60,10 @@ static int fwse_read_header(AVFormatContext *s)
|
|||
par->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
par->codec_id = AV_CODEC_ID_ADPCM_IMA_MTF;
|
||||
par->format = AV_SAMPLE_FMT_S16;
|
||||
par->channels = avio_rl32(pb);
|
||||
if (par->channels != 1 && par->channels != 2)
|
||||
channels = avio_rl32(pb);
|
||||
if (channels != 1 && channels != 2)
|
||||
return AVERROR_INVALIDDATA;
|
||||
if (par->channels == 1)
|
||||
par->channel_layout = AV_CH_LAYOUT_MONO;
|
||||
else if (par->channels == 2)
|
||||
par->channel_layout = AV_CH_LAYOUT_STEREO;
|
||||
av_channel_layout_default(&par->ch_layout, channels);
|
||||
st->duration = avio_rl32(pb);
|
||||
par->sample_rate = avio_rl32(pb);
|
||||
if (par->sample_rate <= 0 || par->sample_rate > INT_MAX)
|
||||
|
|
Loading…
Reference in New Issue