28 #ifndef AVCODEC_MPEGVIDEO_H
29 #define AVCODEC_MPEGVIDEO_H
59 #define FRAME_SKIPPED 100
63 #define MAX_THREADS 32
64 #define MAX_PICTURE_COUNT 36
66 #define MAX_B_FRAMES 16
68 #define ME_MAP_SIZE 64
70 #define MAX_MB_BYTES (30*16*16*3/8 + 120)
72 #define INPLACE_OFFSET 16
77 #define SEQ_END_CODE 0x000001b7
78 #define SEQ_START_CODE 0x000001b3
79 #define GOP_START_CODE 0x000001b8
80 #define PICTURE_START_CODE 0x00000100
81 #define SLICE_MIN_START_CODE 0x00000101
82 #define SLICE_MAX_START_CODE 0x000001af
83 #define EXT_START_CODE 0x000001b5
84 #define USER_START_CODE 0x000001b2
329 #define MV_DIR_FORWARD 1
330 #define MV_DIR_BACKWARD 2
333 #define MV_TYPE_16X16 0
334 #define MV_TYPE_8X8 1
335 #define MV_TYPE_16X8 2
336 #define MV_TYPE_FIELD 3
337 #define MV_TYPE_DMV 4
384 #define UNI_AC_ENC_INDEX(run,level) ((run)*128 + (level))
562 #define SLICE_ERROR -1
564 #define SLICE_NOEND -3
619 #define FF_MPV_FLAG_SKIP_RD 0x0001
620 #define FF_MPV_FLAG_STRICT_GOP 0x0002
621 #define FF_MPV_FLAG_QP_RD 0x0004
622 #define FF_MPV_FLAG_CBP_RD 0x0008
623 #define FF_MPV_FLAG_NAQ 0x0010
624 #define FF_MPV_FLAG_MV0 0x0020
626 #ifndef FF_MPV_OFFSET
627 #define FF_MPV_OFFSET(x) offsetof(MpegEncContext, x)
629 #define FF_MPV_OPT_FLAGS (AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM)
630 #define FF_MPV_COMMON_OPTS \
631 { "mpv_flags", "Flags common for all mpegvideo-based encoders.", FF_MPV_OFFSET(mpv_flags), AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT_MIN, INT_MAX, FF_MPV_OPT_FLAGS, "mpv_flags" },\
632 { "skip_rd", "RD optimal MB level residual skipping", 0, AV_OPT_TYPE_CONST, { .i64 = FF_MPV_FLAG_SKIP_RD }, 0, 0, FF_MPV_OPT_FLAGS, "mpv_flags" },\
633 { "strict_gop", "Strictly enforce gop size", 0, AV_OPT_TYPE_CONST, { .i64 = FF_MPV_FLAG_STRICT_GOP }, 0, 0, FF_MPV_OPT_FLAGS, "mpv_flags" },\
634 { "qp_rd", "Use rate distortion optimization for qp selection", 0, AV_OPT_TYPE_CONST, { .i64 = FF_MPV_FLAG_QP_RD }, 0, 0, FF_MPV_OPT_FLAGS, "mpv_flags" },\
635 { "cbp_rd", "use rate distortion optimization for CBP", 0, AV_OPT_TYPE_CONST, { .i64 = FF_MPV_FLAG_CBP_RD }, 0, 0, FF_MPV_OPT_FLAGS, "mpv_flags" },\
636 { "naq", "normalize adaptive quantization", 0, AV_OPT_TYPE_CONST, { .i64 = FF_MPV_FLAG_NAQ }, 0, 0, FF_MPV_OPT_FLAGS, "mpv_flags" },\
637 { "mv0", "always try a mb with mv=<0,0>", 0, AV_OPT_TYPE_CONST, { .i64 = FF_MPV_FLAG_MV0 }, 0, 0, FF_MPV_OPT_FLAGS, "mpv_flags" },\
638 { "luma_elim_threshold", "single coefficient elimination threshold for luminance (negative values also consider dc coefficient)",\
639 FF_MPV_OFFSET(luma_elim_threshold), AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX, FF_MPV_OPT_FLAGS },\
640 { "chroma_elim_threshold", "single coefficient elimination threshold for chrominance (negative values also consider dc coefficient)",\
641 FF_MPV_OFFSET(chroma_elim_threshold), AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX, FF_MPV_OPT_FLAGS },\
642 { "quantizer_noise_shaping", NULL, FF_MPV_OFFSET(quantizer_noise_shaping), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FF_MPV_OPT_FLAGS },\
643 { "error_rate", "Simulate errors in the bitstream to test error concealment.", \
644 FF_MPV_OFFSET(error_rate), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FF_MPV_OPT_FLAGS },\
645 {"qsquish", "how to keep quantizer between qmin and qmax (0 = clip, 1 = use differentiable function)", \
646 FF_MPV_OFFSET(rc_qsquish), AV_OPT_TYPE_FLOAT, {.dbl = 0 }, 0, 99, FF_MPV_OPT_FLAGS}, \
647 {"rc_qmod_amp", "experimental quantizer modulation", FF_MPV_OFFSET(rc_qmod_amp), AV_OPT_TYPE_FLOAT, {.dbl = 0 }, -FLT_MAX, FLT_MAX, FF_MPV_OPT_FLAGS}, \
648 {"rc_qmod_freq", "experimental quantizer modulation", FF_MPV_OFFSET(rc_qmod_freq), AV_OPT_TYPE_INT, {.i64 = 0 }, INT_MIN, INT_MAX, FF_MPV_OPT_FLAGS}, \
649 {"rc_eq", "Set rate control equation. When computing the expression, besides the standard functions " \
650 "defined in the section 'Expression Evaluation', the following functions are available: " \
651 "bits2qp(bits), qp2bits(qp). Also the following constants are available: iTex pTex tex mv " \
652 "fCode iCount mcVar var isI isP isB avgQP qComp avgIITex avgPITex avgPPTex avgBPTex avgTex.", \
653 FF_MPV_OFFSET(rc_eq), AV_OPT_TYPE_STRING, .flags = FF_MPV_OPT_FLAGS }, \
654 {"rc_init_cplx", "initial complexity for 1-pass encoding", FF_MPV_OFFSET(rc_initial_cplx), AV_OPT_TYPE_FLOAT, {.dbl = 0 }, -FLT_MAX, FLT_MAX, FF_MPV_OPT_FLAGS}, \
655 {"rc_buf_aggressivity", "currently useless", FF_MPV_OFFSET(rc_buffer_aggressivity), AV_OPT_TYPE_FLOAT, {.dbl = 1.0 }, -FLT_MAX, FLT_MAX, FF_MPV_OPT_FLAGS}, \
656 {"border_mask", "increase the quantizer for macroblocks close to borders", FF_MPV_OFFSET(border_masking), AV_OPT_TYPE_FLOAT, {.dbl = 0 }, -FLT_MAX, FLT_MAX, FF_MPV_OPT_FLAGS}, \
657 {"lmin", "minimum Lagrange factor (VBR)", FF_MPV_OFFSET(lmin), AV_OPT_TYPE_INT, {.i64 = 2*FF_QP2LAMBDA }, 0, INT_MAX, FF_MPV_OPT_FLAGS }, \
658 {"lmax", "maximum Lagrange factor (VBR)", FF_MPV_OFFSET(lmax), AV_OPT_TYPE_INT, {.i64 = 31*FF_QP2LAMBDA }, 0, INT_MAX, FF_MPV_OPT_FLAGS }, \
662 #define FF_MPV_GENERIC_CLASS(name) \
663 static const AVClass name ## _class = {\
664 .class_name = #name " encoder",\
665 .item_name = av_default_item_name,\
666 .option = ff_mpv_generic_options,\
667 .version = LIBAVUTIL_VERSION_INT,\
713 uint32_t *mbtype_table, int8_t *qscale_table, int16_t (*motion_val[2])[2],
729 const uint16_t *quant_matrix,
int bias,
int qmin,
int qmax,
int intra);
768 s->
dest[0]+= 2*block_size;
769 s->
dest[1]+= block_size;
770 s->
dest[2]+= block_size;
int bitstream_buffer_size
int chroma_elim_threshold
int rv10_first_dc_coded[3]
int frame_bits
bits used for the current frame
RateControlContext rc_context
contains stuff only accessed in ratecontrol.c
int16_t(* b_bidir_back_mv_table_base)[2]
#define AV_NUM_DATA_POINTERS
ScanTable intra_v_scantable
void(* dct_unquantize_inter)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
int time_increment_bits
< number of bits to represent the fractional part of time (encoder only)
This structure describes decoded (raw) audio or video data.
int16_t(* p_mv_table)[2]
MV table (1MV per MB) p-frame encoding.
uint8_t * fcode_tab
smallest fcode needed for each MV
int start_mb_y
start mb_y of this thread (so current thread should process start_mb_y <= row < end_mb_y) ...
const uint8_t * y_dc_scale_table
qscale -> y_dc_scale table
uint8_t * mb_mean
Table for MB luminance.
int sprite_warping_accuracy
int last_mv[2][2][2]
last MV, used for MV prediction in MPEG1 & B-frame MPEG4
uint8_t * edge_emu_buffer
temporary buffer for if MVs point to out-of-frame data
int ff_mpv_common_init(MpegEncContext *s)
init common structure for both encoder and decoder.
void ff_init_block_index(MpegEncContext *s)
AVFrame * tmp_frames[MAX_B_FRAMES+2]
uint8_t * coded_block_base
int end_mb_y
end mb_y of this thread (so current thread should process start_mb_y <= row < end_mb_y) ...
uint16_t * mb_var
Table for MB variances.
uint16_t(* q_chroma_intra_matrix16)[2][64]
uint16_t chroma_intra_matrix[64]
int16_t(*[3] ac_val)[16]
used for mpeg4 AC prediction, all 3 arrays must be continuous
int v_edge_pos
horizontal / vertical position of the right/bottom edge (pixel replication)
uint16_t chroma_inter_matrix[64]
void ff_mpv_frame_end(MpegEncContext *s)
int msmpeg4_version
0=not msmpeg4, 1=mp41, 2=mp42, 3=mp43/divx3 4=wmv1/7 5=wmv2/8
int needs_realloc
Picture needs to be reallocated (eg due to a frame size change)
uint8_t * bitstream_buffer
void ff_set_qscale(MpegEncContext *s, int qscale)
set qscale and update qscale dependent variables.
int obmc
overlapped block motion compensation
int field_picture
whether or not the picture was encoded in separate fields
void ff_convert_matrix(MpegEncContext *s, int(*qmat)[64], uint16_t(*qmat16)[2][64], const uint16_t *quant_matrix, int bias, int qmin, int qmax, int intra)
int scan_offset
reserve space for SVCD scan offset user data.
int16_t(*[2][2] p_field_mv_table)[2]
MV table (2MV per MB) interlaced p-frame encoding.
int16_t(* p_mv_table_base)[2]
int min_qcoeff
minimum encodable coefficient
int real_sprite_warping_points
void(* qpel_mc_func)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)
void ff_clean_intra_table_entries(MpegEncContext *s)
Clean dc, ac, coded_block for the current non-intra MB.
int mpv_flags
flags set by private options
uint8_t * intra_ac_vlc_length
int padding_bug_score
used to detect the VERY common padding bug in MPEG4
int mb_num
number of MBs of a picture
int time_base
time in seconds of last I,P,S Frame
int h263_aic
Advanded INTRA Coding (AIC)
int16_t(* b_back_mv_table)[2]
MV table (1MV per MB) backward mode b-frame encoding.
int encoding
true if we are encoding (vs decoding)
void(* dct_unquantize_h263_intra)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
void(* dct_unquantize_intra)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
int16_t(* b_back_mv_table_base)[2]
void(* dct_unquantize_h263_inter)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
int skipdct
skip dct and code zero residual
float rc_buffer_aggressivity
int alloc_mb_width
mb_width used to allocate tables
int picture_in_gop_number
0-> first pic in gop, ...
int alt_inter_vlc
alternative inter vlc
int mb_num_left
number of MBs left in this video packet (for partitioned Slices only)
int64_t time
time of current frame
void ff_block_permute(int16_t *block, uint8_t *permutation, const uint8_t *scantable, int last)
permute block according to permuatation.
const AVOption ff_mpv_generic_options[]
AVRational mpeg2_frame_rate_ext
Picture ** input_picture
next pictures on display order for encoding
void(* denoise_dct)(struct MpegEncContext *s, int16_t *block)
PutBitContext pb2
used for data partitioned VOPs
enum OutputFormat out_format
output format
uint16_t(* dct_offset)[64]
void ff_dct_encode_init_x86(MpegEncContext *s)
void ff_mpv_motion(MpegEncContext *s, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, int dir, uint8_t **ref_picture, op_pixels_func(*pix_op)[4], qpel_mc_func(*qpix_op)[16])
uint8_t * pred_dir_table
used to store pred_dir for partitioned decoding
Multithreading support functions.
Motion estimation context.
void ff_mpeg_draw_horiz_band(MpegEncContext *s, int y, int h)
int misc_bits
cbp, mb_type
int ff_mpeg_ref_picture(AVCodecContext *avctx, Picture *dst, Picture *src)
int no_rounding
apply no rounding to motion compensation (MPEG4, msmpeg4, ...) for b-frames rounding mode is always 0...
int(* q_chroma_intra_matrix)[64]
Picture current_picture
copy of the current picture structure.
GetBitContext last_resync_gb
used to search for the next resync marker
void ff_mpv_common_init_arm(MpegEncContext *s)
void ff_mpv_common_init_ppc(MpegEncContext *s)
int16_t(* b_bidir_forw_mv_table)[2]
MV table (1MV per MB) bidir mode b-frame encoding.
int ff_alloc_picture(AVCodecContext *avctx, Picture *pic, MotionEstContext *me, ScratchpadContext *sc, int shared, int encoding, int chroma_x_shift, int chroma_y_shift, int out_format, int mb_stride, int mb_width, int mb_height, int b8_stride, ptrdiff_t *linesize, ptrdiff_t *uvlinesize)
Allocate a Picture.
bitstream reader API header.
uint16_t pp_time
time distance between the last 2 p,s,i frames
AVBufferRef * mb_type_buf
int mb_height
number of MBs horizontally & vertically
int lowres
low resolution decoding, 1-> 1/2 size, 2->1/4 size
int codec_tag
internal codec_tag upper case converted from avctx codec_tag
int max_qcoeff
maximum encodable coefficient
int16_t(*[2][2] p_field_mv_table_base)[2]
int dquant
qscale difference to prev qscale
int gop_picture_number
index of the first picture of a GOP based on fake_pic_num & mpeg1 specific
static void ff_update_block_index(MpegEncContext *s)
int sprite_offset[2][2]
sprite offset[isChroma][isMVY]
AVBufferRef * mb_mean_buf
int(* q_inter_matrix)[64]
static int get_bits_diff(MpegEncContext *s)
int(* q_intra_matrix)[64]
precomputed matrix (combine qscale and DCT renorm)
int intra_only
if true, only intra pictures are generated
int16_t * dc_val[3]
used for mpeg4 DC prediction, all 3 arrays must be continuous
int h263_plus
h263 plus headers
int slice_context_count
number of used thread_contexts
int last_non_b_pict_type
used for mpeg4 gmc b-frames & ratecontrol
AVCodecID
Identify the syntax and semantics of the bitstream.
int last_dc[3]
last DC values for MPEG1
int16_t direct_scale_mv[2][64]
precomputed to avoid divisions in ff_mpeg4_set_direct_mv
uint8_t * inter_ac_vlc_last_length
int rl_chroma_table_index
int mb_skipped
MUST BE SET only during DECODING.
int strict_std_compliance
strictly follow the std (MPEG4, ...)
int partitioned_frame
is current frame partitioned
uint8_t * rd_scratchpad
scratchpad for rate distortion mb decision
void ff_mpv_common_end(MpegEncContext *s)
int unrestricted_mv
mv can point outside of the coded picture
int last_lambda_for[5]
last lambda for a specific pict type
void(* dct_unquantize_mpeg2_inter)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
void(* dct_unquantize_mpeg1_intra)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
uint8_t * intra_chroma_ac_vlc_length
int h263_slice_structured
uint64_t error[AV_NUM_DATA_POINTERS]
MpegvideoEncDSPContext mpvencdsp
int quarter_sample
1->qpel, 0->half pel ME/MC
uint16_t * mb_type
Table for candidate MB types for encoding (defines in mpegutils.h)
int low_delay
no reordering needed / has no b-frames
int ff_update_duplicate_context(MpegEncContext *dst, MpegEncContext *src)
int(* decode_mb)(struct MpegEncContext *s, int16_t block[6][64])
uint8_t *[2][2] b_field_select_table
Libavcodec external API header.
void ff_print_debug_info2(AVCodecContext *avctx, AVFrame *pict, uint8_t *mbskip_table, uint32_t *mbtype_table, int8_t *qscale_table, int16_t(*motion_val[2])[2], int *low_delay, int mb_width, int mb_height, int mb_stride, int quarter_sample)
Print debugging info for the given picture.
static int put_bits_count(PutBitContext *s)
int resync_mb_x
x position of last resync marker
int coded_picture_number
used to set pic->coded_picture_number, should not be used for/by anything else
int ff_mpv_reallocate_putbitbuffer(MpegEncContext *s, size_t threshold, size_t size_increase)
AVBufferRef * hwaccel_priv_buf
void ff_mpv_common_init_neon(MpegEncContext *s)
uint8_t * intra_ac_vlc_last_length
int sprite_delta[2][2]
sprite_delta [isY][isMVY]
AVBufferRef * motion_val_buf[2]
void(* op_pixels_func)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)
void ff_free_picture_tables(Picture *pic)
int ff_mpv_frame_start(MpegEncContext *s, AVCodecContext *avctx)
generic function called after decoding the header and before a frame is decoded.
uint16_t(* q_inter_matrix16)[2][64]
uint8_t * vbv_delay_ptr
pointer to vbv_delay in the bitstream
int fixed_qscale
fixed qscale if non zero
int next_p_frame_damaged
set if the next p frame is damaged, to avoid showing trashed b frames
int me_method
ME algorithm.
int umvplus
== H263+ && unrestricted_mv
Picture new_picture
copy of the source picture structure for encoding.
int intra_quant_bias
bias for the quantizer
uint8_t * mbskip_table
used to avoid copy if macroblock skipped (for black regions for example) and used for b-frame encodin...
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
int16_t(*[2] motion_val)[2]
Picture * current_picture_ptr
pointer to the current picture
unsigned int allocated_bitstream_buffer_size
void * hwaccel_picture_private
hardware accelerator private data
int16_t(* ac_val_base)[16]
uint16_t(* q_intra_matrix16)[2][64]
identical to the above but for MMX & these are not permutated, second 64 entries are bias ...
int16_t(*[2][2][2] b_field_mv_table_base)[2]
int(* ac_stats)[2][MAX_LEVEL+1][MAX_RUN+1][2]
[mb_intra][isChroma][level][run][last]
int16_t(* b_forw_mv_table_base)[2]
int16_t(*[12] pblocks)[64]
int block_last_index[12]
last non zero coefficient in block
int pb_frame
PB frame mode (0 = none, 1 = base, 2 = improved)
uint8_t * mbintra_table
used to avoid setting {ac, dc, cbp}-pred stuff to zero on inter MB decoding
void ff_mpv_decode_init(MpegEncContext *s, AVCodecContext *avctx)
int ac_esc_length
num of bits needed to encode the longest esc
void ff_write_quant_matrix(PutBitContext *pb, uint16_t *matrix)
int block_index[6]
index to current MB in block based arrays with edges
int ff_dct_quantize_c(MpegEncContext *s, int16_t *block, int n, int qscale, int *overflow)
void ff_mpeg_flush(AVCodecContext *avctx)
int * mb_index2xy
mb_index -> mb_x + mb_y*mb_stride
void ff_mpv_common_init_x86(MpegEncContext *s)
struct MJpegContext * mjpeg_ctx
int first_field
is 1 for the first field of a field picture 0 otherwise
void ff_mpv_idct_init(MpegEncContext *s)
int first_slice_line
used in mpeg4 too to handle resync markers
uint16_t * mc_mb_var
Table for motion compensated MB variances.
AVBufferRef * qscale_table_buf
int16_t(* b_bidir_forw_mv_table_base)[2]
uint16_t inter_matrix[64]
uint8_t * luma_dc_vlc_length
int alloc_mb_height
mb_height used to allocate tables
int concealment_motion_vectors
struct MpegEncContext * thread_context[MAX_THREADS]
unsigned int lambda2
(lambda*lambda) >> FF_LAMBDA_SHIFT
int ff_mpeg_update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
int h263_flv
use flv h263 header
char * tc_opt_str
timecode option string
ptrdiff_t linesize
line size, in bytes, may be different from width
void ff_mpv_decode_defaults(MpegEncContext *s)
Set the given MpegEncContext to defaults for decoding.
int ff_mpv_lowest_referenced_row(MpegEncContext *s, int dir)
find the lowest MB row referenced in the MVs
uint8_t * intra_chroma_ac_vlc_last_length
main external API structure.
int ff_mpeg_framesize_alloc(AVCodecContext *avctx, MotionEstContext *me, ScratchpadContext *sc, int linesize)
ScanTable intra_scantable
uint8_t * coded_block
used for coded block pattern prediction (msmpeg4v3, wmv1)
int height
picture size. must be a multiple of 16
int ff_dct_encode_init(MpegEncContext *s)
int64_t dts_delta
pts difference between the first and second input frame, used for calculating dts of the first frame ...
int64_t user_specified_pts
last non-zero pts from AVFrame which was passed into avcodec_encode_video2()
int ff_mpv_encode_init(AVCodecContext *avctx)
Picture * picture
main picture buffer
int data_partitioning
data partitioning flag from header
uint8_t * inter_ac_vlc_length
void ff_mpv_decode_mb(MpegEncContext *s, int16_t block[12][64])
Describe the class of an AVClass context structure.
int stuffing_bits
bits used for stuffing
ScanTable intra_h_scantable
int16_t(*[2][2][2] b_field_mv_table)[2]
MV table (4MV per MB) interlaced b-frame encoding.
uint8_t * cbp_table
used to store cbp, ac_pred for partitioned decoding
int closed_gop
MPEG1/2 GOP is closed.
int64_t mc_mb_var_sum
motion compensated MB variance for current frame
rational number numerator/denominator
void ff_mpv_common_init_axp(MpegEncContext *s)
int input_picture_number
used to set pic->display_picture_number, should not be used for/by anything else
int slice_height
in macroblocks
ptrdiff_t uvlinesize
line size, for chroma in bytes, may be different from width
int mb_info
interval for outputting info about mb offsets as side data
int f_code
forward MV resolution
int max_b_frames
max number of b-frames for encoding
int pict_type
AV_PICTURE_TYPE_I, AV_PICTURE_TYPE_P, AV_PICTURE_TYPE_B, ...
int bit_rate
wanted bit rate
int last_mv_dir
last mv_dir, used for b frame encoding
int h263_pred
use mpeg4/h263 ac/dc predictions
int16_t(* b_bidir_back_mv_table)[2]
MV table (1MV per MB) bidir mode b-frame encoding.
uint8_t *[2] p_field_select_table
int16_t(* b_direct_mv_table)[2]
MV table (1MV per MB) direct mode b-frame encoding.
uint16_t pb_field_time
like above, just for interlaced
const uint8_t * c_dc_scale_table
qscale -> c_dc_scale table
int mv[2][4][2]
motion vectors for a macroblock first coordinate : 0 = forward 1 = backward second " : depend...
int16_t(* b_forw_mv_table)[2]
MV table (1MV per MB) forward mode b-frame encoding.
int b8_stride
2*mb_width+1 used for some 8x8 block arrays to allow simple addressing
Picture * next_picture_ptr
pointer to the next picture (for bidir pred)
struct AVCodecContext * avctx
PutBitContext pb
bit output
A reference to a data buffer.
int quantizer_noise_shaping
static const int32_t qmat16[MAT_SIZE]
int mb_stride
mb_width+1 used for some arrays to allow simple addressing of left & top MBs without sig11 ...
AVBufferRef * mbskip_table_buf
int adaptive_quant
use adaptive quantization
Picture last_picture
copy of the previous picture structure.
int ff_rv_decode_dc(MpegEncContext *s, int n)
Picture * last_picture_ptr
pointer to the previous picture.
float rc_qsquish
ratecontrol qmin qmax limiting method 0-> clipping, 1-> use a nice continuous function to limit qscal...
int64_t reordered_pts
reordered pts to be used as dts for the next output frame when there's a delay
uint8_t * b_scratchpad
scratchpad used for writing into write only buffers
void ff_mpeg_unref_picture(AVCodecContext *avctx, Picture *picture)
Deallocate a picture.
int ff_mpv_encode_end(AVCodecContext *avctx)
int ff_find_unused_picture(AVCodecContext *avctx, Picture *picture, int shared)
const uint8_t * chroma_qscale_table
qscale -> chroma_qscale (h263)
int ff_mpv_common_frame_size_change(MpegEncContext *s)
Core video DSP helper functions.
void(* dct_unquantize_mpeg1_inter)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
H264ChromaContext h264chroma
int16_t(* blocks)[12][64]
int last_bits
temp var used for calculating the above vars
void ff_mpv_encode_init_x86(MpegEncContext *s)
uint8_t * obmc_scratchpad
int drop_frame_timecode
timecode is in drop frame format.
int resync_mb_y
y position of last resync marker
int16_t(* block)[64]
points to one of the following blocks
ParseContext parse_context
void ff_rv20_encode_picture_header(MpegEncContext *s, int picture_number)
PutBitContext tex_pb
used for data partitioned VOPs
Picture next_picture
copy of the next picture structure.
AVBufferRef * mc_mb_var_buf
Picture ** reordered_input_picture
pointer to the next pictures in codedorder for encoding
int ff_mpv_export_qp_table(MpegEncContext *s, AVFrame *f, Picture *p, int qp_type)
int chroma_qscale
chroma QP
void ff_print_debug_info(MpegEncContext *s, Picture *p, AVFrame *pict)
int ff_rv10_encode_picture_header(MpegEncContext *s, int picture_number)
void(* dct_unquantize_mpeg2_intra)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
int(* fast_dct_quantize)(struct MpegEncContext *s, int16_t *block, int n, int qscale, int *overflow)
uint16_t intra_matrix[64]
matrix transmitted in the bitstream
uint32_t * mb_type
types and macros are defined in mpegutils.h
void ff_mpv_report_decode_progress(MpegEncContext *s)
int rv10_version
RV10 version: 0 or 3.
int workaround_bugs
workaround bugs in encoders which cannot be detected automatically
ScanTable inter_scantable
if inter == intra then intra should be used to reduce tha cache usage
int h263_long_vectors
use horrible h263v1 long vector mode
int inter_quant_bias
bias for the quantizer
int(* dct_quantize)(struct MpegEncContext *s, int16_t *block, int n, int qscale, int *overflow)
int16_t(* b_direct_mv_table_base)[2]
int b_code
backward MV resolution for B Frames (mpeg4)
int h263_aic_dir
AIC direction: 0 = left, 1 = top.
int ff_mpv_encode_picture(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
AVTimecode tc
timecode context
void ff_mpv_common_defaults(MpegEncContext *s)
Set the given MpegEncContext to common defaults (same for encoding and decoding). ...
int64_t mb_var_sum
sum of MB variance for current frame
This structure stores compressed data.
unsigned int lambda
lagrange multipler used in rate distortion
uint16_t pb_time
time distance between the last b and p,s,i frame
AVBufferRef * ref_index_buf[2]
int next_lambda
next lambda used for retrying to encode a frame