From 72385798357e53f64ba5ac405fb1b227ddcffc6c Mon Sep 17 00:00:00 2001 From: Mike Melanson Date: Sun, 5 Oct 2003 21:48:16 +0000 Subject: [PATCH] This patch marks frames used in RPZA decoder as reference frames, from Roberto Togni (rtogni at freemail.it) Originally committed as revision 2347 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/rpza.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/rpza.c b/libavcodec/rpza.c index 8027cfd..675d7f3 100644 --- a/libavcodec/rpza.c +++ b/libavcodec/rpza.c @@ -267,6 +267,7 @@ static int rpza_decode_frame(AVCodecContext *avctx, s->buf = buf; s->size = buf_size; + s->frame.reference = 1; if (avctx->get_buffer(avctx, &s->frame)) { printf (" RPZA Video: get_buffer() failed\n"); return -1; -- 2.7.4