This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 3e91d822923b5c4e163bd67bdc003e37a5af8bf4 Author: James Almer <[email protected]> AuthorDate: Mon Dec 22 22:19:37 2025 -0300 Commit: James Almer <[email protected]> CommitDate: Wed Dec 24 12:21:39 2025 -0300 avcodec/cbs_apv: 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]> --- libavcodec/cbs_apv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/cbs_apv.c b/libavcodec/cbs_apv.c index be52c2e511..f6f701b9dd 100644 --- a/libavcodec/cbs_apv.c +++ b/libavcodec/cbs_apv.c @@ -33,7 +33,7 @@ static int cbs_apv_get_num_comp(const APVRawFrameHeader *fh) case APV_CHROMA_FORMAT_4444: return 4; default: - av_assert0(0 && "Invalid chroma_format_idc"); + av_unreachable("Invalid chroma_format_idc"); } } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
