diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-03-21 23:29:34 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-03-21 23:29:34 +0000 |
commit | a0dd3c0039e239095a3f2585d4d47fec7e20b1dc (patch) | |
tree | c59498ab8df30333f6b4c3c29affb3025f61fe72 /libavformat/mov.c | |
parent | f82674e584d0550f3000658c6a579c4b9db139fe (diff) | |
download | ffmpeg-a0dd3c0039e239095a3f2585d4d47fec7e20b1dc.tar.gz |
reset codec width/height for h264 forcing decoder to parse extradata
Originally committed as revision 18134 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-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 4621fc8a29..d0dbef62af 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1440,6 +1440,9 @@ static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOVAtom atom) #if CONFIG_H263_DECODER case CODEC_ID_H263: #endif +#if CONFIG_H264_DECODER + case CODEC_ID_H264: +#endif #if CONFIG_MPEG4_DECODER case CODEC_ID_MPEG4: #endif |