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 @@
#define VLC_CODEC_VP8 VLC_FOURCC('V','P','8','0')
#define VLC_CODEC_JPEG2000 VLC_FOURCC('J','P','2','K')
#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 */
......
......@@ -222,6 +222,10 @@ static const struct
{ 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
/* UNTESTED VideoGames*/
{ VLC_FOURCC('W','C','3','V'), CODEC_ID_XAN_WC3,
......
......@@ -588,9 +588,12 @@ static const entry_t p_list_video[] = {
A("IV20"),
A("RT21"),
/* Flash Screen Video */
/* Flash Screen Video */
B(VLC_CODEC_FLASHSV, "Flash Screen Video"),
A("FSV1"),
B(VLC_CODEC_FLASHSV2, "Flash Screen Video 2"),
A("FSV2"),
B(VLC_CODEC_KMVC, "Karl Morton's Video Codec (Worms)"),
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