You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avfiltergraph: remove a redundant call to avfilter_get_by_name().
This commit is contained in:
@@ -236,8 +236,7 @@ static int query_formats(AVFilterGraph *graph, AVClass *log_ctx)
|
||||
|
||||
snprintf(inst_name, sizeof(inst_name), "auto-inserted resampler %d",
|
||||
resampler_count++);
|
||||
if ((ret = avfilter_graph_create_filter(&convert,
|
||||
avfilter_get_by_name("resample"),
|
||||
if ((ret = avfilter_graph_create_filter(&convert, filter,
|
||||
inst_name, NULL, NULL, graph)) < 0)
|
||||
return ret;
|
||||
break;
|
||||
|
Reference in New Issue
Block a user