[FFmpeg-devel] [PATCH v2] avcodec/evc_decoder: Fix pixel format handling in export_stream_params function
Dawid Kozinski
d.kozinski at samsung.com
Tue Mar 25 10:50:30 EET 2025
Signed-off-by: Dawid Kozinski <d.kozinski at samsung.com>
---
libavcodec/libxevd.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/libavcodec/libxevd.c b/libavcodec/libxevd.c
index 520fdab7d8..8a1719f264 100644
--- a/libavcodec/libxevd.c
+++ b/libavcodec/libxevd.c
@@ -154,15 +154,27 @@ static int export_stream_params(const XevdContext *xectx, AVCodecContext *avctx)
case XEVD_CS_YCBCR400_10LE:
avctx->pix_fmt = AV_PIX_FMT_GRAY10LE;
break;
+ case XEVD_CS_SET(XEVD_CF_YCBCR400, 10, 1):
+ avctx->pix_fmt = AV_PIX_FMT_GRAY10BE;
+ break;
case XEVD_CS_YCBCR420_10LE:
avctx->pix_fmt = AV_PIX_FMT_YUV420P10LE;
break;
+ case XEVD_CS_SET(XEVD_CF_YCBCR420, 10, 1):
+ avctx->pix_fmt = AV_PIX_FMT_YUV420P10BE;
+ break;
case XEVD_CS_YCBCR422_10LE:
avctx->pix_fmt = AV_PIX_FMT_YUV422P10LE;
break;
+ case XEVD_CS_SET(XEVD_CF_YCBCR422, 10, 1):
+ avctx->pix_fmt = AV_PIX_FMT_YUV422P10BE;
+ break;
case XEVD_CS_YCBCR444_10LE:
avctx->pix_fmt = AV_PIX_FMT_YUV444P10LE;
break;
+ case XEVD_CS_SET(XEVD_CF_YCBCR444, 10, 1):
+ avctx->pix_fmt = AV_PIX_FMT_YUV444P10BE;
+ break;
default:
av_log(avctx, AV_LOG_ERROR, "Unknown color space\n");
avctx->pix_fmt = AV_PIX_FMT_NONE;
--
2.34.1
More information about the ffmpeg-devel
mailing list