This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit ad7d2709354dfe157c6675d7637bbedff37606bc Author: James Almer <[email protected]> AuthorDate: Fri Mar 27 14:31:33 2026 -0300 Commit: James Almer <[email protected]> CommitDate: Sat Mar 28 22:07:54 2026 -0300 avcodec/libdav1d: call ff_attach_decode_data() on output frames This will allow the injection of LCEVC side data. Signed-off-by: James Almer <[email protected]> --- libavcodec/libdav1d.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavcodec/libdav1d.c b/libavcodec/libdav1d.c index 9a9878def2..d9755a45b2 100644 --- a/libavcodec/libdav1d.c +++ b/libavcodec/libdav1d.c @@ -655,6 +655,10 @@ static int libdav1d_receive_frame(AVCodecContext *c, AVFrame *frame) sizeof(fgp->codec.aom.uv_offset)); } + res = ff_attach_decode_data(c, frame); + if (res < 0) + return res; + res = 0; fail: dav1d_picture_unref(p); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
