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