diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-17 09:02:27 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-24 21:37:17 +0200 |
commit | d587b1c32388fe60d7469424172e15b57bc5b4bd (patch) | |
tree | 6b9648417087d5ab82b8935ea1fc32864adae8f1 /libavcodec/version_major.h | |
parent | de640d2b5327645b250ef913b7e12d56a91828ed (diff) | |
download | ffmpeg-d587b1c32388fe60d7469424172e15b57bc5b4bd.tar.gz |
avcodec/mpegvideoenc: Remove ineffective options
This commit removes the ineffective FF_MPV_DEPRECATED_ options,
namely mpeg_quant (this is only an option for MPEG-4), a53cc
(this is only an option for MPEG-2), force_duplicated_matrix
(applies only to MJPEG) and b_strategy, b_sensitivity and brd_scale
(these options only make sense for encoders supporting B-frames,
which currently means the MPEG-1/2 and MPEG-4 encoders).
Given that these options never changed the outcome of encoding,
they are removed at once.
Notice that the options for the encoders for which it made sense
are not affected by this.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/version_major.h')
-rw-r--r-- | libavcodec/version_major.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/version_major.h b/libavcodec/version_major.h index 6ece4ac518..87609d5436 100644 --- a/libavcodec/version_major.h +++ b/libavcodec/version_major.h @@ -46,7 +46,6 @@ #define FF_API_AUTO_THREADS (LIBAVCODEC_VERSION_MAJOR < 60) #define FF_API_INIT_PACKET (LIBAVCODEC_VERSION_MAJOR < 60) #define FF_API_AVCTX_TIMEBASE (LIBAVCODEC_VERSION_MAJOR < 60) -#define FF_API_MPEGVIDEO_OPTS (LIBAVCODEC_VERSION_MAJOR < 60) #define FF_API_FLAG_TRUNCATED (LIBAVCODEC_VERSION_MAJOR < 60) #define FF_API_SUB_TEXT_FORMAT (LIBAVCODEC_VERSION_MAJOR < 60) #define FF_API_MJPEG_PRED (LIBAVCODEC_VERSION_MAJOR < 60) |