diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-04-06 18:51:38 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-04-10 04:17:44 +0200 |
commit | 6c2cc205f624553c181a65c90c5427bf6e37b6b7 (patch) | |
tree | 8dacc00ede6ad2a20b0bbee1cc8f19a5d0169a55 /libavcodec/mpegvideo_enc.c | |
parent | 2de159fcf16c25ef4c7f1f06ea61c5f43995108c (diff) | |
download | ffmpeg-6c2cc205f624553c181a65c90c5427bf6e37b6b7.tar.gz |
avcodec/mpegvideo: Deprecate duplicate matrix opt for unsupported codecs
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpegvideo_enc.c')
-rw-r--r-- | libavcodec/mpegvideo_enc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index 03fcfa83dd..2330e4440e 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/libavcodec/mpegvideo_enc.c @@ -89,6 +89,7 @@ const AVOption ff_mpv_generic_options[] = { #if FF_API_MPEGVIDEO_OPTS FF_MPV_DEPRECATED_MPEG_QUANT_OPT FF_MPV_DEPRECATED_A53_CC_OPT + FF_MPV_DEPRECATED_MATRIX_OPT #endif { NULL }, }; @@ -4714,6 +4715,7 @@ static const AVOption h263_options[] = { #if FF_API_MPEGVIDEO_OPTS FF_MPV_DEPRECATED_MPEG_QUANT_OPT FF_MPV_DEPRECATED_A53_CC_OPT + FF_MPV_DEPRECATED_MATRIX_OPT #endif { NULL }, }; @@ -4748,6 +4750,7 @@ static const AVOption h263p_options[] = { #if FF_API_MPEGVIDEO_OPTS FF_MPV_DEPRECATED_MPEG_QUANT_OPT FF_MPV_DEPRECATED_A53_CC_OPT + FF_MPV_DEPRECATED_MATRIX_OPT #endif { NULL }, }; |