diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-03-26 17:05:28 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-03-26 17:05:28 +0000 |
commit | 3ed73c46ca80a62edc0f74ed60aff08d1b6f5766 (patch) | |
tree | 8025e86a7a641e3bc458a562b89fb30658fe929c | |
parent | e31bd3e309d766dc240c4f91331599ffcde1c867 (diff) | |
download | ffmpeg-3ed73c46ca80a62edc0f74ed60aff08d1b6f5766.tar.gz |
let vorbis decoder init too, fix mi2_vorbis51.mp4
Originally committed as revision 5223 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mov.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 0e6e8dfe18..6d6d3d5787 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1143,6 +1143,9 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) #ifdef CONFIG_FAAD case CODEC_ID_AAC: #endif +#ifdef CONFIG_VORBIS_DECODER + case CODEC_ID_VORBIS: +#endif case CODEC_ID_MP3ON4: st->codec->sample_rate= 0; /* let decoder init parameters properly */ break; |