You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Make avfilter_insert_filter() print the instance name of the
auto-inserted scale filter, rather than the filter name, as this provides more information. Originally committed as revision 21123 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -105,7 +105,7 @@ int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
|
||||
unsigned in, unsigned out)
|
||||
{
|
||||
av_log(link->dst, AV_LOG_INFO, "auto-inserting filter '%s'\n",
|
||||
filt->filter->name);
|
||||
filt->name);
|
||||
|
||||
link->dst->inputs[link->dstpad] = NULL;
|
||||
if(avfilter_link(filt, out, link->dst, link->dstpad)) {
|
||||
|
Reference in New Issue
Block a user