Commit cf550d14 authored by Daniel Verkamp's avatar Daniel Verkamp Committed by Jean-Baptiste Kempf

avcodec: map Canopus Lossless (CLLC)

Sample:
http://fate-suite.libav.org/cllc/sample-cllc-rgb.aviSigned-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent fa5f6714
...@@ -145,6 +145,7 @@ ...@@ -145,6 +145,7 @@
#define VLC_CODEC_THP VLC_FOURCC('T','H','P','0') #define VLC_CODEC_THP VLC_FOURCC('T','H','P','0')
#define VLC_CODEC_ESCAPE124 VLC_FOURCC('E','1','2','4') #define VLC_CODEC_ESCAPE124 VLC_FOURCC('E','1','2','4')
#define VLC_CODEC_KGV1 VLC_FOURCC('K','G','V','1') #define VLC_CODEC_KGV1 VLC_FOURCC('K','G','V','1')
#define VLC_CODEC_CLLC VLC_FOURCC('C','L','L','C')
/* Planar YUV 4:1:0 Y:V:U */ /* Planar YUV 4:1:0 Y:V:U */
#define VLC_CODEC_YV9 VLC_FOURCC('Y','V','U','9') #define VLC_CODEC_YV9 VLC_FOURCC('Y','V','U','9')
......
...@@ -233,7 +233,9 @@ static const struct ...@@ -233,7 +233,9 @@ static const struct
#if LIBAVCODEC_VERSION_CHECK( 54, 20, 0, 37, 100 ) #if LIBAVCODEC_VERSION_CHECK( 54, 20, 0, 37, 100 )
{ VLC_CODEC_MTS2, AV_CODEC_ID_MTS2, VIDEO_ES }, { VLC_CODEC_MTS2, AV_CODEC_ID_MTS2, VIDEO_ES },
#endif #endif
/* AV_CODEC_ID_CLLC */ #if LIBAVCODEC_VERSION_CHECK( 54, 24, 0, 47, 100 )
{ VLC_CODEC_CLLC, AV_CODEC_ID_CLLC, VIDEO_ES },
#endif
#if LIBAVCODEC_VERSION_CHECK( 54, 27, 0, 55, 100 ) #if LIBAVCODEC_VERSION_CHECK( 54, 27, 0, 55, 100 )
{ VLC_CODEC_MSS2, AV_CODEC_ID_MSS2, VIDEO_ES }, { VLC_CODEC_MSS2, AV_CODEC_ID_MSS2, VIDEO_ES },
#endif #endif
......
...@@ -1017,6 +1017,9 @@ static const staticentry_t p_list_video[] = { ...@@ -1017,6 +1017,9 @@ static const staticentry_t p_list_video[] = {
B(VLC_CODEC_KGV1, "Kega Game Video (KGV1)"), B(VLC_CODEC_KGV1, "Kega Game Video (KGV1)"),
A("KGV1"), A("KGV1"),
B(VLC_CODEC_CLLC, "Canopus Lossless"),
A("CLLC"),
B(0, "") B(0, "")
}; };
static const staticentry_t p_list_audio[] = { static const staticentry_t p_list_audio[] = {
......
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