aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/profiles.c
diff options
context:
space:
mode:
authorDawid Kozinski <d.kozinski@samsung.com>2023-05-26 12:30:33 +0200
committerJames Almer <jamrial@gmail.com>2023-05-29 11:38:21 -0300
commit637afea88ed42498be4f60eff4eb8e2f00eeb89f (patch)
tree5cd2f3ce5138bceb1b1cad473687bc0d7b65de98 /libavcodec/profiles.c
parent45fa85a77797630e361e8f8254560c4f56e0a5cb (diff)
downloadffmpeg-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/profiles.c')
-rw-r--r--libavcodec/profiles.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/profiles.c b/libavcodec/profiles.c
index 545626337c..c646a3f54d 100644
--- a/libavcodec/profiles.c
+++ b/libavcodec/profiles.c
@@ -194,4 +194,10 @@ const AVProfile ff_arib_caption_profiles[] = {
{ FF_PROFILE_UNKNOWN }
};
+const AVProfile ff_evc_profiles[] = {
+ { FF_PROFILE_EVC_BASELINE, "Baseline" },
+ { FF_PROFILE_EVC_MAIN, "Main" },
+ { FF_PROFILE_UNKNOWN },
+};
+
#endif /* !CONFIG_SMALL */