summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideoenc.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-03-17 12:23:13 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-03-21 23:25:36 +0100
commitfa989df1c68527bde027623b3902edf96b9845c5 (patch)
treefb6ff634b966ffa8506d0645dab309b6b3858ad4 /libavcodec/mpegvideoenc.h
parent86c909558ce3e7505d5a63647c27cd0a4314a603 (diff)
downloadffmpeg-fa989df1c68527bde027623b3902edf96b9845c5.tar.gz
avcodec/internal: Move FF_DEFAULT_QUANT_BIAS to mpegvideoenc.h
Only used there. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpegvideoenc.h')
-rw-r--r--libavcodec/mpegvideoenc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mpegvideoenc.h b/libavcodec/mpegvideoenc.h
index 9619f6787a..fae41457bf 100644
--- a/libavcodec/mpegvideoenc.h
+++ b/libavcodec/mpegvideoenc.h
@@ -29,7 +29,6 @@
#define AVCODEC_MPEGVIDEOENC_H
#include "libavutil/opt.h"
-#include "internal.h"
#include "mpegvideo.h"
#define UNI_AC_ENC_INDEX(run,level) ((run)*128 + (level))
@@ -42,6 +41,8 @@
#define FF_MPV_FLAG_NAQ 0x0010
#define FF_MPV_FLAG_MV0 0x0020
+#define FF_DEFAULT_QUANT_BIAS 999999
+
#define FF_MPV_OPT_CMP_FUNC \
{ "sad", "Sum of absolute differences, fast", 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_SAD }, INT_MIN, INT_MAX, FF_MPV_OPT_FLAGS, "cmp_func" }, \
{ "sse", "Sum of squared errors", 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_SSE }, INT_MIN, INT_MAX, FF_MPV_OPT_FLAGS, "cmp_func" }, \