diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-05-27 08:06:45 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-05-27 08:06:45 +0000 |
commit | 8a59d9a385eaad3e246481417dcd06d4a2b53682 (patch) | |
tree | 34494c1c77e7b1e358402fa5e1ec6afd5f49180d /libavformat | |
parent | 367b16cbe4e69788838d3ea5de374b246509afd3 (diff) | |
download | ffmpeg-streaming-8a59d9a385eaad3e246481417dcd06d4a2b53682.zip ffmpeg-streaming-8a59d9a385eaad3e246481417dcd06d4a2b53682.tar.gz |
fix "incorrect frame size" errors with small.nuv
Originally committed as revision 9133 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/nuv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/nuv.c b/libavformat/nuv.c index cd5ece7..70d4d48 100644 --- a/libavformat/nuv.c +++ b/libavformat/nuv.c @@ -95,6 +95,7 @@ static int get_codec_data(ByteIOContext *pb, AVStream *vst, ast->codec->codec_id = wav_codec_get_id(ast->codec->codec_tag, ast->codec->bits_per_sample); + ast->need_parsing = AVSTREAM_PARSE_FULL; } else url_fskip(pb, 4 * 4); |