mirror of https://git.ffmpeg.org/ffmpeg.git
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
This commit is contained in:
parent
426d5c252f
commit
efb36bfc21
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue