From d66df113677306e59077ae1dcec73a156fb20e28 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Sat, 24 Feb 2018 18:49:47 +0100 Subject: [PATCH] FourCC for MagicYUV --- include/vlc_fourcc.h | 1 + src/misc/fourcc_list.h | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h index 60b0969f9a..95dafffc8f 100644 --- a/include/vlc_fourcc.h +++ b/include/vlc_fourcc.h @@ -186,6 +186,7 @@ #define VLC_CODEC_CINEFORM VLC_FOURCC('C','F','H','D') #define VLC_CODEC_SPEEDHQ VLC_FOURCC('S','H','Q','2') #define VLC_CODEC_PIXLET VLC_FOURCC('p','x','l','t') +#define VLC_CODEC_MAGICYUV VLC_FOURCC('M','8','Y','0') /*********** * Chromas diff --git a/src/misc/fourcc_list.h b/src/misc/fourcc_list.h index 0848481667..03117458ad 100644 --- a/src/misc/fourcc_list.h +++ b/src/misc/fourcc_list.h @@ -1132,6 +1132,15 @@ static const staticentry_t p_list_video[] = { B(VLC_CODEC_PIXLET, "Apple Pixlet" ), A("pxlt"), + + B(VLC_CODEC_MAGICYUV, "MagicYUV lossless" ), + A("M8RG"), + A("M8RA"), + A("M8G0"), + A("M8Y0"), + A("M8Y2"), + A("M8Y4"), + A("M8YA"), }; static const staticentry_t p_list_audio[] = { -- 2.11.4.GIT