diff options
author | Min Chen <chenm003@163.com> | 2024-10-04 23:04:04 +0530 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2024-10-09 16:30:37 +0300 |
commit | 37842f2caa0fb495869aab61603edc5c6b8a45f4 (patch) | |
tree | f7f640cf90f64cd5be96c58a145887e02086d998 /libavcodec/mfenc.c | |
parent | 6668268e16b6d1a6992840dccb12effece2e7202 (diff) | |
download | ffmpeg-37842f2caa0fb495869aab61603edc5c6b8a45f4.tar.gz |
avcodec/mfenc: add support for AV1 MF encoders
Signed-off-by: Dash Santosh <dash.sathyanarayanan@multicorewareinc.com>
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/mfenc.c')
-rw-r--r-- | libavcodec/mfenc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mfenc.c b/libavcodec/mfenc.c index b8f8a25f43..c062d87f11 100644 --- a/libavcodec/mfenc.c +++ b/libavcodec/mfenc.c @@ -1315,3 +1315,4 @@ static const FFCodecDefault defaults[] = { MF_ENCODER(VIDEO, h264, H264, venc_opts, VFMTS, VCAPS, defaults); MF_ENCODER(VIDEO, hevc, HEVC, venc_opts, VFMTS, VCAPS, defaults); +MF_ENCODER(VIDEO, av1, AV1, venc_opts, VFMTS, VCAPS, defaults); |