From: Marton Balint <cus@passwd.hu>
To: ffmpeg-devel@ffmpeg.org
Cc: Marton Balint <cus@passwd.hu>
Subject: [FFmpeg-devel] [PATCH 01/12] avfilter: factorize requesting an input frame from multi output filters
Date: Tue, 24 Jun 2025 21:22:59 +0200
Message-ID: <20250624192318.7430-1-cus@passwd.hu> (raw)
Signed-off-by: Marton Balint <cus@passwd.hu>
---
doc/filter_design.txt | 1 +
libavfilter/af_acrossover.c | 10 +---------
libavfilter/af_channelsplit.c | 10 +---------
libavfilter/filters.h | 15 +++++++++++++++
libavfilter/split.c | 10 +---------
| 10 +---------
6 files changed, 20 insertions(+), 36 deletions(-)
diff --git a/doc/filter_design.txt b/doc/filter_design.txt
index 885b19b6f6..b6bfca12f5 100644
--- a/doc/filter_design.txt
+++ b/doc/filter_design.txt
@@ -214,6 +214,7 @@ Frame scheduling
FF_FILTER_FORWARD_STATUS(inlink, outlink);
FF_FILTER_FORWARD_STATUS_ALL(inlink, filter);
FF_FILTER_FORWARD_WANTED(outlink, inlink);
+ FF_FILTER_FORWARD_WANTED_ANY(filter, inlink);
filter_frame
------------
diff --git a/libavfilter/af_acrossover.c b/libavfilter/af_acrossover.c
index 2c9a1e00bc..e24bf9eb73 100644
--- a/libavfilter/af_acrossover.c
+++ b/libavfilter/af_acrossover.c
@@ -588,15 +588,7 @@ static int activate(AVFilterContext *ctx)
return 0;
}
- for (int i = 0; i < ctx->nb_outputs; i++) {
- if (ff_outlink_get_status(ctx->outputs[i]))
- continue;
-
- if (ff_outlink_frame_wanted(ctx->outputs[i])) {
- ff_inlink_request_frame(inlink);
- return 0;
- }
- }
+ FF_FILTER_FORWARD_WANTED_ANY(ctx, inlink);
return FFERROR_NOT_READY;
}
diff --git a/libavfilter/af_channelsplit.c b/libavfilter/af_channelsplit.c
index 0156c0c28c..638e81593c 100644
--- a/libavfilter/af_channelsplit.c
+++ b/libavfilter/af_channelsplit.c
@@ -228,15 +228,7 @@ static int activate(AVFilterContext *ctx)
return 0;
}
- for (int i = 0; i < ctx->nb_outputs; i++) {
- if (ff_outlink_get_status(ctx->outputs[i]))
- continue;
-
- if (ff_outlink_frame_wanted(ctx->outputs[i])) {
- ff_inlink_request_frame(inlink);
- return 0;
- }
- }
+ FF_FILTER_FORWARD_WANTED_ANY(ctx, inlink);
return FFERROR_NOT_READY;
}
diff --git a/libavfilter/filters.h b/libavfilter/filters.h
index 654aed5c9e..66dc611a98 100644
--- a/libavfilter/filters.h
+++ b/libavfilter/filters.h
@@ -696,6 +696,21 @@ static inline void ff_outlink_set_status(AVFilterLink *link, int status, int64_t
} \
} while (0)
+/**
+ * Forward the frame_wanted_out flag from any of the output links to an input link.
+ * If the flag is set on any of the outputs, this macro will return immediately.
+ */
+#define FF_FILTER_FORWARD_WANTED_ANY(filter, inlink) do { \
+ for (int i = 0; i < filter->nb_outputs; i++) { \
+ if (ff_outlink_get_status(filter->outputs[i])) \
+ continue; \
+ if (ff_outlink_frame_wanted(filter->outputs[i])) { \
+ ff_inlink_request_frame(inlink); \
+ return 0; \
+ } \
+ } \
+} while (0)
+
/**
* Check for flow control between input and output.
* This is necessary for filters that may produce several output frames for
diff --git a/libavfilter/split.c b/libavfilter/split.c
index 0557f54cce..d0bd0c3b2a 100644
--- a/libavfilter/split.c
+++ b/libavfilter/split.c
@@ -110,15 +110,7 @@ static int activate(AVFilterContext *ctx)
return 0;
}
- for (int i = 0; i < ctx->nb_outputs; i++) {
- if (ff_outlink_get_status(ctx->outputs[i]))
- continue;
-
- if (ff_outlink_frame_wanted(ctx->outputs[i])) {
- ff_inlink_request_frame(inlink);
- return 0;
- }
- }
+ FF_FILTER_FORWARD_WANTED_ANY(ctx, inlink);
return FFERROR_NOT_READY;
}
--git a/libavfilter/vf_extractplanes.c b/libavfilter/vf_extractplanes.c
index 337ad12ac7..99e37ba04a 100644
--- a/libavfilter/vf_extractplanes.c
+++ b/libavfilter/vf_extractplanes.c
@@ -367,15 +367,7 @@ static int activate(AVFilterContext *ctx)
return 0;
}
- for (int i = 0; i < ctx->nb_outputs; i++) {
- if (ff_outlink_get_status(ctx->outputs[i]))
- continue;
-
- if (ff_outlink_frame_wanted(ctx->outputs[i])) {
- ff_inlink_request_frame(inlink);
- return 0;
- }
- }
+ FF_FILTER_FORWARD_WANTED_ANY(ctx, inlink);
return FFERROR_NOT_READY;
}
--
2.43.0
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next reply other threads:[~2025-06-24 19:23 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-24 19:22 Marton Balint [this message]
2025-06-24 19:23 ` [FFmpeg-devel] [PATCH 02/12] avfilter/filters: simplify FF_FILTER_FORWARD_WANTED_ANY Marton Balint
2025-06-24 19:23 ` [FFmpeg-devel] [PATCH 03/12] avfilter/avfilter: fix forwarding EOF for simple API filters in filter_activate_default Marton Balint
2025-06-24 19:23 ` [FFmpeg-devel] [PATCH 04/12] fate/filter-video: add ffprobe test for dual output select filter Marton Balint
2025-06-24 19:23 ` [FFmpeg-devel] [PATCH 05/12] avfilter/avfilter: always forward request frame in filter_activate_default Marton Balint
2025-06-24 19:23 ` [FFmpeg-devel] [PATCH 06/12] avfilter/avfilter: make filter_activate_default request frames on behalf of sinks Marton Balint
2025-06-24 19:23 ` [FFmpeg-devel] [PATCH 07/12] tests/fate/filter-audio: add anullsink test Marton Balint
2025-06-24 19:23 ` [FFmpeg-devel] [PATCH 08/12] avfilter: signal an empty buffersrc with an explicit activate error code Marton Balint
2025-06-24 19:23 ` [FFmpeg-devel] [PATCH 09/12] avfilter/buffersink: keep requesting frames if one activation of the graph does not provide one Marton Balint
2025-06-24 19:23 ` [FFmpeg-devel] [PATCH 10/12] avfilter/f_select: port to activate Marton Balint
2025-06-24 19:23 ` [FFmpeg-devel] [PATCH 11/12] fftools/ffmpeg_filter: always reap all available frames before requesting new ones Marton Balint
2025-06-24 19:23 ` [FFmpeg-devel] [PATCH 12/12] avfilter/ffmpeg_filter: rate control all filter graphs Marton Balint
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250624192318.7430-1-cus@passwd.hu \
--to=cus@passwd.hu \
--cc=ffmpeg-devel@ffmpeg.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git