Rename functions and fields:
avfilter_(un)ref_pic -> avfilter_(un)ref_buffer avfilter_copy_picref_props -> avfilter_copy_buffer_ref_props AVFilterBufferRef.pic -> AVFilterBufferRef.buffer They have been renamed to allow sharing with audio. Patch by S.N. Hemanth Meenakshisundaram $smeenaks$ucsd$edu$. Originally committed as revision 24731 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
committed by
Stefano Sabatini
parent
ecc8dada37
commit
7fce481a69
@@ -132,7 +132,7 @@ static int config_output(AVFilterLink *link)
|
||||
static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
|
||||
{
|
||||
CropContext *crop = link->dst->priv;
|
||||
AVFilterBufferRef *ref2 = avfilter_ref_pic(picref, ~0);
|
||||
AVFilterBufferRef *ref2 = avfilter_ref_buffer(picref, ~0);
|
||||
int i;
|
||||
|
||||
ref2->w = crop->w;
|
||||
|
||||
Reference in New Issue
Block a user