提交 285b570f 编写于 作者: L Loren Merritt

fix a memory leak on seeking.

Originally committed as revision 5062 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 788223b1
......@@ -3909,8 +3909,13 @@ static void idr(H264Context *h){
static void flush_dpb(AVCodecContext *avctx){
H264Context *h= avctx->priv_data;
int i;
for(i=0; i<16; i++)
for(i=0; i<16; i++) {
if(h->delayed_pic[i])
h->delayed_pic[i]->reference= 0;
h->delayed_pic[i]= NULL;
}
if(h->delayed_output_pic)
h->delayed_output_pic->reference= 0;
h->delayed_output_pic= NULL;
idr(h);
if(h->s.current_picture_ptr)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册