This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit ce7375fc1772671f04b34790e859306400da8690 Author: James Almer <[email protected]> AuthorDate: Mon Mar 9 20:19:33 2026 -0300 Commit: James Almer <[email protected]> CommitDate: Fri Mar 13 09:18:42 2026 -0300 avcodec/cbs_lcevc: don't look for process blocks if the unit was not decomposed Signed-off-by: James Almer <[email protected]> --- 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]
