diff options
author | Dawid Kozinski <d.kozinski@samsung.com> | 2023-05-26 12:30:33 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-05-29 11:38:21 -0300 |
commit | 637afea88ed42498be4f60eff4eb8e2f00eeb89f (patch) | |
tree | 5cd2f3ce5138bceb1b1cad473687bc0d7b65de98 /libavcodec/codec_desc.c | |
parent | 45fa85a77797630e361e8f8254560c4f56e0a5cb (diff) | |
download | ffmpeg-637afea88ed42498be4f60eff4eb8e2f00eeb89f.tar.gz |
avcodec: MPEG-5 EVC codec registration
Added prerequisites that must be met before providing support for the MPEG-5 EVC codec
- Added new entry to codec IDs list
- Added new entry to the codec descriptor list
- Bumped libavcodec minor version
- Added profiles for EVC codec
Signed-off-by: Dawid Kozinski <d.kozinski@samsung.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/codec_desc.c')
-rw-r--r-- | libavcodec/codec_desc.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 49dddd1a49..310ed66415 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1938,6 +1938,14 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("PDV (PlayDate Video)"), .props = AV_CODEC_PROP_LOSSY, }, + { + .id = AV_CODEC_ID_EVC, + .type = AVMEDIA_TYPE_VIDEO, + .name = "evc", + .long_name = NULL_IF_CONFIG_SMALL("MPEG-5 EVC (Essential Video Coding)"), + .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_REORDER, + .profiles = NULL_IF_CONFIG_SMALL(ff_evc_profiles), + }, /* various PCM "codecs" */ { |