* [FFmpeg-devel] [PATCH] avfilter: update filter timeline state only on main link
@ 2024-03-01 14:11 Gyan Doshi
2024-03-06 5:32 ` Gyan Doshi
0 siblings, 1 reply; 3+ messages in thread
From: Gyan Doshi @ 2024-03-01 14:11 UTC (permalink / raw)
To: ffmpeg-devel
At present, consume_update evaluates timeline state on all links for
a multi-input filter. This can lead to the filter being incorrectly
en/dis-abled when evaluation on a frame on a secondary link leads to
a different result than the frame on the current main link next in
line for processing.
---
libavfilter/avfilter.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index daa7c3672a..d7ea993508 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -1430,7 +1430,8 @@ static void consume_update(FilterLinkInternal *li, const AVFrame *frame)
AVFilterLink *const link = &li->l;
update_link_current_pts(li, frame->pts);
ff_inlink_process_commands(link, frame);
- link->dst->is_disabled = !ff_inlink_evaluate_timeline_at_frame(link, frame);
+ if (link == link->dst->inputs[0])
+ link->dst->is_disabled = !ff_inlink_evaluate_timeline_at_frame(link, frame);
link->frame_count_out++;
link->sample_count_out += frame->nb_samples;
}
--
2.44.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".
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avfilter: update filter timeline state only on main link
2024-03-01 14:11 [FFmpeg-devel] [PATCH] avfilter: update filter timeline state only on main link Gyan Doshi
@ 2024-03-06 5:32 ` Gyan Doshi
2024-03-11 10:09 ` Gyan Doshi
0 siblings, 1 reply; 3+ messages in thread
From: Gyan Doshi @ 2024-03-06 5:32 UTC (permalink / raw)
To: ffmpeg-devel
On 2024-03-01 07:41 pm, Gyan Doshi wrote:
> At present, consume_update evaluates timeline state on all links for
> a multi-input filter. This can lead to the filter being incorrectly
> en/dis-abled when evaluation on a frame on a secondary link leads to
> a different result than the frame on the current main link next in
> line for processing.
Ping. Plan to apply in 72h, barring objections.
Regards,
Gyan
> ---
> libavfilter/avfilter.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
> index daa7c3672a..d7ea993508 100644
> --- a/libavfilter/avfilter.c
> +++ b/libavfilter/avfilter.c
> @@ -1430,7 +1430,8 @@ static void consume_update(FilterLinkInternal *li, const AVFrame *frame)
> AVFilterLink *const link = &li->l;
> update_link_current_pts(li, frame->pts);
> ff_inlink_process_commands(link, frame);
> - link->dst->is_disabled = !ff_inlink_evaluate_timeline_at_frame(link, frame);
> + if (link == link->dst->inputs[0])
> + link->dst->is_disabled = !ff_inlink_evaluate_timeline_at_frame(link, frame);
> link->frame_count_out++;
> link->sample_count_out += frame->nb_samples;
> }
_______________________________________________
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".
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avfilter: update filter timeline state only on main link
2024-03-06 5:32 ` Gyan Doshi
@ 2024-03-11 10:09 ` Gyan Doshi
0 siblings, 0 replies; 3+ messages in thread
From: Gyan Doshi @ 2024-03-11 10:09 UTC (permalink / raw)
To: ffmpeg-devel
On 2024-03-06 11:02 am, Gyan Doshi wrote:
>
>
> On 2024-03-01 07:41 pm, Gyan Doshi wrote:
>> At present, consume_update evaluates timeline state on all links for
>> a multi-input filter. This can lead to the filter being incorrectly
>> en/dis-abled when evaluation on a frame on a secondary link leads to
>> a different result than the frame on the current main link next in
>> line for processing.
>
> Ping. Plan to apply in 72h, barring objections.
Pushed as 3d1860ec8db7f9785bf1338e826138c0218dfb59
Regards,
Gyan
_______________________________________________
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".
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-03-11 10:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-01 14:11 [FFmpeg-devel] [PATCH] avfilter: update filter timeline state only on main link Gyan Doshi
2024-03-06 5:32 ` Gyan Doshi
2024-03-11 10:09 ` Gyan Doshi
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