diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-17 12:23:13 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-21 23:25:36 +0100 |
commit | fa989df1c68527bde027623b3902edf96b9845c5 (patch) | |
tree | fb6ff634b966ffa8506d0645dab309b6b3858ad4 | |
parent | 86c909558ce3e7505d5a63647c27cd0a4314a603 (diff) | |
download | ffmpeg-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>
-rw-r--r-- | libavcodec/internal.h | 2 | ||||
-rw-r--r-- | libavcodec/mpegvideoenc.h | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h index 351c057d01..badca4c9dd 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -35,8 +35,6 @@ #include "bsf.h" #include "config.h" -#define FF_DEFAULT_QUANT_BIAS 999999 - #define FF_QSCALE_TYPE_MPEG1 0 #define FF_QSCALE_TYPE_MPEG2 1 #define FF_QSCALE_TYPE_H264 2 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" }, \ |