22 #ifndef AVCODEC_OPTIONS_TABLE_H 23 #define AVCODEC_OPTIONS_TABLE_H 33 #define OFFSET(x) offsetof(AVCodecContext,x) 34 #define DEFAULT 0 //should be NAN but it does not work as it is not a constant in glibc as required by ANSI/ISO C 36 #define V AV_OPT_FLAG_VIDEO_PARAM 37 #define A AV_OPT_FLAG_AUDIO_PARAM 38 #define S AV_OPT_FLAG_SUBTITLE_PARAM 39 #define E AV_OPT_FLAG_ENCODING_PARAM 40 #define D AV_OPT_FLAG_DECODING_PARAM 41 #define CC AV_OPT_FLAG_CHILD_CONSTS 43 #define AV_CODEC_DEFAULT_BITRATE 200*1000 48 {
"bt",
"Set video bitrate tolerance (in bits/s). In 1-pass mode, bitrate tolerance specifies how far " 49 "ratecontrol is willing to deviate from the target average bitrate value. This is not related " 50 "to minimum/maximum bitrate. Lowering tolerance too much has an adverse effect on quality.",
95 {
"qcomp",
"video quantizer scale compression (VBR). Constant of ratecontrol equation. " 96 "Recommended range for default rc_eq: 0.0-1.0",
101 {
"qdiff",
"maximum difference between the quantizer scales (VBR)",
OFFSET(max_qdiff),
AV_OPT_TYPE_INT, {.i64 = 3 }, INT_MIN, INT_MAX,
V|
E},
103 {
"b_qfactor",
"QP factor between P- and B-frames",
OFFSET(b_quant_factor),
AV_OPT_TYPE_FLOAT, {.dbl = 1.25 }, -FLT_MAX, FLT_MAX,
V|
E},
104 #if FF_API_PRIVATE_OPT 105 {
"b_strategy",
"strategy to choose between I/P/B-frames",
OFFSET(b_frame_strategy),
AV_OPT_TYPE_INT, {.i64 = 0 }, INT_MIN, INT_MAX,
V|
E},
133 {
"ms",
"work around various bugs in Microsoft's broken decoders", 0,
AV_OPT_TYPE_CONST, {.i64 =
FF_BUG_MS }, INT_MIN, INT_MAX,
V|
D,
"bug"},
142 {
"b_qoffset",
"QP offset between P- and B-frames",
OFFSET(b_quant_offset),
AV_OPT_TYPE_FLOAT, {.dbl = 1.25 }, -FLT_MAX, FLT_MAX,
V|
E},
143 {
"err_detect",
"set error detection flags",
OFFSET(err_recognition),
AV_OPT_TYPE_FLAGS, {.i64 = 0 }, INT_MIN, INT_MAX,
A|
V|
D,
"err_detect"},
149 {
"careful",
"consider things that violate the spec, are fast to check and have not been seen in the wild as errors", 0,
AV_OPT_TYPE_CONST, {.i64 =
AV_EF_CAREFUL }, INT_MIN, INT_MAX,
A|
V|
D,
"err_detect"},
154 #if FF_API_PRIVATE_OPT 159 {
"minrate",
"minimum bitrate (in bits/s). Most useful in setting up a CBR encode. It is of little use otherwise.",
162 {
"i_qfactor",
"QP factor between P- and I-frames",
OFFSET(i_quant_factor),
AV_OPT_TYPE_FLOAT, {.dbl = -0.8 }, -FLT_MAX, FLT_MAX,
V|
E},
163 {
"i_qoffset",
"QP offset between P- and I-frames",
OFFSET(i_quant_offset),
AV_OPT_TYPE_FLOAT, {.dbl = 0.0 }, -FLT_MAX, FLT_MAX,
V|
E},
171 {
"lumi_mask",
"compresses bright areas stronger than medium ones",
OFFSET(lumi_masking),
AV_OPT_TYPE_FLOAT, {.dbl = 0 }, -FLT_MAX, FLT_MAX,
V|
E},
172 {
"tcplx_mask",
"temporal complexity masking",
OFFSET(temporal_cplx_masking),
AV_OPT_TYPE_FLOAT, {.dbl = 0 }, -FLT_MAX, FLT_MAX,
V|
E},
173 {
"scplx_mask",
"spatial complexity masking",
OFFSET(spatial_cplx_masking),
AV_OPT_TYPE_FLOAT, {.dbl = 0 }, -FLT_MAX, FLT_MAX,
V|
E},
175 {
"dark_mask",
"compresses dark areas stronger than medium ones",
OFFSET(dark_masking),
AV_OPT_TYPE_FLOAT, {.dbl = 0 }, -FLT_MAX, FLT_MAX,
V|
E},
188 {
"xvidmmx",
"deprecated, for compatibility only", 0,
AV_OPT_TYPE_CONST, {.i64 =
FF_IDCT_XVID }, INT_MIN, INT_MAX,
V|
E|
D,
"idct"},
192 {
"ec",
"set error concealment strategy",
OFFSET(error_concealment),
AV_OPT_TYPE_FLAGS, {.i64 = 3 }, INT_MIN, INT_MAX,
V|
D,
"ec"},
197 #if FF_API_PRIVATE_OPT 212 {
"mv",
"motion vector", 0,
AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_MV }, INT_MIN, INT_MAX,
V|
D,
"debug"},
222 {
"vis_qp",
"visualize quantization parameter (QP), lower QP are tinted greener", 0,
AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_VIS_QP }, INT_MIN, INT_MAX,
V|
D,
"debug"},
223 {
"vis_mb_type",
"visualize block types", 0,
AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_VIS_MB_TYPE }, INT_MIN, INT_MAX,
V|
D,
"debug"},
229 {
"last_pred",
"amount of motion predictors from the previous frame",
OFFSET(last_predictor_count),
AV_OPT_TYPE_INT, {.i64 =
DEFAULT }, INT_MIN, INT_MAX,
V|
E},
230 #if FF_API_PRIVATE_OPT 233 {
"pre_dia_size",
"diamond type & size for motion estimation pre-pass",
OFFSET(pre_dia_size),
AV_OPT_TYPE_INT, {.i64 =
DEFAULT }, INT_MIN, INT_MAX,
V|
E},
234 {
"subq",
"sub-pel motion estimation quality",
OFFSET(me_subpel_quality),
AV_OPT_TYPE_INT, {.i64 = 8 }, INT_MIN, INT_MAX,
V|
E},
237 #if FF_API_CODER_TYPE 244 #if FF_API_PRIVATE_OPT 252 #if FF_API_PRIVATE_OPT 255 #if FF_API_PRIVATE_OPT 258 {
"rc_init_occupancy",
"number of bits which should be loaded into the rc buffer before decoding starts",
OFFSET(rc_initial_buffer_occupancy),
AV_OPT_TYPE_INT, {.i64 =
DEFAULT }, INT_MIN, INT_MAX,
V|
E},
259 {
"threads",
"set the number of threads",
OFFSET(thread_count),
AV_OPT_TYPE_INT, {.i64 = 1 }, 0, INT_MAX,
V|
A|
E|
D,
"threads"},
260 {
"auto",
"autodetect a suitable number of threads to use", 0,
AV_OPT_TYPE_CONST, {.i64 = 0 }, INT_MIN, INT_MAX,
V|
E|
D,
"threads"},
263 {
"skip_top",
"number of macroblock rows at the top which are skipped",
OFFSET(skip_top),
AV_OPT_TYPE_INT, {.i64 =
DEFAULT }, INT_MIN, INT_MAX,
V|
D},
264 {
"skip_bottom",
"number of macroblock rows at the bottom which are skipped",
OFFSET(skip_bottom),
AV_OPT_TYPE_INT, {.i64 =
DEFAULT }, INT_MIN, INT_MAX,
V|
D},
270 {
"lowres",
"decode at 1= 1/2, 2=1/4, 3=1/8 resolutions",
OFFSET(
lowres),
AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX,
V|
A|
D},
271 #if FF_API_PRIVATE_OPT 282 {
"sad",
"sum of absolute differences, fast", 0,
AV_OPT_TYPE_CONST, {.i64 =
FF_CMP_SAD }, INT_MIN, INT_MAX,
V|
E,
"cmp_func"},
286 {
"psnr",
"sum of squared quantization errors (avoid, low quality)", 0,
AV_OPT_TYPE_CONST, {.i64 =
FF_CMP_PSNR }, INT_MIN, INT_MAX,
V|
E,
"cmp_func"},
288 {
"rd",
"rate distortion optimal, slow", 0,
AV_OPT_TYPE_CONST, {.i64 =
FF_CMP_RD }, INT_MIN, INT_MAX,
V|
E,
"cmp_func"},
293 #if CONFIG_SNOW_ENCODER 294 {
"w53",
"5/3 wavelet, only used in snow", 0,
AV_OPT_TYPE_CONST, {.i64 =
FF_CMP_W53 }, INT_MIN, INT_MAX,
V|
E,
"cmp_func"},
295 {
"w97",
"9/7 wavelet, only used in snow", 0,
AV_OPT_TYPE_CONST, {.i64 =
FF_CMP_W97 }, INT_MIN, INT_MAX,
V|
E,
"cmp_func"},
299 {
"msad",
"sum of absolute differences, median predicted", 0,
AV_OPT_TYPE_CONST, {.i64 =
FF_CMP_MEDIAN_SAD }, INT_MIN, INT_MAX,
V|
E,
"cmp_func"},
302 #if FF_API_PRIVATE_OPT 303 {
"mepc",
"motion estimation bitrate penalty compensation (1.0 = 256)",
OFFSET(me_penalty_compensation),
AV_OPT_TYPE_INT, {.i64 = 256 }, INT_MIN, INT_MAX,
V|
E},
316 #if FF_API_PRIVATE_OPT 319 {
"keyint_min",
"minimum interval between IDR-frames",
OFFSET(keyint_min),
AV_OPT_TYPE_INT, {.i64 = 25 }, INT_MIN, INT_MAX,
V|
E},
320 {
"refs",
"reference frames to consider for motion compensation",
OFFSET(refs),
AV_OPT_TYPE_INT, {.i64 = 1 }, INT_MIN, INT_MAX,
V|
E},
321 #if FF_API_PRIVATE_OPT 326 #if FF_API_PRIVATE_OPT 327 {
"b_sensitivity",
"adjust sensitivity of b_frame_strategy 1",
OFFSET(b_sensitivity),
AV_OPT_TYPE_INT, {.i64 = 40 }, 1, INT_MAX,
V|
E},
330 #if FF_API_PRIVATE_OPT 333 {
"timecode_frame_start",
"GOP timecode frame start number, in non-drop-frame format",
OFFSET(timecode_frame_start),
AV_OPT_TYPE_INT64, {.i64 = -1 }, -1, INT64_MAX,
V|
E},
420 {
"slices",
"set the number of slices, used in parallelized encoding",
OFFSET(slices),
AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX,
V|
E},
442 #if FF_API_ASS_TIMING 448 #if FF_API_ASS_TIMING 452 #if FF_API_SIDEDATA_ONLY_PKT 470 {
"ignore_level",
"ignore level even if the codec level used is unknown or higher than the maximum supported level reported by the hardware driver", 0,
AV_OPT_TYPE_CONST, { .i64 =
AV_HWACCEL_FLAG_IGNORE_LEVEL }, INT_MIN, INT_MAX,
V |
D,
"hwaccel_flags" },
473 {
"extra_hw_frames",
"Number of extra hardware frames to allocate for the user",
OFFSET(extra_hw_frames),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX,
V|
D },
474 {
"discard_damaged_percentage",
"Percentage of damaged samples to discard a frame",
OFFSET(discard_damaged_percentage),
AV_OPT_TYPE_INT, {.i64 = 95 }, 0, 100,
V|
D },
#define FF_IDCT_SIMPLEARMV5TE
ITU-R BT2020 for 12-bit system.
#define AV_CODEC_FLAG_INTERLACED_ME
interlaced motion estimation
also ITU-R BT1361 / IEC 61966-2-4 xvYCC709 / SMPTE RP177 Annex B
#define FF_COMPLIANCE_EXPERIMENTAL
Allow nonstandardized experimental things.
EBU Tech. 3213-E / JEDEC P22 phosphors.
#define AV_EF_AGGRESSIVE
consider things that a sane encoder should not do as an error
#define FF_SUB_CHARENC_MODE_PRE_DECODER
the AVPacket data needs to be recoded to UTF-8 before being fed to the decoder, requires iconv ...
#define AV_CODEC_EXPORT_DATA_VIDEO_ENC_PARAMS
Decoding only.
discard all frames except keyframes
#define FF_BUG_XVID_ILACE
static enum AVPixelFormat pix_fmt
#define FF_COMPRESSION_DEFAULT
#define FF_SUB_CHARENC_MODE_AUTOMATIC
libavcodec will select the mode itself
MPEG-2/4 4:2:0, H.264 default for 4:2:0.
#define FF_MB_DECISION_BITS
chooses the one which needs the fewest bits
"Linear transfer characteristics"
#define AV_CODEC_FLAG_INTERLACED_DCT
Use interlaced DCT.
#define AV_CODEC_FLAG2_SKIP_MANUAL
Do not skip samples and export skip information as frame side data.
#define AV_CODEC_FLAG_LOOP_FILTER
loop filter.
also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM / IEC 61966-2-4 xvYCC601 ...
#define FF_COMPLIANCE_VERY_STRICT
Strictly conform to an older more strict version of the spec or reference software.
SMPTE ST 432-1 (2010) / P3 D65 / Display P3.
#define FF_SUB_CHARENC_MODE_DO_NOTHING
do nothing (demuxer outputs a stream supposed to be already in UTF-8, or the codec is bitmap for inst...
#define FF_DEBUG_BITSTREAM
#define AV_EF_COMPLIANT
consider all spec non compliances as errors
#define AV_EF_BUFFER
detect improper bitstream length
#define FF_BUG_HPEL_CHROMA
also ITU-R BT601-6 525 / ITU-R BT1358 525 / ITU-R BT1700 NTSC
static const AVOption avcodec_options[]
static int bidir_refine(MpegEncContext *s, int mb_x, int mb_y)
SMPTE ST 431-2 (2011) / DCI P3.
#define AV_EF_BITSTREAM
detect bitstream specification deviations
discard all non intra frames
#define AV_CODEC_FLAG2_CHUNKS
Input bitstream might be truncated at a packet boundaries instead of only at frame boundaries...
order of coefficients is actually GBR, also IEC 61966-2-1 (sRGB)
functionally identical to above
static int apply_cropping(AVCodecContext *avctx, AVFrame *frame)
#define FF_BUG_MS
Work around various bugs in Microsoft's broken decoders.
int log_level_offset
logging level offset
#define AV_CODEC_EXPORT_DATA_MVS
Export motion vectors through frame side data.
#define FF_DEBUG_PICT_INFO
#define AV_CODEC_FLAG_UNALIGNED
Allow decoders to produce frames with data planes that are not aligned to CPU requirements (e...
Used by Dirac / VC-2 and H.264 FRext, see ITU-T SG16.
#define AV_CODEC_FLAG_LOW_DELAY
Force low delay.
also ITU-R BT470M / ITU-R BT1700 625 PAL & SECAM
#define FF_BUG_QPEL_CHROMA2
#define AV_CODEC_FLAG2_RO_FLUSH_NOOP
Do not reset ASS ReadOrder field on flush (subtitles decoding)
#define AV_CODEC_FLAG_GRAY
Only decode/encode grayscale.
#define FF_PROFILE_HEVC_MAIN_10
static const uint8_t mv_bits[2][16][10]
#define FF_IDCT_SIMPLEARM
#define FF_COMPLIANCE_UNOFFICIAL
Allow unofficial extensions.
#define FF_IDCT_SIMPLEAUTO
Libavcodec version macros.
#define FF_BUG_DIRECT_BLOCKSIZE
#define FF_CMP_MEDIAN_SAD
#define AV_HWACCEL_FLAG_IGNORE_LEVEL
Hardware acceleration should be used for decoding even if the codec level used is unknown or higher t...
#define AV_HWACCEL_FLAG_ALLOW_HIGH_DEPTH
Hardware acceleration can output YUV pixel formats with a different chroma sampling than 4:2:0 and/or...
also FCC Title 47 Code of Federal Regulations 73.682 (a)(20)
#define AV_CODEC_FLAG2_IGNORE_CROP
Discard cropping information from SPS.
ITU-R BT1361 Extended Colour Gamut.
#define AV_CODEC_FLAG_4MV
4 MV per MB allowed / advanced prediction for H.263.
discard all bidirectional frames
double cutoff
resampling cutoff frequency (swr: 6dB point; soxr: 0dB point).
#define FF_SUB_TEXT_FMT_ASS
#define FF_BUG_NO_PADDING
also ITU-R BT1361 / IEC 61966-2-4 / SMPTE RP177 Annex B
SMPTE ST 428-1 (CIE 1931 XYZ)
SMPTE ST 2084 for 10-, 12-, 14- and 16-bit systems.
#define AV_CODEC_FLAG_BITEXACT
Use only bitexact stuff (except (I)DCT).
#define AV_CODEC_FLAG_QSCALE
Use fixed qscale.
#define FF_THREAD_FRAME
Decode more than one frame at once.
#define AV_CODEC_FLAG_AC_PRED
H.263 advanced intra coding / MPEG-4 AC prediction.
colour filters using Illuminant C
#define FF_IDCT_SIMPLEARMV6
#define FF_PROFILE_UNKNOWN
ITU-R BT2020 non-constant luminance system.
ITU-R 601, SMPTE 274M 296M S314M(DV 4:1:1), mpeg2 4:2:2.
also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM
static const struct ColorPrimaries color_primaries[AVCOL_PRI_NB]
#define AV_CODEC_FLAG_PSNR
error[?] variables will be set during encoding.
#define AV_CODEC_FLAG_PASS1
Use internal 2pass ratecontrol in first pass mode.
#define FF_MB_DECISION_SIMPLE
uses mb_cmp
#define FF_THREAD_SLICE
Decode more than one part of a single frame at once.
#define AV_EF_EXPLODE
abort decoding on minor error detection
#define FF_BUG_QPEL_CHROMA
FCC Title 47 Code of Federal Regulations 73.682 (a)(20)
#define AV_CODEC_DEFAULT_BITRATE
#define AV_CODEC_EXPORT_DATA_FILM_GRAIN
Decoding only.
also ITU-R BT601-6 525 or 625 / ITU-R BT1358 525 or 625 / ITU-R BT1700 NTSC
Libavcodec external API header.
functionally identical to above
#define FF_IDCT_SIMPLENEON
#define AV_CODEC_FLAG2_FAST
Allow non spec compliant speedup tricks.
Chromaticity-derived constant luminance system.
#define AV_CODEC_FLAG2_LOCAL_HEADER
Place global headers at every keyframe instead of in extradata.
#define AV_EF_CAREFUL
consider things that violate the spec, are fast to calculate and have not been seen in the wild as er...
Chromaticity-derived non-constant luminance system.
#define FF_CODER_TYPE_VLC
#define FF_COMPLIANCE_NORMAL
#define FF_DEBUG_DCT_COEFF
#define FF_MB_DECISION_RD
rate distortion
"Logarithmic transfer characteristic (100 * Sqrt(10) : 1 range)"
#define AV_EF_IGNORE_ERR
ignore errors and continue
#define AV_EF_CRCCHECK
Verify checksums embedded in the bitstream (could be of either encoded or decoded data...
discard useless packets like 0 size packets in avi
#define FF_DEBUG_GREEN_MD
#define FF_COMPLIANCE_STRICT
Strictly conform to all the things in the spec no matter what consequences.
#define AV_CODEC_EXPORT_DATA_PRFT
Export encoder Producer Reference Time through packet side data.
offset must point to two consecutive integers
#define AV_CODEC_FLAG_DROPCHANGED
Don't output frames whose parameters differ from first decoded frame in stream.
#define FF_BUG_AUTODETECT
autodetection
#define flags(name, subs,...)
#define AV_CODEC_FLAG_QPEL
Use qpel MC.
#define AV_CODEC_FLAG_GLOBAL_HEADER
Place global headers in extradata instead of every keyframe.
Narrow or limited range content.
ITU-R BT2020 constant luminance system.
discard all non reference
#define FF_EC_FAVOR_INTER
IEC 61966-2-1 (sRGB or sYCC)
#define AV_CODEC_FLAG2_NO_OUTPUT
Skip bitstream encoding.
#define FF_CODER_TYPE_RAW
SMPTE 2085, Y'D'zD'x.
#define FF_IDCT_SIMPLEMMX
ARIB STD-B67, known as "Hybrid log-gamma".
#define AV_CODEC_FLAG_PASS2
Use internal 2pass ratecontrol in second pass mode.
#define FF_DEBUG_STARTCODE
#define AV_CODEC_FLAG_OUTPUT_CORRUPT
Output even those frames that might be corrupted.
#define FF_CODER_TYPE_RLE
#define FF_QP2LAMBDA
factor to convert from H.263 QP to lambda
ITU-R BT2020 for 10-bit system.
#define AV_CODEC_FLAG2_EXPORT_MVS
Export motion vectors through frame side data.
also ITU-R BT601-6 525 / ITU-R BT1358 525 / ITU-R BT1700 NTSC
#define AV_CODEC_FLAG_TRUNCATED
Input bitstream might be truncated at a random location instead of only at frame boundaries.
#define AV_CODEC_FLAG2_SHOW_ALL
Show all frames before the first keyframe.
#define AV_HWACCEL_FLAG_ALLOW_PROFILE_MISMATCH
Hardware acceleration should still be attempted for decoding when the codec profile does not match th...
MPEG-1 4:2:0, JPEG 4:2:0, H.263 4:2:0.
#define AV_CODEC_FLAG_CLOSED_GOP
#define FF_SUB_TEXT_FMT_ASS_WITH_TIMINGS
#define FF_SUB_CHARENC_MODE_IGNORE
neither convert the subtitles, nor check them for valid UTF-8
"Logarithmic transfer characteristic (100:1 range)"