[vlc-devel] [PATCH] fourcc: add 4:4:4 packed YUV in the list of packed YUV formats

Steve Lhomme robux4 at ycbcr.xyz
Tue Dec 17 08:28:14 CET 2019


---
 src/misc/fourcc.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/misc/fourcc.c b/src/misc/fourcc.c
index 880d6b46859..d916008b360 100644
--- a/src/misc/fourcc.c
+++ b/src/misc/fourcc.c
@@ -248,7 +248,9 @@ const char *vlc_fourcc_GetDescription(int cat, vlc_fourcc_t fourcc)
 
 #define VLC_CODEC_YUV_PACKED \
     VLC_CODEC_YUYV, VLC_CODEC_YVYU, \
-    VLC_CODEC_UYVY, VLC_CODEC_VYUY
+    VLC_CODEC_UYVY, VLC_CODEC_VYUY, \
+    VLC_CODEC_VUYA, VLC_CODEC_Y210, \
+    VLC_CODEC_Y410
 
 #define VLC_CODEC_FALLBACK_420 \
     VLC_CODEC_YUV_PLANAR_422, VLC_CODEC_YUV_PACKED, \
-- 
2.17.1



More information about the vlc-devel mailing list