Commit a0b8eec7 authored by Michael Niedermayer's avatar Michael Niedermayer

default_filter_frame: fix argument name

Based on code by Anton Khirnov
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f6dd1455
......@@ -157,10 +157,9 @@ fail:
return NULL;
}
static int default_filter_frame(AVFilterLink *link,
AVFilterBufferRef *samplesref)
static int default_filter_frame(AVFilterLink *link, AVFilterBufferRef *frame)
{
return ff_filter_frame(link->dst->outputs[0], samplesref);
return ff_filter_frame(link->dst->outputs[0], frame);
}
int ff_filter_frame_framed(AVFilterLink *link, AVFilterBufferRef *samplesref)
......
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