[FFmpeg-cvslog] fftools/ffmpeg_filter: stop setting a no-op option
Anton Khirnov
git at videolan.org
Mon Oct 7 11:58:13 EEST 2024
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sat Sep 28 17:26:41 2024 +0200| [496b8d7a130eaa3eba1ea315a74cc51b08b04e6f] | committer: Anton Khirnov
fftools/ffmpeg_filter: stop setting a no-op option
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=496b8d7a130eaa3eba1ea315a74cc51b08b04e6f
---
fftools/ffmpeg_filter.c | 12 +++---------
1 file changed, 3 insertions(+), 9 deletions(-)
diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c
index b1ca710999..faab003e71 100644
--- a/fftools/ffmpeg_filter.c
+++ b/fftools/ffmpeg_filter.c
@@ -1588,15 +1588,9 @@ static int configure_output_audio_filter(FilterGraph *fg, AVFilterGraph *graph,
int ret;
snprintf(name, sizeof(name), "out_%s", ofp->name);
- ofp->filter = avfilter_graph_alloc_filter(graph,
- avfilter_get_by_name("abuffersink"),
- name);
- if (!ofp->filter)
- return AVERROR(ENOMEM);
- if ((ret = av_opt_set_int(ofp->filter, "all_channel_counts", 1, AV_OPT_SEARCH_CHILDREN)) < 0)
- return ret;
-
- ret = avfilter_init_dict(ofp->filter, NULL);
+ ret = avfilter_graph_create_filter(&ofp->filter,
+ avfilter_get_by_name("abuffersink"),
+ name, NULL, NULL, graph);
if (ret < 0)
return ret;
More information about the ffmpeg-cvslog
mailing list