From: Luca Barbato Date: Tue, 13 Aug 2013 04:01:48 +0000 (+0200) Subject: nuv: Reset the frame on resize X-Git-Tag: v0.8.9~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=abb41f19cc10fea09fb16d9ecc9967b2a78cf7b0;p=platform%2Fupstream%2Flibav.git nuv: Reset the frame on resize Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Luca Barbato Conflicts: libavcodec/nuv.c --- diff --git a/libavcodec/nuv.c b/libavcodec/nuv.c index 8545d863d..ea5e9ee04 100644 --- a/libavcodec/nuv.c +++ b/libavcodec/nuv.c @@ -129,6 +129,8 @@ static int codec_reinit(AVCodecContext *avctx, int width, int height, int qualit } else c->decomp_buf = ptr; rtjpeg_decode_init(&c->rtj, &c->dsp, c->width, c->height, c->lq, c->cq); + if (c->pic.data[0]) + avctx->release_buffer(avctx, &c->pic); } else if (quality != c->quality) rtjpeg_decode_init(&c->rtj, &c->dsp, c->width, c->height, c->lq, c->cq); return 0;