[vlc-commits] fourcc: add 4:4:4 packed YUV in the list of packed YUV formats
Steve Lhomme
git at videolan.org
Fri Dec 20 08:18:10 CET 2019
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Mon Dec 16 09:01:37 2019 +0100| [e0113dc43ab9a922569c0acf098ee488bfc0019a] | committer: Steve Lhomme
fourcc: add 4:4:4 packed YUV in the list of packed YUV formats
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e0113dc43ab9a922569c0acf098ee488bfc0019a
---
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 880d6b4685..d916008b36 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, \
More information about the vlc-commits
mailing list