diff options
author | 联盟少侠 <admin@shaoxia.xyz> | 2024-03-08 19:59:12 +0800 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-08 13:12:21 +0100 |
commit | e6d933404ff1085b6c4ec031f736b1bee6e46b57 (patch) | |
tree | e8515a885cd192cc03c6993ade7db47942caea33 /libavfilter/avfilter.c | |
parent | 71e871280dee7d6cef3b521007af97f4ef706e83 (diff) | |
download | ffmpeg-e6d933404ff1085b6c4ec031f736b1bee6e46b57.tar.gz |
avfilter/avfilter: Fix for Incorrect Parameter in ff_filter_config_links
src/libavfilter/internal.h:255:45: note: passing argument to parameter 'filter' here
int ff_filter_config_links(AVFilterContext *filter);
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 596a1394fd..c323ebb4b8 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -214,7 +214,7 @@ void avfilter_link_free(AVFilterLink **link) } int avfilter_config_links(AVFilterContext *filter) { - return ff_filter_config_links(EINVAL); + return ff_filter_config_links(filter); } #endif |