diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-09-07 20:19:37 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-09-07 20:19:37 +0000 |
commit | a41104f86a296299cd74f2878e08312b5079cc8f (patch) | |
tree | 3dc5f3198f453c7426ff324d1916ff4c25025043 | |
parent | 2ad4648f973e74cd2d42b9cae95e06b7d920007b (diff) | |
download | ffmpeg-a41104f86a296299cd74f2878e08312b5079cc8f.tar.gz |
fix sound of SampleVideo.mov (mp2 in mov)
Originally committed as revision 6191 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 30295d9e56..8441a32080 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1065,6 +1065,9 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) st->codec->sample_rate= 8000; st->codec->channels= 1; /* really needed */ break; + case CODEC_ID_MP2: + st->need_parsing = 1; + break; default: break; } |