This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit d069ba22ff73ef71e628dfd7193ae0fe36ec4bda Author: James Almer <[email protected]> AuthorDate: Fri Mar 27 19:34:11 2026 -0300 Commit: James Almer <[email protected]> CommitDate: Sat Mar 28 20:14:13 2026 +0000 avcodec/decode: don't try to apply LCEVC enhancements if some other kind of post processing is active Signed-off-by: James Almer <[email protected]> --- libavcodec/decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/decode.c b/libavcodec/decode.c index 6923db6a6f..c1db89d450 100644 --- a/libavcodec/decode.c +++ b/libavcodec/decode.c @@ -1711,7 +1711,7 @@ static int attach_post_process_data(AVCodecContext *avctx, AVFrame *frame) FFLCEVCFrame *frame_ctx; int ret; - if (!dc->lcevc.width || !dc->lcevc.height) { + if (fdd->post_process || !dc->lcevc.width || !dc->lcevc.height) { dc->lcevc.frame = 0; return 0; } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
