The branch, release/7.0 has been updated
via 74683bb51ee89ce5584b24d50fdc13aabcf3c0df (commit)
from d65d34d65612580f2ba266dd9984c6fbf98f8fac (commit)
- Log -----------------------------------------------------------------
commit 74683bb51ee89ce5584b24d50fdc13aabcf3c0df
Author: Niklas Haas <[email protected]>
AuthorDate: Thu Nov 13 13:32:35 2025 +0100
Commit: Niklas Haas <[email protected]>
CommitDate: Thu Nov 13 13:32:35 2025 +0100
fftools/ffmpeg_sched: use correct source scheduler node when unchoking
Fixes an issue in the previous commit where I forgot that 7.x still had the
distinction between the src and src_sched nodes; which was later removed.
Fixes: d65d34d65612580f2ba266dd9984c6fbf98f8fac
diff --git a/fftools/ffmpeg_sched.c b/fftools/ffmpeg_sched.c
index f547963847..cfcf5ce344 100644
--- a/fftools/ffmpeg_sched.c
+++ b/fftools/ffmpeg_sched.c
@@ -1218,7 +1218,7 @@ static void unchoke_downstream(Scheduler *sch,
SchedulerNode *dst)
} else {
// ensure that this filter graph is not stuck waiting for
// input from a different upstream demuxer
- unchoke_for_stream(sch, fg->inputs[fg->best_input].src);
+ unchoke_for_stream(sch, fg->inputs[fg->best_input].src_sched);
}
break;
default:
-----------------------------------------------------------------------
Summary of changes:
fftools/ffmpeg_sched.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]