diff options
author | hwren <hwrenx@126.com> | 2018-07-27 11:44:59 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2018-07-27 20:07:45 +0800 |
commit | d645e0d6c1f26b5c063093dd9ce0f02b3369cdc2 (patch) | |
tree | 80ebf28dd806398f85853348ef2550e1929290ca /libavcodec/codec_desc.c | |
parent | a8ce6fb425e07e60eb06d3f44992fdb91f23aafb (diff) | |
download | ffmpeg-d645e0d6c1f26b5c063093dd9ce0f02b3369cdc2.tar.gz |
lavc: add AVS2/IEEE 1857.4 parser
Tested-by: Steven Liu <lq@chinaffmpeg.org>
Signed-off-by: hwren <hwrenx@126.com>
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
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 a126c974e1..2fe4aaaa7b 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1395,6 +1395,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .props = AV_CODEC_PROP_LOSSLESS, }, { + .id = AV_CODEC_ID_AVS2, + .type = AVMEDIA_TYPE_VIDEO, + .name = "avs2", + .long_name = NULL_IF_CONFIG_SMALL("AVS2/IEEE 1857.4"), + .props = AV_CODEC_PROP_LOSSY, + }, + { .id = AV_CODEC_ID_Y41P, .type = AVMEDIA_TYPE_VIDEO, .name = "y41p", |