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/avcodec.h | |
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/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 84e29a02db..d17bdc360d 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1715,6 +1715,9 @@ typedef struct AVCodecContext { #define FF_PROFILE_KLVA_SYNC 0 #define FF_PROFILE_KLVA_ASYNC 1 +#define FF_PROFILE_EVC_BASELINE 0 +#define FF_PROFILE_EVC_MAIN 1 + /** * level * - encoding: Set by user. |