提交 efb36bfc 编写于 作者: V Vitor Sessak

Make avfilter_ref_pic also handle removal of permissions for the caller.

Commited in SoC by Bobby Bingham on 2007-07-08 16:14:49

Originally committed as revision 11980 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 426d5c25
...@@ -73,10 +73,11 @@ void avfilter_default_end_frame(AVFilterLink *link) ...@@ -73,10 +73,11 @@ void avfilter_default_end_frame(AVFilterLink *link)
link->cur_pic = NULL; link->cur_pic = NULL;
} }
AVFilterPicRef *avfilter_ref_pic(AVFilterPicRef *ref) AVFilterPicRef *avfilter_ref_pic(AVFilterPicRef *ref, int pmask)
{ {
AVFilterPicRef *ret = av_malloc(sizeof(AVFilterPicRef)); AVFilterPicRef *ret = av_malloc(sizeof(AVFilterPicRef));
memcpy(ret, ref, sizeof(AVFilterPicRef)); memcpy(ret, ref, sizeof(AVFilterPicRef));
ret->perms &= pmask;
ret->pic->refcount ++; ret->pic->refcount ++;
return ret; return ret;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册