Commit 2cb44954 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

FourCC v210

parent dfd0f74d
......@@ -167,6 +167,8 @@
#define VLC_CODEC_YMGA VLC_FOURCC('Y','M','G','A')
/* Packed YUV 4:2:2, U:Y:V:Y, reverted */
#define VLC_CODEC_CYUV VLC_FOURCC('c','y','u','v')
/* 10-bit 4:2:2 Component YCbCr */
#define VLC_CODEC_V210 VLC_FOURCC('v','2','1','0')
/* Image codec (video) */
#define VLC_CODEC_PNG VLC_FOURCC('p','n','g',' ')
......
......@@ -208,6 +208,10 @@ static const struct
{ VLC_CODEC_MIMIC, CODEC_ID_MIMIC, VIDEO_ES },
#endif
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 29, 0 )
{ VLC_CODEC_V210, CODEC_ID_V210, VIDEO_ES },
#endif
/* Videogames Codecs */
{ VLC_CODEC_INTERPLAY, CODEC_ID_INTERPLAY_VIDEO, VIDEO_ES },
......
......@@ -685,6 +685,9 @@ static const entry_t p_list_video[] = {
A("cyuv"),
A("CYUV"),
B(VLC_CODEC_V210, "10-bit 4:2:2 Component YCbCr"),
A("v210"),
/* Videogames Codecs */
/* Interplay MVE */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment