FFmpeg
mpegvideo.h
Go to the documentation of this file.
1 /*
2  * Generic DCT based hybrid video encoder
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 /**
24  * @file
25  * mpegvideo header.
26  */
27 
28 #ifndef AVCODEC_MPEGVIDEO_H
29 #define AVCODEC_MPEGVIDEO_H
30 
31 #include "blockdsp.h"
32 #include "error_resilience.h"
33 #include "fdctdsp.h"
34 #include "get_bits.h"
35 #include "h264chroma.h"
36 #include "h263dsp.h"
37 #include "hpeldsp.h"
38 #include "idctdsp.h"
39 #include "me_cmp.h"
40 #include "motion_est.h"
41 #include "mpegpicture.h"
42 #include "mpegvideoencdsp.h"
43 #include "pixblockdsp.h"
44 #include "put_bits.h"
45 #include "ratecontrol.h"
46 #include "qpeldsp.h"
47 #include "videodsp.h"
48 
49 #define MAX_THREADS 32
50 
51 #define MAX_B_FRAMES 16
52 
53 /**
54  * Scantable.
55  */
56 typedef struct ScanTable {
57  const uint8_t *scantable;
58  uint8_t permutated[64];
59  uint8_t raster_end[64];
60 } ScanTable;
61 
68 };
69 
70 /**
71  * MpegEncContext.
72  */
73 typedef struct MpegEncContext {
74  AVClass *class;
75 
77  int ac_pred;
78  int block_last_index[12]; ///< last non zero coefficient in block
79  int h263_aic; ///< Advanced INTRA Coding (AIC)
80 
81  /* scantables */
82  ScanTable inter_scantable; ///< if inter == intra then intra should be used to reduce the cache usage
83 
84  /* WARNING: changes above this line require updates to hardcoded
85  * offsets used in ASM. */
86 
90 
92  /* The following pointer is intended for codecs sharing code
93  * between decoder and encoder and in need of a common context to do so. */
94  void *private_ctx;
95  /* the following parameters must be initialized before encoding */
96  int width, height;///< picture size. must be a multiple of 16
97  int gop_size;
98  int intra_only; ///< if true, only intra pictures are generated
99  int64_t bit_rate; ///< wanted bit rate
100  enum OutputFormat out_format; ///< output format
101  int h263_pred; ///< use MPEG-4/H.263 ac/dc predictions
102  int pb_frame; ///< PB-frame mode (0 = none, 1 = base, 2 = improved)
103 
104 /* the following codec id fields are deprecated in favor of codec_id */
105  int h263_plus; ///< H.263+ headers
106  int h263_flv; ///< use flv H.263 header
107 
108  enum AVCodecID codec_id; /* see AV_CODEC_ID_xxx */
109  int fixed_qscale; ///< fixed qscale if non zero
110  int encoding; ///< true if we are encoding (vs decoding)
111  int max_b_frames; ///< max number of B-frames for encoding
114  int workaround_bugs; ///< workaround bugs in encoders which cannot be detected automatically
115  int codec_tag; ///< internal codec_tag upper case converted from avctx codec_tag
116  /* the following fields are managed internally by the encoder */
117 
118  /* sequence parameters */
120  int input_picture_number; ///< used to set pic->display_picture_number, should not be used for/by anything else
121  int coded_picture_number; ///< used to set pic->coded_picture_number, should not be used for/by anything else
122  int picture_number; //FIXME remove, unclear definition
123  int picture_in_gop_number; ///< 0-> first pic in gop, ...
124  int mb_width, mb_height; ///< number of MBs horizontally & vertically
125  int mb_stride; ///< mb_width+1 used for some arrays to allow simple addressing of left & top MBs without sig11
126  int b8_stride; ///< 2*mb_width+1 used for some 8x8 block arrays to allow simple addressing
127  int h_edge_pos, v_edge_pos;///< horizontal / vertical position of the right/bottom edge (pixel replication)
128  int mb_num; ///< number of MBs of a picture
129  ptrdiff_t linesize; ///< line size, in bytes, may be different from width
130  ptrdiff_t uvlinesize; ///< line size, for chroma in bytes, may be different from width
131  struct FFRefStructPool *picture_pool; ///< Pool for MPVPictures
132  MPVPicture **input_picture;///< next pictures on display order for encoding
133  MPVPicture **reordered_input_picture; ///< pointer to the next pictures in coded order for encoding
134 
136 
137  int64_t user_specified_pts; ///< last non-zero pts from AVFrame which was passed into avcodec_send_frame()
138  /**
139  * pts difference between the first and second input frame, used for
140  * calculating dts of the first frame when there's a delay */
142  /**
143  * reordered pts to be used as dts for the next output frame when there's
144  * a delay */
146 
147  /** bit output */
149 
150  int start_mb_y; ///< start mb_y of this thread (so current thread should process start_mb_y <= row < end_mb_y)
151  int end_mb_y; ///< end mb_y of this thread (so current thread should process start_mb_y <= row < end_mb_y)
153  int slice_context_count; ///< number of used thread_contexts
154 
155  /**
156  * copy of the previous picture structure.
157  * note, linesize & data, might not match the previous picture (for field pictures)
158  */
160 
161  /**
162  * copy of the next picture structure.
163  * note, linesize & data, might not match the next picture (for field pictures)
164  */
166 
167  /**
168  * Reference to the source picture for encoding.
169  * note, linesize & data, might not match the source picture (for field pictures)
170  */
172 
173  /**
174  * copy of the current picture structure.
175  * note, linesize & data, might not match the current picture (for field pictures)
176  */
178 
180  int last_dc[3]; ///< last DC values for MPEG-1
181  int16_t *dc_val_base;
182  int16_t *dc_val[3]; ///< used for MPEG-4 DC prediction, all 3 arrays must be continuous
183  const uint8_t *y_dc_scale_table; ///< qscale -> y_dc_scale table
184  const uint8_t *c_dc_scale_table; ///< qscale -> c_dc_scale table
185  const uint8_t *chroma_qscale_table; ///< qscale -> chroma_qscale (H.263)
187  uint8_t *coded_block; ///< used for coded block pattern prediction (msmpeg4v3, wmv1)
188  int16_t (*ac_val_base)[16];
189  int16_t (*ac_val[3])[16]; ///< used for MPEG-4 AC prediction, all 3 arrays must be continuous
190  int mb_skipped; ///< MUST BE SET only during DECODING
191  uint8_t *mbskip_table; /**< used to avoid copy if macroblock skipped (for black regions for example)
192  and used for B-frame encoding & decoding (contains skip table of next P-frame) */
193  uint8_t *mbintra_table; ///< used to avoid setting {ac, dc, cbp}-pred stuff to zero on inter MB decoding
194  uint8_t *cbp_table; ///< used to store cbp, ac_pred for partitioned decoding
195  uint8_t *pred_dir_table; ///< used to store pred_dir for partitioned decoding
196 
198 
199  int qscale; ///< QP
200  int chroma_qscale; ///< chroma QP
201  unsigned int lambda; ///< Lagrange multiplier used in rate distortion
202  unsigned int lambda2; ///< (lambda*lambda) >> FF_LAMBDA_SHIFT
204  int adaptive_quant; ///< use adaptive quantization
205  int dquant; ///< qscale difference to prev qscale
206  int pict_type; ///< AV_PICTURE_TYPE_I, AV_PICTURE_TYPE_P, AV_PICTURE_TYPE_B, ...
208  int last_pict_type; //FIXME removes
209  int last_non_b_pict_type; ///< used for MPEG-4 gmc B-frames & ratecontrol
211  int last_lambda_for[5]; ///< last lambda for a specific pict type
212  int skipdct; ///< skip dct and code zero residual
213 
214  /* motion compensation */
215  int unrestricted_mv; ///< mv can point outside of the coded picture
216  int h263_long_vectors; ///< use horrible H.263v1 long vector mode
217 
228  int f_code; ///< forward MV resolution
229  int b_code; ///< backward MV resolution for B-frames (MPEG-4)
230  int16_t (*p_mv_table_base)[2];
231  int16_t (*b_forw_mv_table_base)[2];
232  int16_t (*b_back_mv_table_base)[2];
235  int16_t (*b_direct_mv_table_base)[2];
236  int16_t (*p_field_mv_table_base)[2];
237  int16_t (*b_field_mv_table_base)[2];
238  int16_t (*p_mv_table)[2]; ///< MV table (1MV per MB) P-frame encoding
239  int16_t (*b_forw_mv_table)[2]; ///< MV table (1MV per MB) forward mode B-frame encoding
240  int16_t (*b_back_mv_table)[2]; ///< MV table (1MV per MB) backward mode B-frame encoding
241  int16_t (*b_bidir_forw_mv_table)[2]; ///< MV table (1MV per MB) bidir mode B-frame encoding
242  int16_t (*b_bidir_back_mv_table)[2]; ///< MV table (1MV per MB) bidir mode B-frame encoding
243  int16_t (*b_direct_mv_table)[2]; ///< MV table (1MV per MB) direct mode B-frame encoding
244  int16_t (*p_field_mv_table[2][2])[2]; ///< MV table (2MV per MB) interlaced P-frame encoding
245  int16_t (*b_field_mv_table[2][2][2])[2];///< MV table (4MV per MB) interlaced B-frame encoding
246  uint8_t (*p_field_select_table[2]); ///< Only the first element is allocated
247  uint8_t (*b_field_select_table[2][2]); ///< Only the first element is allocated
248 
249  /* The following fields are encoder-only */
250  uint16_t *mb_var; ///< Table for MB variances
251  uint16_t *mc_mb_var; ///< Table for motion compensated MB variances
252  uint8_t *mb_mean; ///< Table for MB luminance
253  int64_t mb_var_sum; ///< sum of MB variance for current frame
254  int64_t mc_mb_var_sum; ///< motion compensated MB variance for current frame
256 
257  int motion_est; ///< ME algorithm
259  int me_pre; ///< prepass for motion estimation
260  int mv_dir;
261 #define MV_DIR_FORWARD 1
262 #define MV_DIR_BACKWARD 2
263 #define MV_DIRECT 4 ///< bidirectional mode where the difference equals the MV of the last P/S/I-Frame (MPEG-4)
264  int mv_type;
265 #define MV_TYPE_16X16 0 ///< 1 vector for the whole mb
266 #define MV_TYPE_8X8 1 ///< 4 vectors (H.263, MPEG-4 4MV)
267 #define MV_TYPE_16X8 2 ///< 2 vectors, one per 16x8 block
268 #define MV_TYPE_FIELD 3 ///< 2 vectors, one per field
269 #define MV_TYPE_DMV 4 ///< 2 vectors, special mpeg2 Dual Prime Vectors
270  /**motion vectors for a macroblock
271  first coordinate : 0 = forward 1 = backward
272  second " : depend on type
273  third " : 0 = x, 1 = y
274  */
275  int mv[2][4][2];
276  int field_select[2][2];
277  int last_mv[2][2][2]; ///< last MV, used for MV prediction in MPEG-1 & B-frame MPEG-4
278  const uint8_t *fcode_tab; ///< smallest fcode needed for each MV
279  int16_t direct_scale_mv[2][64]; ///< precomputed to avoid divisions in ff_mpeg4_set_direct_mv
280 
282 
283  int no_rounding; /**< apply no rounding to motion compensation (MPEG-4, msmpeg4, ...)
284  for B-frames rounding mode is always 0 */
285 
286  /* macroblock layer */
287  int mb_x, mb_y;
289  int mb_intra;
290  uint16_t *mb_type; ///< Table for candidate MB types for encoding (defines in mpegvideoenc.h)
291 
292  int block_index[6]; ///< index to current MB in block based arrays with edges
293  int block_wrap[6];
294  uint8_t *dest[3];
295 
296  int *mb_index2xy; ///< mb_index -> mb_x + mb_y*mb_stride
297 
298  /** matrix transmitted in the bitstream */
299  uint16_t intra_matrix[64];
300  uint16_t chroma_intra_matrix[64];
301  uint16_t inter_matrix[64];
302  uint16_t chroma_inter_matrix[64];
303 
304  int intra_quant_bias; ///< bias for the quantizer
305  int inter_quant_bias; ///< bias for the quantizer
306  int min_qcoeff; ///< minimum encodable coefficient
307  int max_qcoeff; ///< maximum encodable coefficient
308  int ac_esc_length; ///< num of bits needed to encode the longest esc
316 
317  int coded_score[12];
318 
319  /** precomputed matrix (combine qscale and DCT renorm) */
323  /** identical to the above but for MMX & these are not permutated, second 64 entries are bias*/
324  uint16_t (*q_intra_matrix16)[2][64];
325  uint16_t (*q_chroma_intra_matrix16)[2][64];
326  uint16_t (*q_inter_matrix16)[2][64];
327 
328  /* noise reduction */
330  int dct_count[2];
331  uint16_t (*dct_offset)[64];
332 
333  /* bit rate control */
335  int frame_bits; ///< bits used for the current frame
336  int stuffing_bits; ///< bits used for stuffing
337  int next_lambda; ///< next lambda used for retrying to encode a frame
338  RateControlContext rc_context; ///< contains stuff only accessed in ratecontrol.c
339 
340  /* statistics, used for 2-pass encoding */
341  int mv_bits;
345  int i_count;
346  int misc_bits; ///< cbp, mb_type
347  int last_bits; ///< temp var used for calculating the above vars
348 
349  /* error concealment / resync */
350  int resync_mb_x; ///< x position of last resync marker
351  int resync_mb_y; ///< y position of last resync marker
352  GetBitContext last_resync_gb; ///< used to search for the next resync marker
353  int mb_num_left; ///< number of MBs left in this video packet (for partitioned Slices only)
354 
355  /* H.263 specific */
357  int obmc; ///< overlapped block motion compensation
358  int mb_info; ///< interval for outputting info about mb offsets as side data
360  uint8_t *mb_info_ptr;
362  int ehc_mode;
363 
364  /* H.263+ specific */
365  int umvplus; ///< == H.263+ && unrestricted_mv
366  int h263_aic_dir; ///< AIC direction: 0 = left, 1 = top
368  int alt_inter_vlc; ///< alternative inter vlc
372 
373  /* MPEG-4 specific */
376  ///< number of bits to represent the fractional part of time (encoder only)
379  int time_base; ///< time in seconds of last I,P,S Frame
380  int64_t time; ///< time of current frame
382  uint16_t pp_time; ///< time distance between the last 2 p,s,i frames
383  uint16_t pb_time; ///< time distance between the last b and p,s,i frame
384  uint16_t pp_field_time;
385  uint16_t pb_field_time; ///< like above, just for interlaced
386  int mcsel;
387  int quarter_sample; ///< 1->qpel, 0->half pel ME/MC
388  int data_partitioning; ///< data partitioning flag from header
389  int partitioned_frame; ///< is current frame partitioned
390  int low_delay; ///< no reordering needed / has no B-frames
391  PutBitContext tex_pb; ///< used for data partitioned VOPs
392  PutBitContext pb2; ///< used for data partitioned VOPs
394  int padding_bug_score; ///< used to detect the VERY common padding bug in MPEG-4
395 
396  /* divx specific, used to workaround (many) bugs in divx5 */
398  uint8_t *bitstream_buffer; //Divx 5.01 puts several frames in a single one, this is used to reorder them
401 
402  /* RV10 specific */
403  int rv10_version; ///< RV10 version: 0 or 3
405 
406  /* MJPEG specific */
408  int esc_pos;
409 
410  /* MSMPEG4 specific */
416  int slice_height; ///< in macroblocks
417  int first_slice_line; ///< used in MPEG-4 too to handle resync markers
419  enum {
426  MSMP4_VC1, ///< for VC1 (image), WMV3 (image) and MSS2.
427  } msmpeg4_version;
432  int mspel;
433 
434  /* decompression specific */
436 
437  /* MPEG-1 specific */
438  int last_mv_dir; ///< last mv_dir, used for B-frame encoding
439  int vbv_delay_pos; ///< offset of vbv_delay in the bitstream
440 
441  /* MPEG-2-specific - I wished not to have to support this mess. */
443  int mpeg_f_code[2][2];
444 
445  // picture structure defines are loaded from mpegutils.h
447 
459 #define CHROMA_420 1
460 #define CHROMA_422 2
461 #define CHROMA_444 3
462  int chroma_x_shift;//depend on pix_format, that depend on chroma_format
464 
466  int full_pel[2];
468  int first_field; ///< is 1 for the first field of a field picture 0 otherwise
469 
470  /* RTP specific */
471  int rtp_mode;
473 
474  uint8_t *ptr_lastgob;
475 
476  int16_t (*block)[64]; ///< points to one of the following blocks
477  int16_t (*blocks)[12][64]; // for HQ mode we need to keep the best block
478  int (*decode_mb)(struct MpegEncContext *s, int16_t block[12][64]); // used by some codecs to avoid a switch()
479 
480 #define SLICE_OK 0
481 #define SLICE_ERROR -1
482 #define SLICE_END -2 ///<end marker found
483 #define SLICE_NOEND -3 ///<no end marker or error found but mb count exceeded
484 
486  int16_t *block/*align 16*/, int n, int qscale);
488  int16_t *block/*align 16*/, int n, int qscale);
490  int16_t *block/*align 16*/, int n, int qscale);
492  int16_t *block/*align 16*/, int n, int qscale);
494  int16_t *block/*align 16*/, int n, int qscale);
496  int16_t *block/*align 16*/, int n, int qscale);
497  void (*dct_unquantize_intra)(struct MpegEncContext *s, // unquantizer to use (MPEG-4 can use both)
498  int16_t *block/*align 16*/, int n, int qscale);
499  void (*dct_unquantize_inter)(struct MpegEncContext *s, // unquantizer to use (MPEG-4 can use both)
500  int16_t *block/*align 16*/, int n, int qscale);
501  int (*dct_quantize)(struct MpegEncContext *s, int16_t *block/*align 16*/, int n, int qscale, int *overflow);
502  void (*denoise_dct)(struct MpegEncContext *s, int16_t *block);
503 
504  int mpv_flags; ///< flags set by private options
506 
507  me_cmp_func ildct_cmp[2]; ///< 0 = intra, 1 = non-intra
508  me_cmp_func n_sse_cmp[2]; ///< either SSE or NSSE cmp func
511  int (*sum_abs_dctelem)(const int16_t *block);
512 
513  /**
514  * ratecontrol qmin qmax limiting method
515  * 0-> clipping, 1-> use a nice continuous function to limit qscale within qmin/qmax.
516  */
517  float rc_qsquish;
518  float rc_qmod_amp;
523  int lmin, lmax;
525 
526  char *rc_eq;
527 
528  /* temp buffers for rate control */
529  float *cplx_tab, *bits_tab;
530 
531  /* flag to indicate a reinitialization is required, e.g. after
532  * a frame size change */
534 
536 
538 
539  /* temporary frames used by b_frame_strategy = 2 */
543 
544  /* frame skip options for encoding */
550 
553 
556 
557 
558 /**
559  * Set the given MpegEncContext to common defaults (same for encoding
560  * and decoding). The changed fields will not depend upon the prior
561  * state of the MpegEncContext.
562  */
564 
572 /**
573  * Initialize an MpegEncContext's thread contexts. Presumes that
574  * slice_context_count is already set and that all the fields
575  * that are freed/reset in free_duplicate_context() are NULL.
576  */
578 /**
579  * Initialize and allocates MpegEncContext fields dependent on the resolution.
580  */
582 /**
583  * Frees and resets MpegEncContext fields depending on the resolution
584  * as well as the slice thread contexts.
585  * Is used during resolution changes to avoid a full reinitialization of the
586  * codec.
587  */
589 
591 
593 
595 void ff_set_qscale(MpegEncContext * s, int qscale);
596 
598 void ff_init_scantable(const uint8_t *permutation, ScanTable *st,
599  const uint8_t *src_scantable);
601 
603  uint8_t *dest_y, uint8_t *dest_cb,
604  uint8_t *dest_cr, int dir,
605  uint8_t *const *ref_picture,
606  const op_pixels_func (*pix_op)[4],
607  const qpel_mc_func (*qpix_op)[16]);
608 
609 static inline void ff_update_block_index(MpegEncContext *s, int bits_per_raw_sample,
610  int lowres, int chroma_x_shift)
611 {
612  const int bytes_per_pixel = 1 + (bits_per_raw_sample > 8);
613  const int block_size = (8 * bytes_per_pixel) >> lowres;
614 
615  s->block_index[0]+=2;
616  s->block_index[1]+=2;
617  s->block_index[2]+=2;
618  s->block_index[3]+=2;
619  s->block_index[4]++;
620  s->block_index[5]++;
621  s->dest[0]+= 2*block_size;
622  s->dest[1] += (2 >> chroma_x_shift) * block_size;
623  s->dest[2] += (2 >> chroma_x_shift) * block_size;
624 }
625 
626 #endif /* AVCODEC_MPEGVIDEO_H */
MpegEncContext::i_count
int i_count
Definition: mpegvideo.h:345
MpegEncContext::h264chroma
H264ChromaContext h264chroma
Definition: mpegvideo.h:220
ratecontrol.h
MPV_MAX_PLANES
#define MPV_MAX_PLANES
Definition: mpegpicture.h:31
MpegEncContext::mb_skipped
int mb_skipped
MUST BE SET only during DECODING.
Definition: mpegvideo.h:190
MpegEncContext::mb_type
uint16_t * mb_type
Table for candidate MB types for encoding (defines in mpegvideoenc.h)
Definition: mpegvideo.h:290
MpegEncContext::h263_flv
int h263_flv
use flv H.263 header
Definition: mpegvideo.h:106
MpegEncContext::frame_skip_cmp_fn
me_cmp_func frame_skip_cmp_fn
Definition: mpegvideo.h:549
MpegEncContext::q_intra_matrix16
uint16_t(* q_intra_matrix16)[2][64]
identical to the above but for MMX & these are not permutated, second 64 entries are bias
Definition: mpegvideo.h:324
MpegEncContext::rtp_payload_size
int rtp_payload_size
Definition: mpegvideo.h:472
MpegEncContext::b_field_select_table
uint8_t *[2][2] b_field_select_table
Only the first element is allocated.
Definition: mpegvideo.h:247
MpegEncContext::progressive_sequence
int progressive_sequence
Definition: mpegvideo.h:442
MpegEncContext::luma_elim_threshold
int luma_elim_threshold
Definition: mpegvideo.h:112
MpegEncContext::data_partitioning
int data_partitioning
data partitioning flag from header
Definition: mpegvideo.h:388
MpegEncContext::stuffing_bits
int stuffing_bits
bits used for stuffing
Definition: mpegvideo.h:336
MpegEncContext::dct_unquantize_mpeg1_intra
void(* dct_unquantize_mpeg1_intra)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo.h:485
MpegEncContext::lambda
unsigned int lambda
Lagrange multiplier used in rate distortion.
Definition: mpegvideo.h:201
blockdsp.h
ff_mpv_motion
void ff_mpv_motion(MpegEncContext *s, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, int dir, uint8_t *const *ref_picture, const op_pixels_func(*pix_op)[4], const qpel_mc_func(*qpix_op)[16])
Definition: mpegvideo_motion.c:819
MpegEncContext::quantizer_noise_shaping
int quantizer_noise_shaping
Definition: mpegvideo.h:505
MpegEncContext::b_code
int b_code
backward MV resolution for B-frames (MPEG-4)
Definition: mpegvideo.h:229
MpegEncContext::rc_initial_cplx
float rc_initial_cplx
Definition: mpegvideo.h:520
MpegEncContext::gb
GetBitContext gb
Definition: mpegvideo.h:435
MpegEncContext::inter_intra_pred
int inter_intra_pred
Definition: mpegvideo.h:431
MpegEncContext::top_field_first
int top_field_first
Definition: mpegvideo.h:450
MpegEncContext::input_picture_number
int input_picture_number
used to set pic->display_picture_number, should not be used for/by anything else
Definition: mpegvideo.h:120
MpegEncContext::dct_unquantize_h263_inter
void(* dct_unquantize_h263_inter)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo.h:495
MpegEncContext::total_bits
int64_t total_bits
Definition: mpegvideo.h:334
MpegEncContext::pp_time
uint16_t pp_time
time distance between the last 2 p,s,i frames
Definition: mpegvideo.h:382
MpegEncContext::rc_context
RateControlContext rc_context
contains stuff only accessed in ratecontrol.c
Definition: mpegvideo.h:338
MpegEncContext::mb_mean
uint8_t * mb_mean
Table for MB luminance.
Definition: mpegvideo.h:252
MpegEncContext::intra_quant_bias
int intra_quant_bias
bias for the quantizer
Definition: mpegvideo.h:304
MpegEncContext::max_b_frames
int max_b_frames
max number of B-frames for encoding
Definition: mpegvideo.h:111
MpegEncContext::block_index
int block_index[6]
index to current MB in block based arrays with edges
Definition: mpegvideo.h:292
MpegEncContext::frame_skip_exp
int frame_skip_exp
Definition: mpegvideo.h:547
MotionEstContext
Motion estimation context.
Definition: motion_est.h:48
MpegEncContext::coded_picture_number
int coded_picture_number
used to set pic->coded_picture_number, should not be used for/by anything else
Definition: mpegvideo.h:121
int64_t
long long int64_t
Definition: coverity.c:34
MpegEncContext::slice_height
int slice_height
in macroblocks
Definition: mpegvideo.h:416
MpegEncContext::bits_tab
float * bits_tab
Definition: mpegvideo.h:529
MpegEncContext::partitioned_frame
int partitioned_frame
is current frame partitioned
Definition: mpegvideo.h:389
MpegEncContext::y_dc_scale
int y_dc_scale
Definition: mpegvideo.h:76
MpegEncContext::dct_offset
uint16_t(* dct_offset)[64]
Definition: mpegvideo.h:331
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:374
MpegEncContext::mb_num
int mb_num
number of MBs of a picture
Definition: mpegvideo.h:128
MpegEncContext::ac_val_base
int16_t(* ac_val_base)[16]
Definition: mpegvideo.h:188
MpegEncContext::dct_unquantize_mpeg2_intra
void(* dct_unquantize_mpeg2_intra)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo.h:489
MpegEncContext::workaround_bugs
int workaround_bugs
workaround bugs in encoders which cannot be detected automatically
Definition: mpegvideo.h:114
MpegEncContext::reordered_pts
int64_t reordered_pts
reordered pts to be used as dts for the next output frame when there's a delay
Definition: mpegvideo.h:145
MpegEncContext::h263dsp
H263DSPContext h263dsp
Definition: mpegvideo.h:227
MpegEncContext::inter_quant_bias
int inter_quant_bias
bias for the quantizer
Definition: mpegvideo.h:305
MpegEncContext::mb_width
int mb_width
Definition: mpegvideo.h:124
h263dsp.h
MpegEncContext::fcode_tab
const uint8_t * fcode_tab
smallest fcode needed for each MV
Definition: mpegvideo.h:278
MpegEncContext::last_dc
int last_dc[3]
last DC values for MPEG-1
Definition: mpegvideo.h:180
MpegEncContext::intra_chroma_ac_vlc_length
uint8_t * intra_chroma_ac_vlc_length
Definition: mpegvideo.h:311
MpegEncContext::chroma_qscale
int chroma_qscale
chroma QP
Definition: mpegvideo.h:200
MpegEncContext::repeat_first_field
int repeat_first_field
Definition: mpegvideo.h:456
MpegEncContext::mv_table_index
int mv_table_index
Definition: mpegvideo.h:411
MpegEncContext::vbv_delay
int vbv_delay
Definition: mpegvideo.h:207
MpegEncContext::input_picture
MPVPicture ** input_picture
next pictures on display order for encoding
Definition: mpegvideo.h:132
MpegEncContext::ac_val
int16_t(*[3] ac_val)[16]
used for MPEG-4 AC prediction, all 3 arrays must be continuous
Definition: mpegvideo.h:189
MpegEncContext::gob_index
int gob_index
Definition: mpegvideo.h:356
MpegEncContext::fdsp
FDCTDSPContext fdsp
Definition: mpegvideo.h:219
ERContext
Definition: error_resilience.h:53
MpegEncContext::unrestricted_mv
int unrestricted_mv
mv can point outside of the coded picture
Definition: mpegvideo.h:215
MpegEncContext::dest
uint8_t * dest[3]
Definition: mpegvideo.h:294
MpegEncContext::avctx
struct AVCodecContext * avctx
Definition: mpegvideo.h:91
MpegEncContext::last_non_b_time
int64_t last_non_b_time
Definition: mpegvideo.h:381
MpegEncContext::pb
PutBitContext pb
bit output
Definition: mpegvideo.h:148
MpegEncContext::mcsel
int mcsel
Definition: mpegvideo.h:386
FMT_H261
@ FMT_H261
Definition: mpegvideo.h:64
MpegEncContext::mb_num_left
int mb_num_left
number of MBs left in this video packet (for partitioned Slices only)
Definition: mpegvideo.h:353
BlockDSPContext
Definition: blockdsp.h:32
MpegEncContext::height
int height
picture size. must be a multiple of 16
Definition: mpegvideo.h:96
MpegEncContext::dts_delta
int64_t dts_delta
pts difference between the first and second input frame, used for calculating dts of the first frame ...
Definition: mpegvideo.h:141
MpegEncContext::dct_unquantize_h263_intra
void(* dct_unquantize_h263_intra)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo.h:493
MpegEncContext::frame_skip_cmp
int frame_skip_cmp
Definition: mpegvideo.h:548
MpegEncContext::last_resync_gb
GetBitContext last_resync_gb
used to search for the next resync marker
Definition: mpegvideo.h:352
MpegEncContext::mv
int mv[2][4][2]
motion vectors for a macroblock first coordinate : 0 = forward 1 = backward second " : depend...
Definition: mpegvideo.h:275
ScratchpadContext
Definition: mpegpicture.h:34
MpegEncContext::use_skip_mb_code
int use_skip_mb_code
Definition: mpegvideo.h:415
MpegEncContext::out_format
enum OutputFormat out_format
output format
Definition: mpegvideo.h:100
MpegEncContext::esc_pos
int esc_pos
Definition: mpegvideo.h:408
MpegEncContext::border_masking
float border_masking
Definition: mpegvideo.h:522
MpegEncContext::encoding_error
uint64_t encoding_error[MPV_MAX_PLANES]
Definition: mpegvideo.h:255
MpegEncContext::time_base
int time_base
time in seconds of last I,P,S Frame
Definition: mpegvideo.h:379
MpegEncContext::mpeg_f_code
int mpeg_f_code[2][2]
Definition: mpegvideo.h:443
MpegEncContext::intra_scantable
ScanTable intra_scantable
Definition: mpegvideo.h:87
FMT_MJPEG
@ FMT_MJPEG
Definition: mpegvideo.h:66
FDCTDSPContext
Definition: fdctdsp.h:28
MpegEncContext::mb_height
int mb_height
number of MBs horizontally & vertically
Definition: mpegvideo.h:124
MpegEncContext::MSMP4_WMV1
@ MSMP4_WMV1
Definition: mpegvideo.h:424
MpegEncContext::permutated_intra_v_scantable
uint8_t permutated_intra_v_scantable[64]
Definition: mpegvideo.h:89
MpegEncContext::sum_abs_dctelem
int(* sum_abs_dctelem)(const int16_t *block)
Definition: mpegvideo.h:511
MpegEncContext::pict_type
int pict_type
AV_PICTURE_TYPE_I, AV_PICTURE_TYPE_P, AV_PICTURE_TYPE_B, ...
Definition: mpegvideo.h:206
MpegEncContext::h263_pred
int h263_pred
use MPEG-4/H.263 ac/dc predictions
Definition: mpegvideo.h:101
MpegEncContext::mbintra_table
uint8_t * mbintra_table
used to avoid setting {ac, dc, cbp}-pred stuff to zero on inter MB decoding
Definition: mpegvideo.h:193
FMT_MPEG1
@ FMT_MPEG1
Definition: mpegvideo.h:63
MpegEncContext::mpv_flags
int mpv_flags
flags set by private options
Definition: mpegvideo.h:504
MpegEncContext::reordered_input_picture
MPVPicture ** reordered_input_picture
pointer to the next pictures in coded order for encoding
Definition: mpegvideo.h:133
MpegEncContext::chroma_y_shift
int chroma_y_shift
Definition: mpegvideo.h:463
MpegEncContext::intra_penalty
int intra_penalty
Definition: mpegvideo.h:554
MpegEncContext::picture_structure
int picture_structure
Definition: mpegvideo.h:446
MpegEncContext::intra_only
int intra_only
if true, only intra pictures are generated
Definition: mpegvideo.h:98
FMT_SPEEDHQ
@ FMT_SPEEDHQ
Definition: mpegvideo.h:67
MpegEncContext::vdsp
VideoDSPContext vdsp
Definition: mpegvideo.h:226
MpegEncContext::padding_bug_score
int padding_bug_score
used to detect the VERY common padding bug in MPEG-4
Definition: mpegvideo.h:394
ff_init_scantable
void ff_init_scantable(const uint8_t *permutation, ScanTable *st, const uint8_t *src_scantable)
Definition: mpegvideo.c:296
GetBitContext
Definition: get_bits.h:108
MpegEncContext::linesize
ptrdiff_t linesize
line size, in bytes, may be different from width
Definition: mpegvideo.h:129
MpegEncContext::mc_mb_var
uint16_t * mc_mb_var
Table for motion compensated MB variances.
Definition: mpegvideo.h:251
MpegEncContext::bdsp
BlockDSPContext bdsp
Definition: mpegvideo.h:218
MpegEncContext::umvplus
int umvplus
== H.263+ && unrestricted_mv
Definition: mpegvideo.h:365
MpegEncContext::ptr_lastgob
uint8_t * ptr_lastgob
Definition: mpegvideo.h:474
MpegEncContext::width
int width
Definition: mpegvideo.h:96
ff_mpv_common_init_x86
void ff_mpv_common_init_x86(MpegEncContext *s)
Definition: mpegvideo.c:454
motion_est.h
MpegEncContext::b_bidir_forw_mv_table_base
int16_t(* b_bidir_forw_mv_table_base)[2]
Definition: mpegvideo.h:233
ff_mpv_idct_init
void ff_mpv_idct_init(MpegEncContext *s)
Definition: mpegvideo.c:310
MpegEncContext::gop_size
int gop_size
Definition: mpegvideo.h:97
MpegEncContext::frame_pred_frame_dct
int frame_pred_frame_dct
Definition: mpegvideo.h:449
MpegEncContext::mb_var_sum
int64_t mb_var_sum
sum of MB variance for current frame
Definition: mpegvideo.h:253
MpegEncContext::q_intra_matrix
int(* q_intra_matrix)[64]
precomputed matrix (combine qscale and DCT renorm)
Definition: mpegvideo.h:320
MpegEncContext::i_tex_bits
int i_tex_bits
Definition: mpegvideo.h:343
MpegEncContext::MSMP4_UNUSED
@ MSMP4_UNUSED
Definition: mpegvideo.h:420
RateControlContext
rate control context.
Definition: ratecontrol.h:60
H263DSPContext
Definition: h263dsp.h:26
MpegEncContext::pb_frame
int pb_frame
PB-frame mode (0 = none, 1 = base, 2 = improved)
Definition: mpegvideo.h:102
ff_set_qscale
void ff_set_qscale(MpegEncContext *s, int qscale)
set qscale and update qscale dependent variables.
Definition: mpegvideo.c:856
MpegEncContext::coded_block
uint8_t * coded_block
used for coded block pattern prediction (msmpeg4v3, wmv1)
Definition: mpegvideo.h:187
MpegEncContext::pp_field_time
uint16_t pp_field_time
Definition: mpegvideo.h:384
s
#define s(width, name)
Definition: cbs_vp9.c:198
MpegEncContext::mpvencdsp
MpegvideoEncDSPContext mpvencdsp
Definition: mpegvideo.h:223
MpegEncContext::last_time_base
int last_time_base
Definition: mpegvideo.h:378
MpegEncContext::me_penalty_compensation
int me_penalty_compensation
Definition: mpegvideo.h:258
MpegEncContext::mv_dir
int mv_dir
Definition: mpegvideo.h:260
MpegEncContext::h_edge_pos
int h_edge_pos
Definition: mpegvideo.h:127
MpegEncContext::b_back_mv_table
int16_t(* b_back_mv_table)[2]
MV table (1MV per MB) backward mode B-frame encoding.
Definition: mpegvideo.h:240
MpegEncContext::mb_skip_run
int mb_skip_run
Definition: mpegvideo.h:288
ff_mpv_common_defaults
void ff_mpv_common_defaults(MpegEncContext *s)
Set the given MpegEncContext to common defaults (same for encoding and decoding).
Definition: mpegvideo.c:486
MpegEncContext::skipped_last_frame
int skipped_last_frame
Definition: mpegvideo.h:179
MpegEncContext::b_sensitivity
int b_sensitivity
Definition: mpegvideo.h:542
MpegEncContext::bit_rate
int64_t bit_rate
wanted bit rate
Definition: mpegvideo.h:99
MpegEncContext::p_field_mv_table_base
int16_t(* p_field_mv_table_base)[2]
Definition: mpegvideo.h:236
MpegEncContext::max_qcoeff
int max_qcoeff
maximum encodable coefficient
Definition: mpegvideo.h:307
MpegEncContext::loop_filter
int loop_filter
Definition: mpegvideo.h:370
ScanTable::scantable
const uint8_t * scantable
Definition: mpegvideo.h:57
MpegEncContext::user_specified_pts
int64_t user_specified_pts
last non-zero pts from AVFrame which was passed into avcodec_send_frame()
Definition: mpegvideo.h:137
get_bits.h
MpegEncContext::frame_bits
int frame_bits
bits used for the current frame
Definition: mpegvideo.h:335
MpegEncContext::sad_cmp
me_cmp_func sad_cmp[2]
Definition: mpegvideo.h:509
MpegEncContext::denoise_dct
void(* denoise_dct)(struct MpegEncContext *s, int16_t *block)
Definition: mpegvideo.h:502
MpegEncContext::inter_ac_vlc_length
uint8_t * inter_ac_vlc_length
Definition: mpegvideo.h:313
MpegEncContext::divx_packed
int divx_packed
Definition: mpegvideo.h:397
FFRefStructPool
FFRefStructPool is an API for a thread-safe pool of objects managed via the RefStruct API.
Definition: refstruct.c:183
MpegEncContext::cur_pic
MPVWorkPicture cur_pic
copy of the current picture structure.
Definition: mpegvideo.h:177
MpegEncContext::brd_scale
int brd_scale
Definition: mpegvideo.h:453
MpegEncContext::dct_quantize
int(* dct_quantize)(struct MpegEncContext *s, int16_t *block, int n, int qscale, int *overflow)
Definition: mpegvideo.h:501
PutBitContext
Definition: put_bits.h:50
FMT_H263
@ FMT_H263
Definition: mpegvideo.h:65
MpegEncContext::mb_stride
int mb_stride
mb_width+1 used for some arrays to allow simple addressing of left & top MBs without sig11
Definition: mpegvideo.h:125
MpegEncContext::bitstream_buffer_size
int bitstream_buffer_size
Definition: mpegvideo.h:399
MpegEncContext::low_delay
int low_delay
no reordering needed / has no B-frames
Definition: mpegvideo.h:390
MpegEncContext::b_direct_mv_table
int16_t(* b_direct_mv_table)[2]
MV table (1MV per MB) direct mode B-frame encoding.
Definition: mpegvideo.h:243
PixblockDSPContext
Definition: pixblockdsp.h:26
MpegEncContext::mc_mb_var_sum
int64_t mc_mb_var_sum
motion compensated MB variance for current frame
Definition: mpegvideo.h:254
MpegEncContext::inter_ac_vlc_last_length
uint8_t * inter_ac_vlc_last_length
Definition: mpegvideo.h:314
MpegEncContext::prev_mb_info
int prev_mb_info
Definition: mpegvideo.h:359
MpegEncContext::pb2
PutBitContext pb2
used for data partitioned VOPs
Definition: mpegvideo.h:392
MpegEncContext::field_select
int field_select[2][2]
Definition: mpegvideo.h:276
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
MpegEncContext::chroma_420_type
int chroma_420_type
Definition: mpegvideo.h:457
ff_mpv_common_end
void ff_mpv_common_end(MpegEncContext *s)
Definition: mpegvideo.c:777
MpegEncContext::mb_y
int mb_y
Definition: mpegvideo.h:287
MpegEncContext::h263_long_vectors
int h263_long_vectors
use horrible H.263v1 long vector mode
Definition: mpegvideo.h:216
MpegEncContext::dct_error_sum
int(* dct_error_sum)[64]
Definition: mpegvideo.h:329
MpegEncContext::f_code
int f_code
forward MV resolution
Definition: mpegvideo.h:228
MpegEncContext::next_pic
MPVWorkPicture next_pic
copy of the next picture structure.
Definition: mpegvideo.h:165
MpegEncContext::header_bits
int header_bits
Definition: mpegvideo.h:342
MpegEncContext::h263_aic
int h263_aic
Advanced INTRA Coding (AIC)
Definition: mpegvideo.h:79
MpegEncContext::esc3_run_length
int esc3_run_length
Definition: mpegvideo.h:430
MpegEncContext::intra_chroma_ac_vlc_last_length
uint8_t * intra_chroma_ac_vlc_last_length
Definition: mpegvideo.h:312
MpegEncContext::p_mv_table
int16_t(* p_mv_table)[2]
MV table (1MV per MB) P-frame encoding.
Definition: mpegvideo.h:238
OutputFormat
OutputFormat
Definition: mpegvideo.h:62
MpegEncContext::y_dc_scale_table
const uint8_t * y_dc_scale_table
qscale -> y_dc_scale table
Definition: mpegvideo.h:183
MpegEncContext::inter_matrix
uint16_t inter_matrix[64]
Definition: mpegvideo.h:301
MpegEncContext::hdsp
HpelDSPContext hdsp
Definition: mpegvideo.h:221
MpegEncContext::decode_mb
int(* decode_mb)(struct MpegEncContext *s, int16_t block[12][64])
Definition: mpegvideo.h:478
MpegEncContext::concealment_motion_vectors
int concealment_motion_vectors
Definition: mpegvideo.h:451
MpegEncContext::mb_info_ptr
uint8_t * mb_info_ptr
Definition: mpegvideo.h:360
MpegEncContext::mv_bits
int mv_bits
Definition: mpegvideo.h:341
MpegEncContext::rc_buffer_aggressivity
float rc_buffer_aggressivity
Definition: mpegvideo.h:521
MpegEncContext::b8_stride
int b8_stride
2*mb_width+1 used for some 8x8 block arrays to allow simple addressing
Definition: mpegvideo.h:126
lowres
static int lowres
Definition: ffplay.c:330
qpeldsp.h
MpegEncContext::dct_unquantize_mpeg1_inter
void(* dct_unquantize_mpeg1_inter)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo.h:487
MpegEncContext::pdsp
PixblockDSPContext pdsp
Definition: mpegvideo.h:224
MpegEncContext::me
MotionEstContext me
Definition: mpegvideo.h:281
MpegEncContext::slice_context_count
int slice_context_count
number of used thread_contexts
Definition: mpegvideo.h:153
MpegEncContext::scenechange_threshold
int scenechange_threshold
Definition: mpegvideo.h:551
op_pixels_func
void(* op_pixels_func)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)
Definition: hpeldsp.h:38
MpegEncContext::b_field_mv_table_base
int16_t(* b_field_mv_table_base)[2]
Definition: mpegvideo.h:237
MpegEncContext::pb_time
uint16_t pb_time
time distance between the last b and p,s,i frame
Definition: mpegvideo.h:383
MpegEncContext::q_inter_matrix16
uint16_t(* q_inter_matrix16)[2][64]
Definition: mpegvideo.h:326
MpegEncContext::ildct_cmp
me_cmp_func ildct_cmp[2]
0 = intra, 1 = non-intra
Definition: mpegvideo.h:507
qpel_mc_func
void(* qpel_mc_func)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)
Definition: qpeldsp.h:65
MpegEncContext::private_ctx
void * private_ctx
Definition: mpegvideo.h:94
MpegEncContext::blocks
int16_t(* blocks)[12][64]
Definition: mpegvideo.h:477
AVCodecID
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: codec_id.h:49
MpegEncContext::idsp
IDCTDSPContext idsp
Definition: mpegvideo.h:222
MpegEncContext::MSMP4_V3
@ MSMP4_V3
Definition: mpegvideo.h:423
MpegEncContext::c_dc_scale
int c_dc_scale
Definition: mpegvideo.h:76
MpegEncContext::b_bidir_forw_mv_table
int16_t(* b_bidir_forw_mv_table)[2]
MV table (1MV per MB) bidir mode B-frame encoding.
Definition: mpegvideo.h:241
HpelDSPContext
Half-pel DSP context.
Definition: hpeldsp.h:45
MpegEncContext::pb_field_time
uint16_t pb_field_time
like above, just for interlaced
Definition: mpegvideo.h:385
MpegEncContext::coded_block_base
uint8_t * coded_block_base
Definition: mpegvideo.h:186
ff_mpv_init_duplicate_contexts
int ff_mpv_init_duplicate_contexts(MpegEncContext *s)
Initialize an MpegEncContext's thread contexts.
Definition: mpegvideo.c:389
MpegEncContext::me_pre
int me_pre
prepass for motion estimation
Definition: mpegvideo.h:259
MpegEncContext::q_chroma_intra_matrix16
uint16_t(* q_chroma_intra_matrix16)[2][64]
Definition: mpegvideo.h:325
MpegEncContext::mb_intra
int mb_intra
Definition: mpegvideo.h:289
MpegEncContext::min_qcoeff
int min_qcoeff
minimum encodable coefficient
Definition: mpegvideo.h:306
MpegEncContext::chroma_qscale_table
const uint8_t * chroma_qscale_table
qscale -> chroma_qscale (H.263)
Definition: mpegvideo.h:185
MpegEncContext::last_mb_info
int last_mb_info
Definition: mpegvideo.h:359
ff_mpv_common_init_axp
void ff_mpv_common_init_axp(MpegEncContext *s)
MpegEncContext::qscale
int qscale
QP.
Definition: mpegvideo.h:199
MpegEncContext::first_slice_line
int first_slice_line
used in MPEG-4 too to handle resync markers
Definition: mpegvideo.h:417
MpegEncContext::frame_skip_factor
int frame_skip_factor
Definition: mpegvideo.h:546
MpegEncContext::intra_matrix
uint16_t intra_matrix[64]
matrix transmitted in the bitstream
Definition: mpegvideo.h:299
ff_update_block_index
static void ff_update_block_index(MpegEncContext *s, int bits_per_raw_sample, int lowres, int chroma_x_shift)
Definition: mpegvideo.h:609
MpegEncContext::lambda2
unsigned int lambda2
(lambda*lambda) >> FF_LAMBDA_SHIFT
Definition: mpegvideo.h:202
MpegEncContext::adaptive_quant
int adaptive_quant
use adaptive quantization
Definition: mpegvideo.h:204
MpegEncContext::v_edge_pos
int v_edge_pos
horizontal / vertical position of the right/bottom edge (pixel replication)
Definition: mpegvideo.h:127
MpegEncContext::dct_count
int dct_count[2]
Definition: mpegvideo.h:330
MpegEncContext::msmpeg4_version
enum MpegEncContext::@168 msmpeg4_version
MpegEncContext::tmp_frames
AVFrame * tmp_frames[MAX_B_FRAMES+2]
Definition: mpegvideo.h:540
MpegEncContext::b_frame_strategy
int b_frame_strategy
Definition: mpegvideo.h:541
MpegEncContext::qdsp
QpelDSPContext qdsp
Definition: mpegvideo.h:225
MpegEncContext::b_forw_mv_table
int16_t(* b_forw_mv_table)[2]
MV table (1MV per MB) forward mode B-frame encoding.
Definition: mpegvideo.h:239
h264chroma.h
MpegEncContext::interlaced_dct
int interlaced_dct
Definition: mpegvideo.h:467
MpegEncContext::error_rate
int error_rate
Definition: mpegvideo.h:537
MpegEncContext::encoding
int encoding
true if we are encoding (vs decoding)
Definition: mpegvideo.h:110
MpegEncContext::mbskip_table
uint8_t * mbskip_table
used to avoid copy if macroblock skipped (for black regions for example) and used for B-frame encodin...
Definition: mpegvideo.h:191
MAX_THREADS
#define MAX_THREADS
Definition: mpegvideo.h:49
MpegEncContext::dc_val
int16_t * dc_val[3]
used for MPEG-4 DC prediction, all 3 arrays must be continuous
Definition: mpegvideo.h:182
MpegEncContext::quarter_sample
int quarter_sample
1->qpel, 0->half pel ME/MC
Definition: mpegvideo.h:387
MpegEncContext::context_initialized
int context_initialized
Definition: mpegvideo.h:119
MpegEncContext::sse_cmp
me_cmp_func sse_cmp[2]
Definition: mpegvideo.h:510
MpegEncContext::p_mv_table_base
int16_t(* p_mv_table_base)[2]
Definition: mpegvideo.h:230
MpegEncContext::dct_precision
int dct_precision
number of bits to represent the fractional part of time (encoder only)
Definition: mpegvideo.h:375
MpegEncContext::q_chroma_intra_matrix
int(* q_chroma_intra_matrix)[64]
Definition: mpegvideo.h:321
MpegEncContext::b_direct_mv_table_base
int16_t(* b_direct_mv_table_base)[2]
Definition: mpegvideo.h:235
mpegpicture.h
MpegEncContext::rl_chroma_table_index
int rl_chroma_table_index
Definition: mpegvideo.h:413
MpegEncContext::MSMP4_WMV2
@ MSMP4_WMV2
Definition: mpegvideo.h:425
MpegEncContext::picture_in_gop_number
int picture_in_gop_number
0-> first pic in gop, ...
Definition: mpegvideo.h:123
ff_mpv_init_context_frame
int ff_mpv_init_context_frame(MpegEncContext *s)
Initialize and allocates MpegEncContext fields dependent on the resolution.
Definition: mpegvideo.c:513
MpegEncContext::n_sse_cmp
me_cmp_func n_sse_cmp[2]
either SSE or NSSE cmp func
Definition: mpegvideo.h:508
MpegEncContext::context_reinit
int context_reinit
Definition: mpegvideo.h:533
MpegEncContext::buffer_pools
BufferPoolContext buffer_pools
Definition: mpegvideo.h:135
MpegEncContext::p_field_select_table
uint8_t *[2] p_field_select_table
Only the first element is allocated.
Definition: mpegvideo.h:246
MpegEncContext::intra_ac_vlc_last_length
uint8_t * intra_ac_vlc_last_length
Definition: mpegvideo.h:310
ff_mpv_common_init
int ff_mpv_common_init(MpegEncContext *s)
init common structure for both encoder and decoder.
Definition: mpegvideo.c:690
ff_init_block_index
void ff_init_block_index(MpegEncContext *s)
Definition: mpegvideo.c:823
MpegEncContext::mb_var
uint16_t * mb_var
Table for MB variances.
Definition: mpegvideo.h:250
MpegEncContext::full_pel
int full_pel[2]
Definition: mpegvideo.h:466
MpegEncContext::block_last_index
int block_last_index[12]
last non zero coefficient in block
Definition: mpegvideo.h:78
MpegEncContext::chroma_elim_threshold
int chroma_elim_threshold
Definition: mpegvideo.h:113
MpegEncContext::dc_val_base
int16_t * dc_val_base
Definition: mpegvideo.h:181
MpegvideoEncDSPContext
Definition: mpegvideoencdsp.h:32
MpegEncContext::last_mv
int last_mv[2][2][2]
last MV, used for MV prediction in MPEG-1 & B-frame MPEG-4
Definition: mpegvideo.h:277
MpegEncContext::uvlinesize
ptrdiff_t uvlinesize
line size, for chroma in bytes, may be different from width
Definition: mpegvideo.h:130
MpegEncContext::progressive_frame
int progressive_frame
Definition: mpegvideo.h:465
MpegEncContext::allocated_bitstream_buffer_size
unsigned int allocated_bitstream_buffer_size
Definition: mpegvideo.h:400
MpegEncContext::chroma_inter_matrix
uint16_t chroma_inter_matrix[64]
Definition: mpegvideo.h:302
MpegEncContext::mjpeg_ctx
struct MJpegContext * mjpeg_ctx
Definition: mpegvideo.h:407
ff_update_duplicate_context
int ff_update_duplicate_context(MpegEncContext *dst, const MpegEncContext *src)
Definition: mpegvideo.c:462
MpegEncContext::esc3_level_length
int esc3_level_length
Definition: mpegvideo.h:429
MpegEncContext::obmc
int obmc
overlapped block motion compensation
Definition: mpegvideo.h:357
ff_mpv_common_init_neon
void ff_mpv_common_init_neon(MpegEncContext *s)
Definition: mpegvideo.c:127
MpegEncContext::tex_pb
PutBitContext tex_pb
used for data partitioned VOPs
Definition: mpegvideo.h:391
MpegEncContext::mb_x
int mb_x
Definition: mpegvideo.h:287
ff_mpv_common_init_ppc
void ff_mpv_common_init_ppc(MpegEncContext *s)
Definition: mpegvideo_altivec.c:119
MpegEncContext::thread_context
struct MpegEncContext * thread_context[MAX_THREADS]
Definition: mpegvideo.h:152
MpegEncContext::b_bidir_back_mv_table
int16_t(* b_bidir_back_mv_table)[2]
MV table (1MV per MB) bidir mode B-frame encoding.
Definition: mpegvideo.h:242
MpegEncContext::sc
ScratchpadContext sc
Definition: mpegvideo.h:197
fdctdsp.h
MpegEncContext::dc_table_index
int dc_table_index
Definition: mpegvideo.h:414
MpegEncContext::last_pic
MPVWorkPicture last_pic
copy of the previous picture structure.
Definition: mpegvideo.h:159
MpegEncContext::rc_qmod_amp
float rc_qmod_amp
Definition: mpegvideo.h:518
MpegEncContext::new_pic
AVFrame * new_pic
Reference to the source picture for encoding.
Definition: mpegvideo.h:171
MpegEncContext::intra_vlc_format
int intra_vlc_format
Definition: mpegvideo.h:454
MpegEncContext::skipdct
int skipdct
skip dct and code zero residual
Definition: mpegvideo.h:212
MpegEncContext::permutated_intra_h_scantable
uint8_t permutated_intra_h_scantable[64]
Definition: mpegvideo.h:88
MpegEncContext::er
ERContext er
Definition: mpegvideo.h:535
MpegEncContext::last_lambda_for
int last_lambda_for[5]
last lambda for a specific pict type
Definition: mpegvideo.h:211
MpegEncContext::b_forw_mv_table_base
int16_t(* b_forw_mv_table_base)[2]
Definition: mpegvideo.h:231
MpegEncContext::picture_number
int picture_number
Definition: mpegvideo.h:122
MpegEncContext::dct_unquantize_inter
void(* dct_unquantize_inter)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo.h:499
idctdsp.h
MpegEncContext::motion_est
int motion_est
ME algorithm.
Definition: mpegvideo.h:257
MpegEncContext::h263_slice_structured
int h263_slice_structured
Definition: mpegvideo.h:367
ff_clean_intra_table_entries
void ff_clean_intra_table_entries(MpegEncContext *s)
Clean dc, ac for the current non-intra MB.
Definition: mpegvideo.c:799
MpegEncContext::fixed_qscale
int fixed_qscale
fixed qscale if non zero
Definition: mpegvideo.h:109
MpegEncContext::last_non_b_pict_type
int last_non_b_pict_type
used for MPEG-4 gmc B-frames & ratecontrol
Definition: mpegvideo.h:209
me_cmp_func
int(* me_cmp_func)(struct MpegEncContext *c, const uint8_t *blk1, const uint8_t *blk2, ptrdiff_t stride, int h)
Definition: me_cmp.h:50
MpegEncContext::MSMP4_V1
@ MSMP4_V1
Definition: mpegvideo.h:421
MpegEncContext::mspel
int mspel
Definition: mpegvideo.h:432
IDCTDSPContext
Definition: idctdsp.h:43
MpegEncContext::rv10_version
int rv10_version
RV10 version: 0 or 3.
Definition: mpegvideo.h:403
me_cmp.h
ff_mpv_common_init_mips
void ff_mpv_common_init_mips(MpegEncContext *s)
Definition: mpegvideo_init_mips.c:26
MpegEncContext::p_field_mv_table
int16_t(*[2][2] p_field_mv_table)[2]
MV table (2MV per MB) interlaced P-frame encoding.
Definition: mpegvideo.h:244
MpegEncContext::block
int16_t(* block)[64]
points to one of the following blocks
Definition: mpegvideo.h:476
MpegEncContext::dquant
int dquant
qscale difference to prev qscale
Definition: mpegvideo.h:205
MpegEncContext::chroma_x_shift
int chroma_x_shift
Definition: mpegvideo.h:462
QpelDSPContext
quarterpel DSP context
Definition: qpeldsp.h:72
AVCodecContext
main external API structure.
Definition: avcodec.h:445
MpegEncContext::intra_dc_precision
int intra_dc_precision
Definition: mpegvideo.h:448
MpegEncContext::per_mb_rl_table
int per_mb_rl_table
Definition: mpegvideo.h:428
MpegEncContext::flipflop_rounding
int flipflop_rounding
Definition: mpegvideo.h:418
MpegEncContext::ac_esc_length
int ac_esc_length
num of bits needed to encode the longest esc
Definition: mpegvideo.h:308
MpegEncContext::ehc_mode
int ehc_mode
Definition: mpegvideo.h:362
MpegEncContext::last_bits
int last_bits
temp var used for calculating the above vars
Definition: mpegvideo.h:347
MpegEncContext::modified_quant
int modified_quant
Definition: mpegvideo.h:369
MpegEncContext::lmin
int lmin
Definition: mpegvideo.h:523
error_resilience.h
MpegEncContext::rv10_first_dc_coded
int rv10_first_dc_coded[3]
Definition: mpegvideo.h:404
MpegEncContext::rc_eq
char * rc_eq
Definition: mpegvideo.h:526
mpegvideoencdsp.h
MpegEncContext::vbv_ignore_qmax
int vbv_ignore_qmax
Definition: mpegvideo.h:524
MpegEncContext::lmax
int lmax
Definition: mpegvideo.h:523
MpegEncContext::time
int64_t time
time of current frame
Definition: mpegvideo.h:380
MJpegContext
Holds JPEG frame data and Huffman table data.
Definition: mjpegenc.h:59
MpegEncContext::pred_dir_table
uint8_t * pred_dir_table
used to store pred_dir for partitioned decoding
Definition: mpegvideo.h:195
MpegEncContext::dct_unquantize_intra
void(* dct_unquantize_intra)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo.h:497
MpegEncContext::resync_mb_x
int resync_mb_x
x position of last resync marker
Definition: mpegvideo.h:350
VideoDSPContext
Definition: videodsp.h:40
MpegEncContext::no_rounding
int no_rounding
apply no rounding to motion compensation (MPEG-4, msmpeg4, ...) for B-frames rounding mode is always ...
Definition: mpegvideo.h:283
MpegEncContext::h263_aic_dir
int h263_aic_dir
AIC direction: 0 = left, 1 = top.
Definition: mpegvideo.h:366
MpegEncContext::dct_unquantize_mpeg2_inter
void(* dct_unquantize_mpeg2_inter)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo.h:491
MpegEncContext::mpeg_quant
int mpeg_quant
Definition: mpegvideo.h:393
MpegEncContext::mb_info_size
int mb_info_size
Definition: mpegvideo.h:361
MpegEncContext::noise_reduction
int noise_reduction
Definition: mpegvideo.h:552
MpegEncContext::MSMP4_VC1
@ MSMP4_VC1
for VC1 (image), WMV3 (image) and MSS2.
Definition: mpegvideo.h:426
overflow
Undefined Behavior In the C some operations are like signed integer overflow
Definition: undefined.txt:3
MpegEncContext::inter_scantable
ScanTable inter_scantable
if inter == intra then intra should be used to reduce the cache usage
Definition: mpegvideo.h:82
MpegEncContext::luma_dc_vlc_length
uint8_t * luma_dc_vlc_length
Definition: mpegvideo.h:315
MpegEncContext::droppable
int droppable
Definition: mpegvideo.h:210
MPVWorkPicture
Definition: mpegpicture.h:95
MpegEncContext::frame_skip_threshold
int frame_skip_threshold
Definition: mpegvideo.h:545
ScanTable
Scantable.
Definition: mpegvideo.h:56
MpegEncContext::cbp_table
uint8_t * cbp_table
used to store cbp, ac_pred for partitioned decoding
Definition: mpegvideo.h:194
ff_mpv_common_init_arm
void ff_mpv_common_init_arm(MpegEncContext *s)
Definition: mpegvideo_arm.c:48
MpegEncContext::vbv_delay_pos
int vbv_delay_pos
offset of vbv_delay in the bitstream
Definition: mpegvideo.h:439
MpegEncContext::first_field
int first_field
is 1 for the first field of a field picture 0 otherwise
Definition: mpegvideo.h:468
MpegEncContext::q_scale_type
int q_scale_type
Definition: mpegvideo.h:452
H264ChromaContext
Definition: h264chroma.h:27
MpegEncContext::MSMP4_V2
@ MSMP4_V2
Definition: mpegvideo.h:422
ScanTable::permutated
uint8_t permutated[64]
Definition: mpegvideo.h:58
src
INIT_CLIP pixel * src
Definition: h264pred_template.c:418
MpegEncContext::last_mv_dir
int last_mv_dir
last mv_dir, used for B-frame encoding
Definition: mpegvideo.h:438
MpegEncContext::q_inter_matrix
int(* q_inter_matrix)[64]
Definition: mpegvideo.h:322
MAX_B_FRAMES
#define MAX_B_FRAMES
Definition: mpegvideo.h:51
videodsp.h
MpegEncContext::mb_info
int mb_info
interval for outputting info about mb offsets as side data
Definition: mpegvideo.h:358
MpegEncContext::next_lambda
int next_lambda
next lambda used for retrying to encode a frame
Definition: mpegvideo.h:337
MpegEncContext::coded_score
int coded_score[12]
Definition: mpegvideo.h:317
MpegEncContext::last_pict_type
int last_pict_type
Definition: mpegvideo.h:208
hpeldsp.h
ff_mpv_free_context_frame
void ff_mpv_free_context_frame(MpegEncContext *s)
Frees and resets MpegEncContext fields depending on the resolution as well as the slice thread contex...
Definition: mpegvideo.c:752
MpegEncContext::misc_bits
int misc_bits
cbp, mb_type
Definition: mpegvideo.h:346
BufferPoolContext
Definition: mpegpicture.h:44
MpegEncContext::resync_mb_y
int resync_mb_y
y position of last resync marker
Definition: mpegvideo.h:351
MpegEncContext::end_mb_y
int end_mb_y
end mb_y of this thread (so current thread should process start_mb_y <= row < end_mb_y)
Definition: mpegvideo.h:151
MpegEncContext::mb_index2xy
int * mb_index2xy
mb_index -> mb_x + mb_y*mb_stride
Definition: mpegvideo.h:296
MpegEncContext::rc_qsquish
float rc_qsquish
ratecontrol qmin qmax limiting method 0-> clipping, 1-> use a nice continuous function to limit qscal...
Definition: mpegvideo.h:517
MPVPicture
MPVPicture.
Definition: mpegpicture.h:58
MpegEncContext::h263_plus
int h263_plus
H.263+ headers.
Definition: mpegvideo.h:105
MpegEncContext::start_mb_y
int start_mb_y
start mb_y of this thread (so current thread should process start_mb_y <= row < end_mb_y)
Definition: mpegvideo.h:150
MpegEncContext::block_wrap
int block_wrap[6]
Definition: mpegvideo.h:293
MpegEncContext::b_back_mv_table_base
int16_t(* b_back_mv_table_base)[2]
Definition: mpegvideo.h:232
MpegEncContext::alternate_scan
int alternate_scan
Definition: mpegvideo.h:455
MpegEncContext::cplx_tab
float * cplx_tab
Definition: mpegvideo.h:529
int
int
Definition: ffmpeg_filter.c:424
put_bits.h
MpegEncContext::custom_pcf
int custom_pcf
Definition: mpegvideo.h:371
MpegEncContext::direct_scale_mv
int16_t direct_scale_mv[2][64]
precomputed to avoid divisions in ff_mpeg4_set_direct_mv
Definition: mpegvideo.h:279
MpegEncContext::c_dc_scale_table
const uint8_t * c_dc_scale_table
qscale -> c_dc_scale table
Definition: mpegvideo.h:184
MpegEncContext
MpegEncContext.
Definition: mpegvideo.h:73
MpegEncContext::bitstream_buffer
uint8_t * bitstream_buffer
Definition: mpegvideo.h:398
MpegEncContext::codec_id
enum AVCodecID codec_id
Definition: mpegvideo.h:108
MpegEncContext::b_bidir_back_mv_table_base
int16_t(* b_bidir_back_mv_table_base)[2]
Definition: mpegvideo.h:234
MpegEncContext::picture_pool
struct FFRefStructPool * picture_pool
Pool for MPVPictures.
Definition: mpegvideo.h:131
MpegEncContext::alt_inter_vlc
int alt_inter_vlc
alternative inter vlc
Definition: mpegvideo.h:368
MpegEncContext::intra_ac_vlc_length
uint8_t * intra_ac_vlc_length
Definition: mpegvideo.h:309
MpegEncContext::p_tex_bits
int p_tex_bits
Definition: mpegvideo.h:344
MpegEncContext::b_field_mv_table
int16_t(*[2][2][2] b_field_mv_table)[2]
MV table (4MV per MB) interlaced B-frame encoding.
Definition: mpegvideo.h:245
pixblockdsp.h
MpegEncContext::chroma_intra_matrix
uint16_t chroma_intra_matrix[64]
Definition: mpegvideo.h:300
MpegEncContext::lambda_table
int * lambda_table
Definition: mpegvideo.h:203
MpegEncContext::rtp_mode
int rtp_mode
Definition: mpegvideo.h:471
ScanTable::raster_end
uint8_t raster_end[64]
Definition: mpegvideo.h:59
MpegEncContext::rl_table_index
int rl_table_index
Definition: mpegvideo.h:412
MpegEncContext::chroma_format
int chroma_format
Definition: mpegvideo.h:458
MpegEncContext::time_increment_bits
int time_increment_bits
Definition: mpegvideo.h:377
MpegEncContext::studio_profile
int studio_profile
Definition: mpegvideo.h:374
MpegEncContext::rc_qmod_freq
int rc_qmod_freq
Definition: mpegvideo.h:519
MpegEncContext::ac_pred
int ac_pred
Definition: mpegvideo.h:77
MpegEncContext::codec_tag
int codec_tag
internal codec_tag upper case converted from avctx codec_tag
Definition: mpegvideo.h:115