This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit a9d9f7e1bb98a132b4028d9cb5f29a2acec20db6 Author: Lynne <[email protected]> AuthorDate: Sun Feb 8 06:04:56 2026 +0100 Commit: Lynne <[email protected]> CommitDate: Thu Feb 19 19:42:30 2026 +0100 ffv1enc: add descriptor information for GBRP The C encoder does not support GBRP, this just adds info fields so the Vulkan encoder can use it. --- libavcodec/ffv1enc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c index 623bd2a3ea..b6d25013f0 100644 --- a/libavcodec/ffv1enc.c +++ b/libavcodec/ffv1enc.c @@ -906,6 +906,7 @@ av_cold int ff_ffv1_encode_setup_plane_info(AVCodecContext *avctx, s->use32bit = 1; s->version = FFMAX(s->version, 1); break; + case AV_PIX_FMT_GBRP: case AV_PIX_FMT_0RGB32: s->colorspace = 1; s->chroma_planes = 1; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
