[FFmpeg-cvslog] avcodec/liboapvenc: remove 4:4:4 support until it's properly handled

James Almer git at videolan.org
Thu May 8 17:20:39 EEST 2025


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Wed May  7 21:40:08 2025 -0300| [244ad944e9477551b86acf35da5cc99f4d559839] | committer: James Almer

avcodec/liboapvenc: remove 4:4:4 support until it's properly handled

liboapv will seemingly encode correct 4:4:4 output, but report profile_idc 33, which
is specifically the profile value for 4:2:2 10bit.

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=244ad944e9477551b86acf35da5cc99f4d559839
---

 libavcodec/liboapvenc.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/libavcodec/liboapvenc.c b/libavcodec/liboapvenc.c
index 67230956cc..0c95489bc9 100644
--- a/libavcodec/liboapvenc.c
+++ b/libavcodec/liboapvenc.c
@@ -105,9 +105,6 @@ static inline int get_color_format(enum AVPixelFormat pix_fmt)
     case AV_PIX_FMT_YUV422P10:
         cf = OAPV_CF_YCBCR422;
         break;
-    case AV_PIX_FMT_YUV444P10:
-        cf = OAPV_CF_YCBCR444;
-        break;
     default:
         av_assert0(cf != OAPV_CF_UNKNOWN);
     }
@@ -434,7 +431,6 @@ static av_cold int liboapve_close(AVCodecContext *avctx)
 
 static const enum AVPixelFormat supported_pixel_formats[] = {
     AV_PIX_FMT_YUV422P10,
-    AV_PIX_FMT_YUV444P10,
     AV_PIX_FMT_NONE
 };
 



More information about the ffmpeg-cvslog mailing list