This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 64be23153ecd157d8ecd70d1f858eda559d1dde3 Author: James Almer <[email protected]> AuthorDate: Mon Dec 22 22:19:11 2025 -0300 Commit: James Almer <[email protected]> CommitDate: Wed Dec 24 12:21:39 2025 -0300 fftools/ffmpeg_sched: use av_unreachable instead of av_assert0(0) at the end of a non-void function Fixes compilation with gcc-tsan and --disable-optimizations Signed-off-by: James Almer <[email protected]> --- fftools/ffmpeg_sched.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fftools/ffmpeg_sched.c b/fftools/ffmpeg_sched.c index c5ee6971f1..0d820acb8e 100644 --- a/fftools/ffmpeg_sched.c +++ b/fftools/ffmpeg_sched.c @@ -2654,7 +2654,7 @@ static int task_cleanup(Scheduler *sch, SchedulerNode node) case SCH_NODE_TYPE_DEC: return dec_done (sch, node.idx); case SCH_NODE_TYPE_ENC: return enc_done (sch, node.idx); case SCH_NODE_TYPE_FILTER_IN: return filter_done(sch, node.idx); - default: av_assert0(0); + default: av_unreachable("Invalid node type?"); } } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
