We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 30f661b + 8be5217 commit 907e9b1Copy full SHA for 907e9b1
submodules/FFMpegBinding/Public/FFMpegBinding/FFMpegAVFormatContext.h
@@ -28,6 +28,7 @@ extern int FFMpegCodecIdH264;
28
extern int FFMpegCodecIdHEVC;
29
extern int FFMpegCodecIdMPEG4;
30
extern int FFMpegCodecIdVP9;
31
+extern int FFMpegCodecIdAV1;
32
33
@class FFMpegAVCodecContext;
34
submodules/FFMpegBinding/Sources/FFMpegAVFormatContext.m
@@ -11,6 +11,7 @@
11
int FFMpegCodecIdHEVC = AV_CODEC_ID_HEVC;
12
int FFMpegCodecIdMPEG4 = AV_CODEC_ID_MPEG4;
13
int FFMpegCodecIdVP9 = AV_CODEC_ID_VP9;
14
+int FFMpegCodecIdAV1 = AV_CODEC_ID_AV1;
15
16
@interface FFMpegAVFormatContext () {
17
AVFormatContext *_impl;
0 commit comments