This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/8.1 in repository ffmpeg.
commit a2e15f15b0ca877692e398b1452612fa02507c3f Author: James Almer <[email protected]> AuthorDate: Mon Mar 9 20:19:33 2026 -0300 Commit: James Almer <[email protected]> CommitDate: Wed Mar 18 13:35:56 2026 -0300 avcodec/cbs_lcevc: don't look for process blocks if the unit was not decomposed Signed-off-by: James Almer <[email protected]> (cherry picked from commit ce7375fc1772671f04b34790e859306400da8690) --- libavcodec/cbs_lcevc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/cbs_lcevc.c b/libavcodec/cbs_lcevc.c index 11b47199b6..62fbacab1c 100644 --- a/libavcodec/cbs_lcevc.c +++ b/libavcodec/cbs_lcevc.c @@ -674,6 +674,9 @@ int ff_cbs_lcevc_find_process_block(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit = &au->units[i]; LCEVCRawProcessBlockList *list; + if (!unit->content) + continue; + err = cbs_lcevc_get_process_block_list(ctx, unit, &list); if (err < 0) continue; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
