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