Add AV1 codec id

This commit is contained in:
Isaac 2024-11-14 21:18:45 +04:00
commit 907e9b1c94
2 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,7 @@ extern int FFMpegCodecIdH264;
extern int FFMpegCodecIdHEVC;
extern int FFMpegCodecIdMPEG4;
extern int FFMpegCodecIdVP9;
extern int FFMpegCodecIdAV1;
@class FFMpegAVCodecContext;

View File

@ -11,6 +11,7 @@ int FFMpegCodecIdH264 = AV_CODEC_ID_H264;
int FFMpegCodecIdHEVC = AV_CODEC_ID_HEVC;
int FFMpegCodecIdMPEG4 = AV_CODEC_ID_MPEG4;
int FFMpegCodecIdVP9 = AV_CODEC_ID_VP9;
int FFMpegCodecIdAV1 = AV_CODEC_ID_AV1;
@interface FFMpegAVFormatContext () {
AVFormatContext *_impl;