From 391872e467a1e72d78fbf6edf57ce1d528e744b6 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Mon, 26 May 2008 21:52:54 +0000 Subject: aac chan config is 0 if bitstream contains program_config_element Originally committed as revision 13437 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat') diff --git a/libavformat/mov.c b/libavformat/mov.c index eca6a411f8..86a3e0b767 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -408,7 +408,7 @@ static int mov_read_esds(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) MPEG4AudioConfig cfg; ff_mpeg4audio_get_config(&cfg, st->codec->extradata, st->codec->extradata_size); - if (!cfg.chan_config || cfg.chan_config > 7) + if (cfg.chan_config > 7) return -1; st->codec->channels = ff_mpeg4audio_channels[cfg.chan_config]; if (cfg.object_type == 29 && cfg.sampling_index < 3) // old mp3on4 -- cgit v1.2.3