From cc0241283bd591dad6e6aeb1c4150c68efb8db89 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 9 Apr 2009 21:19:25 +0000 Subject: [PATCH] Make sure the next used frame is released so get_buffer() wont fail. Originally committed as revision 18399 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/snow.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/snow.c b/libavcodec/snow.c index b919ef306a..49b7ff2563 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -4146,6 +4146,8 @@ static int frame_start(SnowContext *s){ s->dsp.draw_edges(s->current_picture.data[2], s->current_picture.linesize[2], w>>1, h>>1, EDGE_WIDTH/2); } + release_buffer(s->avctx); + tmp= s->last_picture[s->max_ref_frames-1]; memmove(s->last_picture+1, s->last_picture, (s->max_ref_frames-1)*sizeof(AVFrame)); memmove(s->halfpel_plane+1, s->halfpel_plane, (s->max_ref_frames-1)*sizeof(void*)*4*4);