diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-07 14:50:34 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-24 21:36:45 +0200 |
commit | de640d2b5327645b250ef913b7e12d56a91828ed (patch) | |
tree | f9f3493a2fee8bd898c22678c2ec6d3423c2b853 /libavcodec/ituh263enc.c | |
parent | 3fba5d4f3c6b50a3f52de4cae3cf62fb93e30b0e (diff) | |
download | ffmpeg-de640d2b5327645b250ef913b7e12d56a91828ed.tar.gz |
avcodec/mjpegenc: Remove pointless motion-estimation options
(M)JPEG does not use motion estimation/motion vectors at all.
These options therefore don't affect the output at all.
So remove them.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/ituh263enc.c')
-rw-r--r-- | libavcodec/ituh263enc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/ituh263enc.c b/libavcodec/ituh263enc.c index e99ebfe076..ca44819639 100644 --- a/libavcodec/ituh263enc.c +++ b/libavcodec/ituh263enc.c @@ -885,6 +885,7 @@ static const AVOption h263_options[] = { { "obmc", "use overlapped block motion compensation.", OFFSET(obmc), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE }, { "mb_info", "emit macroblock info for RFC 2190 packetization, the parameter value is the maximum payload size", OFFSET(mb_info), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE }, FF_MPV_COMMON_OPTS + FF_MPV_COMMON_MOTION_EST_OPTS #if FF_API_MPEGVIDEO_OPTS FF_MPV_DEPRECATED_MPEG_QUANT_OPT FF_MPV_DEPRECATED_A53_CC_OPT @@ -921,6 +922,7 @@ static const AVOption h263p_options[] = { { "obmc", "use overlapped block motion compensation.", OFFSET(obmc), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE }, { "structured_slices", "Write slice start position at every GOB header instead of just GOB number.", OFFSET(h263_slice_structured), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE}, FF_MPV_COMMON_OPTS + FF_MPV_COMMON_MOTION_EST_OPTS #if FF_API_MPEGVIDEO_OPTS FF_MPV_DEPRECATED_MPEG_QUANT_OPT FF_MPV_DEPRECATED_A53_CC_OPT |