Commit ea146367 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Add FSV2 FourCC and link in avcodec module

parent cd8a707f
...@@ -116,6 +116,7 @@ ...@@ -116,6 +116,7 @@
#define VLC_CODEC_VP8 VLC_FOURCC('V','P','8','0') #define VLC_CODEC_VP8 VLC_FOURCC('V','P','8','0')
#define VLC_CODEC_JPEG2000 VLC_FOURCC('J','P','2','K') #define VLC_CODEC_JPEG2000 VLC_FOURCC('J','P','2','K')
#define VLC_CODEC_LAGARITH VLC_FOURCC('L','A','G','S') #define VLC_CODEC_LAGARITH VLC_FOURCC('L','A','G','S')
#define VLC_CODEC_FLASHSV2 VLC_FOURCC('F','S','V','2')
/* Planar YUV 4:1:0 Y:V:U */ /* Planar YUV 4:1:0 Y:V:U */
......
...@@ -222,6 +222,10 @@ static const struct ...@@ -222,6 +222,10 @@ static const struct
{ VLC_CODEC_AMV, CODEC_ID_AMV, VIDEO_ES }, { VLC_CODEC_AMV, CODEC_ID_AMV, VIDEO_ES },
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 53, 7, 0 )
{ VLC_CODEC_FLASHSV2, CODEC_ID_FLASHSV2, VIDEO_ES },
#endif
#if 0 #if 0
/* UNTESTED VideoGames*/ /* UNTESTED VideoGames*/
{ VLC_FOURCC('W','C','3','V'), CODEC_ID_XAN_WC3, { VLC_FOURCC('W','C','3','V'), CODEC_ID_XAN_WC3,
......
...@@ -591,6 +591,9 @@ static const entry_t p_list_video[] = { ...@@ -591,6 +591,9 @@ static const entry_t p_list_video[] = {
/* Flash Screen Video */ /* Flash Screen Video */
B(VLC_CODEC_FLASHSV, "Flash Screen Video"), B(VLC_CODEC_FLASHSV, "Flash Screen Video"),
A("FSV1"), A("FSV1"),
B(VLC_CODEC_FLASHSV2, "Flash Screen Video 2"),
A("FSV2"),
B(VLC_CODEC_KMVC, "Karl Morton's Video Codec (Worms)"), B(VLC_CODEC_KMVC, "Karl Morton's Video Codec (Worms)"),
A("KMVC"), A("KMVC"),
......
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