[FFmpeg-devel] [PATCH] lavc/libx264: enable the PC(2^n -1) colorspace in libx264rgb

Jun Zhao mypopydev at gmail.com
Wed Nov 27 11:52:29 EET 2019


From: Jun Zhao <barryjzhao at tencent.com>

enable the PC(2^n -1) colorspace in libx264rgb

fix #8404

Signed-off-by: Jun Zhao <barryjzhao at tencent.com>
---
 libavcodec/libx264.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index bfd91bb..60607ca 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -867,6 +867,11 @@ FF_ENABLE_DEPRECATION_WARNINGS
     x4->params.vui.b_fullrange = avctx->pix_fmt == AV_PIX_FMT_YUVJ420P ||
                                  avctx->pix_fmt == AV_PIX_FMT_YUVJ422P ||
                                  avctx->pix_fmt == AV_PIX_FMT_YUVJ444P ||
+#if CONFIG_LIBX264RGB_ENCODER
+                                 avctx->pix_fmt == AV_PIX_FMT_BGR0 ||
+                                 avctx->pix_fmt == AV_PIX_FMT_BGR24 ||
+                                 avctx->pix_fmt == AV_PIX_FMT_RGB24 ||
+#endif
                                  avctx->color_range == AVCOL_RANGE_JPEG;
 
     if (avctx->colorspace != AVCOL_SPC_UNSPECIFIED)
-- 
1.7.1



More information about the ffmpeg-devel mailing list