1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-31 06:46:39 +02:00

FourCC v210

This commit is contained in:
Jean-Baptiste Kempf 2009-05-13 23:51:17 +02:00
parent dfd0f74dd7
commit 2cb44954d6
3 changed files with 9 additions and 0 deletions

View File

@ -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',' ')

View File

@ -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 },

View File

@ -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 */