add FM Screen Capture Codec

Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
This commit is contained in:
Paul B Mahol 2017-03-10 11:21:15 +01:00 committed by Jean-Baptiste Kempf
parent 57787fc341
commit 49d0453801
4 changed files with 10 additions and 1 deletions

2
NEWS
View File

@ -75,7 +75,7 @@ Decoder:
* New BPG decoder based on libbpg
* Fixed uncompressed DVD-Audio (AOB) LPCM decoding
* Rewrite WPL playlists and add ZPL playlists support (Zune)
* Support TDSC, Canopus HQX, Cineform, SpeedHQ, Pixlet and QDMC codecs
* Support TDSC, Canopus HQX, Cineform, SpeedHQ, Pixlet, QDMC and FMVC codecs
* TTML subtitles support, including EBU-TT-D variant
* Support 9-bit and 10-bit GBR planar formats
* New hardware accelerated decoder for OS X and and iOS based on Video Toolbox

View File

@ -84,6 +84,7 @@
#define VLC_CODEC_CSCD VLC_FOURCC('C','S','C','D')
#define VLC_CODEC_ZMBV VLC_FOURCC('Z','M','B','V')
#define VLC_CODEC_VMNC VLC_FOURCC('V','M','n','c')
#define VLC_CODEC_FMVC VLC_FOURCC('F','M','V','C')
#define VLC_CODEC_FRAPS VLC_FOURCC('F','P','S','1')
#define VLC_CODEC_TRUEMOTION1 VLC_FOURCC('D','U','C','K')
#define VLC_CODEC_TRUEMOTION2 VLC_FOURCC('T','M','2','0')

View File

@ -287,6 +287,10 @@ static const struct
{ VLC_CODEC_SPEEDHQ, AV_CODEC_ID_SPEEDHQ, VIDEO_ES },
#endif
#if LIBAVCODEC_VERSION_CHECK( 57, 999, 999, 79, 100 )
{ VLC_CODEC_FMVC, AV_CODEC_ID_FMVC, VIDEO_ES },
#endif
/*
* Audio Codecs
*/

View File

@ -587,6 +587,10 @@ static const staticentry_t p_list_video[] = {
B(VLC_CODEC_VMNC, "VMware Video"),
A("VMnc"),
B(VLC_CODEC_FMVC, "FM Screen Capture Codec"),
A("FMVC"),
B(VLC_CODEC_FRAPS, "FRAPS: Realtime Video Capture"),
A("FPS1"),
A("fps1"),