Commit 87fb268f authored by Zdenek Kabelac's avatar Zdenek Kabelac

* avoid usage of next/last buffer after flush

  (but there still something wrong when the first frame isn't keyframe)

Originally committed as revision 1403 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 628d601b
...@@ -677,7 +677,8 @@ void avcodec_flush_buffers(AVCodecContext *avctx) ...@@ -677,7 +677,8 @@ void avcodec_flush_buffers(AVCodecContext *avctx)
if(s->picture[i].data[0] && ( s->picture[i].type == FF_BUFFER_TYPE_INTERNAL if(s->picture[i].data[0] && ( s->picture[i].type == FF_BUFFER_TYPE_INTERNAL
|| s->picture[i].type == FF_BUFFER_TYPE_USER)) || s->picture[i].type == FF_BUFFER_TYPE_USER))
avctx->release_buffer(avctx, (AVFrame*)&s->picture[i]); avctx->release_buffer(avctx, (AVFrame*)&s->picture[i]);
} }
s->last_picture.data[0] = s->next_picture.data[0] = NULL;
break; break;
default: default:
//FIXME //FIXME
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment