diff options
author | Paul B Mahol <onemda@gmail.com> | 2017-04-16 18:44:57 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-04-18 15:04:12 +0200 |
commit | 61088051bd70e94224e8fbc95044ca1c6ca7240a (patch) | |
tree | 4d793bb8a2b01f8657b98a37ae147d26d659ccfb /libavcodec/codec_desc.c | |
parent | a96db6be06cfc7f179ed05f077e06bd1fa9d41ca (diff) | |
download | ffmpeg-61088051bd70e94224e8fbc95044ca1c6ca7240a.tar.gz |
avcodec: add Screen Recorder Gold Codec decoder
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/codec_desc.c')
-rw-r--r-- | libavcodec/codec_desc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index e342db714d..2d28f840af 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1395,6 +1395,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("Mandsoft Screen Capture Codec"), .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS, }, + { + .id = AV_CODEC_ID_SRGC, + .type = AVMEDIA_TYPE_VIDEO, + .name = "srgc", + .long_name = NULL_IF_CONFIG_SMALL("Screen Recorder Gold Codec"), + .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS, + }, /* image codecs */ { |