You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
default_filter_frame: fix argument name
Based on code by Anton Khirnov Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user