diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-18 19:10:21 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-21 16:39:34 +0100 |
commit | 4931c8f0f10bf8dedcf626104a6b85bfefadc6f2 (patch) | |
tree | 13d80d4bdc7f527ea7099c3742dea80054187c21 /libavcodec | |
parent | eef5c35b4352ec49ca41f6198bee8a976b1f81e5 (diff) | |
download | ffmpeg-4931c8f0f10bf8dedcf626104a6b85bfefadc6f2.tar.gz |
svq1dec: call avcodec_set_dimensions() after dimensions changed.
Fixes NGS00148
Found-by: Phillip Langlois
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/svq1dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/svq1dec.c b/libavcodec/svq1dec.c index cb8a622f26..abd8adc6d1 100644 --- a/libavcodec/svq1dec.c +++ b/libavcodec/svq1dec.c @@ -658,6 +658,7 @@ static int svq1_decode_frame(AVCodecContext *avctx, av_dlog(s->avctx, "Error in svq1_decode_frame_header %i\n",result); return result; } + avcodec_set_dimensions(avctx, s->width, s->height); //FIXME this avoids some confusion for "B frames" without 2 references //this should be removed after libavcodec can handle more flexible picture types & ordering |