diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-08-11 16:31:11 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-08-15 19:34:27 +0200 |
commit | fb3efef1dbc96915edeb1df8027d1f1502324fc0 (patch) | |
tree | 1817b5b5d9734073fc68e11b62de958c1e52fa1f /libavfilter/filters.h | |
parent | 42cbf66fffed5a8bba2f14b5247ce60d788b9e01 (diff) | |
download | ffmpeg-fb3efef1dbc96915edeb1df8027d1f1502324fc0.tar.gz |
lavfi: move AVFilterLink.frame_wanted_out to FilterLinkInternal
Diffstat (limited to 'libavfilter/filters.h')
-rw-r--r-- | libavfilter/filters.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libavfilter/filters.h b/libavfilter/filters.h index 3f591e6f9d..36164c171e 100644 --- a/libavfilter/filters.h +++ b/libavfilter/filters.h @@ -245,10 +245,7 @@ void ff_inlink_set_status(AVFilterLink *link, int status); /** * Test if a frame is wanted on an output link. */ -static inline int ff_outlink_frame_wanted(AVFilterLink *link) -{ - return link->frame_wanted_out; -} +int ff_outlink_frame_wanted(AVFilterLink *link); /** * Get the status on an output link. |