mpegvideo.h 35.6 KB
Newer Older
Fabrice Bellard's avatar
Fabrice Bellard committed
1 2
/*
 * Generic DCT based hybrid video encoder
3
 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4
 * Copyright (c) 2002-2004 Michael Niedermayer
Fabrice Bellard's avatar
Fabrice Bellard committed
5
 *
6
 * This file is part of Libav.
7
 *
8
 * Libav is free software; you can redistribute it and/or
9 10
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
11
 * version 2.1 of the License, or (at your option) any later version.
Fabrice Bellard's avatar
Fabrice Bellard committed
12
 *
13
 * Libav is distributed in the hope that it will be useful,
Fabrice Bellard's avatar
Fabrice Bellard committed
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
Fabrice Bellard's avatar
Fabrice Bellard committed
17
 *
18
 * You should have received a copy of the GNU Lesser General Public
19
 * License along with Libav; if not, write to the Free Software
20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Fabrice Bellard's avatar
Fabrice Bellard committed
21 22
 */

Michael Niedermayer's avatar
Michael Niedermayer committed
23
/**
24
 * @file
Michael Niedermayer's avatar
Michael Niedermayer committed
25 26
 * mpegvideo header.
 */
27

28 29
#ifndef AVCODEC_MPEGVIDEO_H
#define AVCODEC_MPEGVIDEO_H
30

31
#include "avcodec.h"
32
#include "dsputil.h"
33
#include "error_resilience.h"
34
#include "get_bits.h"
35
#include "h263dsp.h"
36
#include "hpeldsp.h"
37
#include "put_bits.h"
38
#include "ratecontrol.h"
39
#include "parser.h"
40
#include "mpeg12data.h"
41
#include "rl.h"
42
#include "thread.h"
43
#include "videodsp.h"
44

45 46
#include "libavutil/opt.h"

47
#define FRAME_SKIPPED 100 ///< return value for header parsers if frame is not coded
Michael Niedermayer's avatar
Michael Niedermayer committed
48

Fabrice Bellard's avatar
Fabrice Bellard committed
49 50
enum OutputFormat {
    FMT_MPEG1,
51
    FMT_H261,
Fabrice Bellard's avatar
Fabrice Bellard committed
52
    FMT_H263,
53
    FMT_MJPEG,
Fabrice Bellard's avatar
Fabrice Bellard committed
54 55 56 57
};

#define MPEG_BUF_SIZE (16 * 1024)

Michael Niedermayer's avatar
Michael Niedermayer committed
58 59
#define QMAT_SHIFT_MMX 16
#define QMAT_SHIFT 22
60

61 62
#define MAX_FCODE 7
#define MAX_MV 2048
Michael Niedermayer's avatar
Michael Niedermayer committed
63

64
#define MAX_THREADS 16
65

66
#define MAX_PICTURE_COUNT 32
67

68 69
#define MAX_B_FRAMES 16

70 71 72 73
#define ME_MAP_SIZE 64
#define ME_MAP_SHIFT 3
#define ME_MAP_MV_BITS 11

74 75
#define MAX_MB_BYTES (30*16*16*3/8 + 120)

76 77
#define INPLACE_OFFSET 16

78 79 80 81 82 83 84 85 86 87
/* Start codes. */
#define SEQ_END_CODE            0x000001b7
#define SEQ_START_CODE          0x000001b3
#define GOP_START_CODE          0x000001b8
#define PICTURE_START_CODE      0x00000100
#define SLICE_MIN_START_CODE    0x00000101
#define SLICE_MAX_START_CODE    0x000001af
#define EXT_START_CODE          0x000001b5
#define USER_START_CODE         0x000001b2

88 89
struct MpegEncContext;

Michael Niedermayer's avatar
Michael Niedermayer committed
90 91 92
/**
 * Picture.
 */
Michael Niedermayer's avatar
Michael Niedermayer committed
93
typedef struct Picture{
94
    struct AVFrame f;
95 96 97 98 99 100 101 102 103
    ThreadFrame tf;

    AVBufferRef *qscale_table_buf;
    int8_t *qscale_table;

    AVBufferRef *motion_val_buf[2];
    int16_t (*motion_val[2])[2];

    AVBufferRef *mb_type_buf;
104
    uint32_t *mb_type;          ///< types and macros are defined in mpegutils.h
105

106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
    AVBufferRef *mbskip_table_buf;
    uint8_t *mbskip_table;

    AVBufferRef *ref_index_buf[2];
    int8_t *ref_index[2];

    AVBufferRef *mb_var_buf;
    uint16_t *mb_var;           ///< Table for MB variances

    AVBufferRef *mc_mb_var_buf;
    uint16_t *mc_mb_var;        ///< Table for motion compensated MB variances

    AVBufferRef *mb_mean_buf;
    uint8_t *mb_mean;           ///< Table for MB luminance

    AVBufferRef *hwaccel_priv_buf;
    /**
     * hardware accelerator private data
     */
    void *hwaccel_picture_private;
Michael Niedermayer's avatar
Michael Niedermayer committed
126

127
    int field_picture;          ///< whether or not the picture was encoded in separate fields
128

129 130
    int mb_var_sum;             ///< sum of MB variance for current frame
    int mc_mb_var_sum;          ///< motion compensated MB variance for current frame
131

132
    int b_frame_score;          /* */
133
    int needs_realloc;          ///< Picture needs to be reallocated (eg due to a frame size change)
134 135 136

    int reference;
    int shared;
Michael Niedermayer's avatar
Michael Niedermayer committed
137 138
} Picture;

Michael Niedermayer's avatar
Michael Niedermayer committed
139 140 141
/**
 * Motion estimation context.
 */
Michael Niedermayer's avatar
Michael Niedermayer committed
142
typedef struct MotionEstContext{
143
    AVCodecContext *avctx;
144
    int skip;                          ///< set if ME is skipped for the current MB
Diego Biurrun's avatar
Diego Biurrun committed
145
    int co_located_mv[4][2];           ///< mv from last P-frame for direct mode ME
Michael Niedermayer's avatar
Michael Niedermayer committed
146
    int direct_basis_mv[4][2];
Diego Biurrun's avatar
Diego Biurrun committed
147
    uint8_t *scratchpad;               ///< data area for the ME algo, so that the ME does not need to malloc/free
148 149 150 151
    uint8_t *best_mb;
    uint8_t *temp_mb[2];
    uint8_t *temp;
    int best_bits;
152 153
    uint32_t *map;                     ///< map to avoid duplicate evaluations
    uint32_t *score_map;               ///< map to store the scores
154
    unsigned map_generation;
Michael Niedermayer's avatar
Michael Niedermayer committed
155
    int pre_penalty_factor;
156
    int penalty_factor;                /**< an estimate of the bits required to
157 158 159 160
                                        code a given mv value, e.g. (1,0) takes
                                        more bits than (0,0). We have to
                                        estimate whether any reduction in
                                        residual is worth the extra bits. */
Michael Niedermayer's avatar
Michael Niedermayer committed
161
    int sub_penalty_factor;
162
    int mb_penalty_factor;
163 164 165
    int flags;
    int sub_flags;
    int mb_flags;
166
    int pre_pass;                      ///< = 1 for the pre pass
Michael Niedermayer's avatar
Michael Niedermayer committed
167
    int dia_size;
168 169 170 171
    int xmin;
    int xmax;
    int ymin;
    int ymax;
172 173 174 175 176 177
    int pred_x;
    int pred_y;
    uint8_t *src[4][4];
    uint8_t *ref[4][4];
    int stride;
    int uvstride;
178 179 180 181
    /* temp variables for picture complexity calculation */
    int mc_mb_var_sum_temp;
    int mb_var_sum_temp;
    int scene_change_score;
182 183 184 185 186
/*    cmp, chroma_cmp;*/
    op_pixels_func (*hpel_put)[4];
    op_pixels_func (*hpel_avg)[4];
    qpel_mc_func (*qpel_put)[16];
    qpel_mc_func (*qpel_avg)[16];
187
    uint8_t (*mv_penalty)[MAX_MV*2+1];  ///< amount of bits needed to encode a MV
188
    uint8_t *current_mv_penalty;
Michael Niedermayer's avatar
Michael Niedermayer committed
189
    int (*sub_motion_search)(struct MpegEncContext * s,
190
                                  int *mx_ptr, int *my_ptr, int dmin,
191 192
                                  int src_index, int ref_index,
                                  int size, int h);
Michael Niedermayer's avatar
Michael Niedermayer committed
193 194
}MotionEstContext;

Michael Niedermayer's avatar
Michael Niedermayer committed
195 196 197
/**
 * MpegEncContext.
 */
Fabrice Bellard's avatar
Fabrice Bellard committed
198
typedef struct MpegEncContext {
199
    AVClass *class;
200
    struct AVCodecContext *avctx;
Fabrice Bellard's avatar
Fabrice Bellard committed
201
    /* the following parameters must be initialized before encoding */
202
    int width, height;///< picture size. must be a multiple of 16
Fabrice Bellard's avatar
Fabrice Bellard committed
203
    int gop_size;
204 205 206 207
    int intra_only;   ///< if true, only intra pictures are generated
    int bit_rate;     ///< wanted bit rate
    enum OutputFormat out_format; ///< output format
    int h263_pred;    ///< use mpeg4/h263 ac/dc predictions
208
    int pb_frame;     ///< PB frame mode (0 = none, 1 = base, 2 = improved)
209 210

/* the following codec id fields are deprecated in favor of codec_id */
211 212 213
    int h263_plus;    ///< h263 plus headers
    int h263_flv;     ///< use flv h263 header

214
    enum AVCodecID codec_id;     /* see AV_CODEC_ID_xxx */
215 216 217
    int fixed_qscale; ///< fixed qscale if non zero
    int encoding;     ///< true if we are encoding (vs decoding)
    int flags;        ///< AVCodecContext.flags (HQ, MV4, ...)
218
    int flags2;       ///< AVCodecContext.flags2
219
    int max_b_frames; ///< max number of b-frames for encoding
220 221
    int luma_elim_threshold;
    int chroma_elim_threshold;
222 223
    int strict_std_compliance; ///< strictly follow the std (MPEG4, ...)
    int workaround_bugs;       ///< workaround bugs in encoders which cannot be detected automatically
224 225
    int codec_tag;             ///< internal codec_tag upper case converted from avctx codec_tag
    int stream_codec_tag;      ///< internal stream_codec_tag upper case converted from avctx stream_codec_tag
Fabrice Bellard's avatar
Fabrice Bellard committed
226 227 228 229
    /* the following fields are managed internally by the encoder */

    /* sequence parameters */
    int context_initialized;
Diego Biurrun's avatar
Diego Biurrun committed
230 231
    int input_picture_number;  ///< used to set pic->display_picture_number, should not be used for/by anything else
    int coded_picture_number;  ///< used to set pic->coded_picture_number, should not be used for/by anything else
232
    int picture_number;       //FIXME remove, unclear definition
233 234
    int picture_in_gop_number; ///< 0-> first pic in gop, ...
    int mb_width, mb_height;   ///< number of MBs horizontally & vertically
Diego Biurrun's avatar
Diego Biurrun committed
235 236 237 238
    int mb_stride;             ///< mb_width+1 used for some arrays to allow simple addressing of left & top MBs without sig11
    int b8_stride;             ///< 2*mb_width+1 used for some 8x8 block arrays to allow simple addressing
    int b4_stride;             ///< 4*mb_width+1 used for some 4x4 block arrays to allow simple addressing
    int h_edge_pos, v_edge_pos;///< horizontal / vertical position of the right/bottom edge (pixel replication)
239
    int mb_num;                ///< number of MBs of a picture
240 241
    ptrdiff_t linesize;        ///< line size, in bytes, may be different from width
    ptrdiff_t uvlinesize;      ///< line size, for chroma in bytes, may be different from width
242
    Picture *picture;          ///< main picture buffer
243 244
    Picture **input_picture;   ///< next pictures on display order for encoding
    Picture **reordered_input_picture; ///< pointer to the next pictures in codedorder for encoding
245

246 247 248 249 250 251 252 253 254 255 256 257 258 259
    int y_dc_scale, c_dc_scale;
    int ac_pred;
    int block_last_index[12];  ///< last non zero coefficient in block
    int h263_aic;              ///< Advanded INTRA Coding (AIC)

    /* scantables */
    ScanTable inter_scantable; ///< if inter == intra then intra should be used to reduce tha cache usage
    ScanTable intra_scantable;
    ScanTable intra_h_scantable;
    ScanTable intra_v_scantable;

    /* WARNING: changes above this line require updates to hardcoded
     *          offsets used in asm. */

260
    int64_t user_specified_pts; ///< last non-zero pts from AVFrame which was passed into avcodec_encode_video2()
261 262 263 264 265 266 267 268
    /**
     * pts difference between the first and second input frame, used for
     * calculating dts of the first frame when there's a delay */
    int64_t dts_delta;
    /**
     * reordered pts to be used as dts for the next output frame when there's
     * a delay */
    int64_t reordered_pts;
269

270 271 272
    /** bit output */
    PutBitContext pb;

273 274 275
    int start_mb_y;            ///< start mb_y of this thread (so current thread should process start_mb_y <= row < 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)
    struct MpegEncContext *thread_context[MAX_THREADS];
276
    int slice_context_count;   ///< number of used thread_contexts
277 278

    /**
279 280 281
     * copy of the previous picture structure.
     * note, linesize & data, might not match the previous picture (for field pictures)
     */
282 283 284
    Picture last_picture;

    /**
285 286 287 288
     * copy of the next picture structure.
     * note, linesize & data, might not match the next picture (for field pictures)
     */
    Picture next_picture;
289 290

    /**
291 292 293 294
     * copy of the source picture structure for encoding.
     * note, linesize & data, might not match the source picture (for field pictures)
     */
    Picture new_picture;
295 296

    /**
297 298 299
     * copy of the current picture structure.
     * note, linesize & data, might not match the current picture (for field pictures)
     */
300 301
    Picture current_picture;    ///< buffer to store the decompressed current picture

302
    Picture *last_picture_ptr;     ///< pointer to the previous picture.
303
    Picture *next_picture_ptr;     ///< pointer to the next picture (for bidir pred)
304
    Picture *current_picture_ptr;  ///< pointer to the current picture
305
    int last_dc[3];                ///< last DC values for MPEG1
306 307
    int16_t *dc_val_base;
    int16_t *dc_val[3];            ///< used for mpeg4 DC prediction, all 3 arrays must be continuous
308 309
    const uint8_t *y_dc_scale_table;     ///< qscale -> y_dc_scale table
    const uint8_t *c_dc_scale_table;     ///< qscale -> c_dc_scale table
Michael Niedermayer's avatar
Michael Niedermayer committed
310
    const uint8_t *chroma_qscale_table;  ///< qscale -> chroma_qscale (h263)
311
    uint8_t *coded_block_base;
Michael Niedermayer's avatar
Michael Niedermayer committed
312
    uint8_t *coded_block;          ///< used for coded block pattern prediction (msmpeg4v3, wmv1)
313
    int16_t (*ac_val_base)[16];
314 315 316
    int16_t (*ac_val[3])[16];      ///< used for for mpeg4 AC prediction, all 3 arrays must be continuous
    int mb_skipped;                ///< MUST BE SET only during DECODING
    uint8_t *mbskip_table;        /**< used to avoid copy if macroblock skipped (for black regions for example)
317
                                   and used for b-frame encoding & decoding (contains skip table of next P Frame) */
318 319 320
    uint8_t *mbintra_table;       ///< used to avoid setting {ac, dc, cbp}-pred stuff to zero on inter MB decoding
    uint8_t *cbp_table;           ///< used to store cbp, ac_pred for partitioned decoding
    uint8_t *pred_dir_table;      ///< used to store pred_dir for partitioned decoding
321
    uint8_t *edge_emu_buffer;     ///< temporary buffer for if MVs point to out-of-frame data
Diego Biurrun's avatar
Diego Biurrun committed
322
    uint8_t *rd_scratchpad;       ///< scratchpad for rate distortion mb decision
323 324
    uint8_t *obmc_scratchpad;
    uint8_t *b_scratchpad;        ///< scratchpad used for writing into write only buffers
Fabrice Bellard's avatar
Fabrice Bellard committed
325

326 327
    int qscale;                 ///< QP
    int chroma_qscale;          ///< chroma QP
328 329
    unsigned int lambda;        ///< lagrange multipler used in rate distortion
    unsigned int lambda2;       ///< (lambda*lambda) >> FF_LAMBDA_SHIFT
330
    int *lambda_table;
331 332
    int adaptive_quant;         ///< use adaptive quantization
    int dquant;                 ///< qscale difference to prev qscale
333
    int pict_type;              ///< AV_PICTURE_TYPE_I, AV_PICTURE_TYPE_P, AV_PICTURE_TYPE_B, ...
334
    int last_pict_type; //FIXME removes
335
    int last_non_b_pict_type;   ///< used for mpeg4 gmc b-frames & ratecontrol
336
    int droppable;
Fabrice Bellard's avatar
Fabrice Bellard committed
337
    int frame_rate_index;
338
    int last_lambda_for[5];     ///< last lambda for a specific pict type
Michael Niedermayer's avatar
Michael Niedermayer committed
339
    int skipdct;                ///< skip dct and code zero residual
340

Fabrice Bellard's avatar
Fabrice Bellard committed
341
    /* motion compensation */
342 343
    int unrestricted_mv;        ///< mv can point outside of the coded picture
    int h263_long_vectors;      ///< use horrible h263v1 long vector mode
Michael Niedermayer's avatar
Michael Niedermayer committed
344

Diego Biurrun's avatar
Diego Biurrun committed
345
    DSPContext dsp;             ///< pointers for accelerated dsp functions
346
    HpelDSPContext hdsp;
347
    VideoDSPContext vdsp;
348
    H263DSPContext h263dsp;
349 350
    int f_code;                 ///< forward MV resolution
    int b_code;                 ///< backward MV resolution for B Frames (mpeg4)
351 352 353
    int16_t (*p_mv_table_base)[2];
    int16_t (*b_forw_mv_table_base)[2];
    int16_t (*b_back_mv_table_base)[2];
354 355
    int16_t (*b_bidir_forw_mv_table_base)[2];
    int16_t (*b_bidir_back_mv_table_base)[2];
356
    int16_t (*b_direct_mv_table_base)[2];
357 358
    int16_t (*p_field_mv_table_base[2][2])[2];
    int16_t (*b_field_mv_table_base[2][2][2])[2];
359 360 361 362 363 364
    int16_t (*p_mv_table)[2];            ///< MV table (1MV per MB) p-frame encoding
    int16_t (*b_forw_mv_table)[2];       ///< MV table (1MV per MB) forward mode b-frame encoding
    int16_t (*b_back_mv_table)[2];       ///< MV table (1MV per MB) backward mode b-frame encoding
    int16_t (*b_bidir_forw_mv_table)[2]; ///< MV table (1MV per MB) bidir mode b-frame encoding
    int16_t (*b_bidir_back_mv_table)[2]; ///< MV table (1MV per MB) bidir mode b-frame encoding
    int16_t (*b_direct_mv_table)[2];     ///< MV table (1MV per MB) direct mode b-frame encoding
365 366 367 368
    int16_t (*p_field_mv_table[2][2])[2];   ///< MV table (2MV per MB) interlaced p-frame encoding
    int16_t (*b_field_mv_table[2][2][2])[2];///< MV table (4MV per MB) interlaced b-frame encoding
    uint8_t (*p_field_select_table[2]);
    uint8_t (*b_field_select_table[2][2]);
369
    int me_method;                       ///< ME algorithm
Fabrice Bellard's avatar
Fabrice Bellard committed
370
    int mv_dir;
371 372
#define MV_DIR_FORWARD   1
#define MV_DIR_BACKWARD  2
Michael Niedermayer's avatar
Michael Niedermayer committed
373
#define MV_DIRECT        4 ///< bidirectional mode where the difference equals the MV of the last P/S/I-Frame (mpeg4)
Fabrice Bellard's avatar
Fabrice Bellard committed
374
    int mv_type;
375 376 377 378 379 380
#define MV_TYPE_16X16       0   ///< 1 vector for the whole mb
#define MV_TYPE_8X8         1   ///< 4 vectors (h263, mpeg4 4MV)
#define MV_TYPE_16X8        2   ///< 2 vectors, one per 16x8 block
#define MV_TYPE_FIELD       3   ///< 2 vectors, one per field
#define MV_TYPE_DMV         4   ///< 2 vectors, special mpeg2 Dual Prime Vectors
    /**motion vectors for a macroblock
Fabrice Bellard's avatar
Fabrice Bellard committed
381 382 383 384 385 386
       first coordinate : 0 = forward 1 = backward
       second "         : depend on type
       third  "         : 0 = x, 1 = y
    */
    int mv[2][4][2];
    int field_select[2][2];
387 388
    int last_mv[2][2][2];             ///< last MV, used for MV prediction in MPEG1 & B-frame MPEG4
    uint8_t *fcode_tab;               ///< smallest fcode needed for each MV
389
    int16_t direct_scale_mv[2][64];   ///< precomputed to avoid divisions in ff_mpeg4_set_direct_mv
390

Michael Niedermayer's avatar
Michael Niedermayer committed
391
    MotionEstContext me;
Fabrice Bellard's avatar
Fabrice Bellard committed
392

393
    int no_rounding;  /**< apply no rounding to motion compensation (MPEG4, msmpeg4, ...)
Diego Biurrun's avatar
Diego Biurrun committed
394
                        for b-frames rounding mode is always 0 */
Fabrice Bellard's avatar
Fabrice Bellard committed
395 396 397

    /* macroblock layer */
    int mb_x, mb_y;
398
    int mb_skip_run;
Fabrice Bellard's avatar
Fabrice Bellard committed
399
    int mb_intra;
400
    uint16_t *mb_type;  ///< Table for candidate MB types for encoding (defines in mpegutils.h)
401

Michael Niedermayer's avatar
Michael Niedermayer committed
402
    int block_index[6]; ///< index to current MB in block based arrays with edges
Michael Niedermayer's avatar
Michael Niedermayer committed
403
    int block_wrap[6];
404
    uint8_t *dest[3];
405

406
    int *mb_index2xy;        ///< mb_index -> mb_x + mb_y*mb_stride
Michael Niedermayer's avatar
Michael Niedermayer committed
407

Michael Niedermayer's avatar
Michael Niedermayer committed
408
    /** matrix transmitted in the bitstream */
409 410 411 412
    uint16_t intra_matrix[64];
    uint16_t chroma_intra_matrix[64];
    uint16_t inter_matrix[64];
    uint16_t chroma_inter_matrix[64];
413
#define QUANT_BIAS_SHIFT 8
414 415 416 417 418
    int intra_quant_bias;    ///< bias for the quantizer
    int inter_quant_bias;    ///< bias for the quantizer
    int min_qcoeff;          ///< minimum encodable coefficient
    int max_qcoeff;          ///< maximum encodable coefficient
    int ac_esc_length;       ///< num of bits needed to encode the longest esc
419 420 421 422
    uint8_t *intra_ac_vlc_length;
    uint8_t *intra_ac_vlc_last_length;
    uint8_t *inter_ac_vlc_length;
    uint8_t *inter_ac_vlc_last_length;
423
    uint8_t *luma_dc_vlc_length;
424
#define UNI_AC_ENC_INDEX(run,level) ((run)*128 + (level))
425

426
    int coded_score[8];
427

Michael Niedermayer's avatar
Michael Niedermayer committed
428
    /** precomputed matrix (combine qscale and DCT renorm) */
429 430
    int (*q_intra_matrix)[64];
    int (*q_inter_matrix)[64];
431 432 433
    /** identical to the above but for MMX & these are not permutated, second 64 entries are bias*/
    uint16_t (*q_intra_matrix16)[2][64];
    uint16_t (*q_inter_matrix16)[2][64];
434

435 436 437 438
    /* noise reduction */
    int (*dct_error_sum)[64];
    int dct_count[2];
    uint16_t (*dct_offset)[64];
Fabrice Bellard's avatar
Fabrice Bellard committed
439

Michael Niedermayer's avatar
Michael Niedermayer committed
440
    void *opaque;              ///< private data for the user
Fabrice Bellard's avatar
Fabrice Bellard committed
441 442

    /* bit rate control */
443
    int64_t total_bits;
444
    int frame_bits;                ///< bits used for the current frame
445
    int next_lambda;               ///< next lambda used for retrying to encode a frame
Michael Niedermayer's avatar
Michael Niedermayer committed
446
    RateControlContext rc_context; ///< contains stuff only accessed in ratecontrol.c
447

448 449 450 451 452 453
    /* statistics, used for 2-pass encoding */
    int mv_bits;
    int header_bits;
    int i_tex_bits;
    int p_tex_bits;
    int i_count;
454 455
    int f_count;
    int b_count;
456
    int skip_count;
Michael Niedermayer's avatar
Michael Niedermayer committed
457 458
    int misc_bits; ///< cbp, mb_type
    int last_bits; ///< temp var used for calculating the above vars
459

460
    /* error concealment / resync */
461 462 463
    int resync_mb_x;                 ///< x position of last resync marker
    int resync_mb_y;                 ///< y position of last resync marker
    GetBitContext last_resync_gb;    ///< used to search for the next resync marker
Michael Niedermayer's avatar
Michael Niedermayer committed
464
    int mb_num_left;                 ///< number of MBs left in this video packet (for partitioned Slices only)
465
    int next_p_frame_damaged;        ///< set if the next p frame is damaged, to avoid showing trashed b frames
466
    int err_recognition;
467

468
    ParseContext parse_context;
469

470
    /* H.263 specific */
471
    int gob_index;
472
    int obmc;                       ///< overlapped block motion compensation
473 474 475 476
    int mb_info;                    ///< interval for outputting info about mb offsets as side data
    int prev_mb_info, last_mb_info;
    uint8_t *mb_info_ptr;
    int mb_info_size;
477

478
    /* H.263+ specific */
479
    int umvplus;                    ///< == H263+ && unrestricted_mv
480 481
    int h263_aic_dir;               ///< AIC direction: 0 = left, 1 = top
    int h263_slice_structured;
482
    int alt_inter_vlc;              ///< alternative inter vlc
Michael Niedermayer's avatar
Michael Niedermayer committed
483
    int modified_quant;
484
    int loop_filter;
485
    int custom_pcf;
486

Fabrice Bellard's avatar
Fabrice Bellard committed
487
    /* mpeg4 specific */
488 489
    ///< number of bits to represent the fractional part of time (encoder only)
    int time_increment_bits;
490
    int last_time_base;
491 492
    int time_base;                  ///< time in seconds of last I,P,S Frame
    int64_t time;                   ///< time of current frame
493
    int64_t last_non_b_time;
494 495
    uint16_t pp_time;               ///< time distance between the last 2 p,s,i frames
    uint16_t pb_time;               ///< time distance between the last b and p,s,i frame
496
    uint16_t pp_field_time;
497
    uint16_t pb_field_time;         ///< like above, just for interlaced
Michael Niedermayer's avatar
Michael Niedermayer committed
498
    int real_sprite_warping_points;
499 500
    int sprite_offset[2][2];         ///< sprite offset[isChroma][isMVY]
    int sprite_delta[2][2];          ///< sprite_delta [isY][isMVY]
501
    int mcsel;
Fabrice Bellard's avatar
Fabrice Bellard committed
502
    int quant_precision;
503
    int quarter_sample;              ///< 1->qpel, 0->half pel ME/MC
504
    int aspect_ratio_info; //FIXME remove
505
    int sprite_warping_accuracy;
506 507 508
    int data_partitioning;           ///< data partitioning flag from header
    int partitioned_frame;           ///< is current frame partitioned
    int low_delay;                   ///< no reordering needed / has no b-frames
Michael Niedermayer's avatar
Michael Niedermayer committed
509
    int vo_type;
510 511 512
    int vol_control_parameters;      ///< does the stream contain the low_delay flag, used to workaround buggy encoders
    PutBitContext tex_pb;            ///< used for data partitioned VOPs
    PutBitContext pb2;               ///< used for data partitioned VOPs
513
    int mpeg_quant;
514
    int padding_bug_score;             ///< used to detect the VERY common padding bug in MPEG4
Michael Niedermayer's avatar
Michael Niedermayer committed
515 516

    /* divx specific, used to workaround (many) bugs in divx5 */
517
    int divx_packed;
518
    uint8_t *bitstream_buffer; //Divx 5.01 puts several frames in a single one, this is used to reorder them
Michael Niedermayer's avatar
Michael Niedermayer committed
519
    int bitstream_buffer_size;
520
    unsigned int allocated_bitstream_buffer_size;
521

Fabrice Bellard's avatar
Fabrice Bellard committed
522
    /* RV10 specific */
523
    int rv10_version; ///< RV10 version: 0 or 3
Fabrice Bellard's avatar
Fabrice Bellard committed
524
    int rv10_first_dc_coded[3];
525
    int orig_width, orig_height;
526

Fabrice Bellard's avatar
Fabrice Bellard committed
527 528 529 530 531 532 533 534 535
    /* MJPEG specific */
    struct MJpegContext *mjpeg_ctx;

    /* MSMPEG4 specific */
    int mv_table_index;
    int rl_table_index;
    int rl_chroma_table_index;
    int dc_table_index;
    int use_skip_mb_code;
536 537
    int slice_height;      ///< in macroblocks
    int first_slice_line;  ///< used in mpeg4 too to handle resync markers
538
    int flipflop_rounding;
Michael Niedermayer's avatar
Michael Niedermayer committed
539
    int msmpeg4_version;   ///< 0=not msmpeg4, 1=mp41, 2=mp42, 3=mp43/divx3 4=wmv1/7 5=wmv2/8
Michael Niedermayer's avatar
Michael Niedermayer committed
540 541 542
    int per_mb_rl_table;
    int esc3_level_length;
    int esc3_run_length;
Michael Niedermayer's avatar
Michael Niedermayer committed
543
    /** [mb_intra][isChroma][level][run][last] */
544
    int (*ac_stats)[2][MAX_LEVEL+1][MAX_RUN+1][2];
545
    int inter_intra_pred;
Michael Niedermayer's avatar
Michael Niedermayer committed
546
    int mspel;
Michael Niedermayer's avatar
Michael Niedermayer committed
547

Fabrice Bellard's avatar
Fabrice Bellard committed
548 549 550
    /* decompression specific */
    GetBitContext gb;

Michael Niedermayer's avatar
Michael Niedermayer committed
551
    /* Mpeg1 specific */
552 553 554 555
    int gop_picture_number;  ///< index of the first picture of a GOP based on fake_pic_num & mpeg1 specific
    int last_mv_dir;         ///< last mv_dir, used for b frame encoding
    uint8_t *vbv_delay_ptr;  ///< pointer to vbv_delay in the bitstream

556
    /* MPEG-2-specific - I wished not to have to support this mess. */
Fabrice Bellard's avatar
Fabrice Bellard committed
557 558
    int progressive_sequence;
    int mpeg_f_code[2][2];
559 560

    // picture structure defines are loaded from mpegutils.h
Fabrice Bellard's avatar
Fabrice Bellard committed
561 562 563 564 565 566 567 568 569 570 571
    int picture_structure;

    int intra_dc_precision;
    int frame_pred_frame_dct;
    int top_field_first;
    int concealment_motion_vectors;
    int q_scale_type;
    int intra_vlc_format;
    int alternate_scan;
    int repeat_first_field;
    int chroma_420_type;
572 573 574 575
    int chroma_format;
#define CHROMA_420 1
#define CHROMA_422 2
#define CHROMA_444 3
576 577
    int chroma_x_shift;//depend on pix_format, that depend on chroma_format
    int chroma_y_shift;
578

Fabrice Bellard's avatar
Fabrice Bellard committed
579
    int progressive_frame;
580
    int full_pel[2];
Fabrice Bellard's avatar
Fabrice Bellard committed
581
    int interlaced_dct;
582
    int first_field;         ///< is 1 for the first field of a field picture 0 otherwise
583
    int drop_frame_timecode; ///< timecode is in drop frame format.
584
    int scan_offset;         ///< reserve space for SVCD scan offset user data.
585

586
    /* RTP specific */
587
    int rtp_mode;
588

589
    uint8_t *ptr_lastgob;
Diego Biurrun's avatar
Diego Biurrun committed
590
    int16_t (*pblocks[12])[64];
591

Diego Biurrun's avatar
Diego Biurrun committed
592 593 594
    int16_t (*block)[64]; ///< points to one of the following blocks
    int16_t (*blocks)[8][64]; // for HQ mode we need to keep the best block
    int (*decode_mb)(struct MpegEncContext *s, int16_t block[6][64]); // used by some codecs to avoid a switch()
595 596
#define SLICE_OK         0
#define SLICE_ERROR     -1
597 598
#define SLICE_END       -2 ///<end marker found
#define SLICE_NOEND     -3 ///<no end marker or error found but mb count exceeded
599 600

    void (*dct_unquantize_mpeg1_intra)(struct MpegEncContext *s,
Diego Biurrun's avatar
Diego Biurrun committed
601
                           int16_t *block/*align 16*/, int n, int qscale);
602
    void (*dct_unquantize_mpeg1_inter)(struct MpegEncContext *s,
Diego Biurrun's avatar
Diego Biurrun committed
603
                           int16_t *block/*align 16*/, int n, int qscale);
604
    void (*dct_unquantize_mpeg2_intra)(struct MpegEncContext *s,
Diego Biurrun's avatar
Diego Biurrun committed
605
                           int16_t *block/*align 16*/, int n, int qscale);
606
    void (*dct_unquantize_mpeg2_inter)(struct MpegEncContext *s,
Diego Biurrun's avatar
Diego Biurrun committed
607
                           int16_t *block/*align 16*/, int n, int qscale);
608
    void (*dct_unquantize_h263_intra)(struct MpegEncContext *s,
Diego Biurrun's avatar
Diego Biurrun committed
609
                           int16_t *block/*align 16*/, int n, int qscale);
610
    void (*dct_unquantize_h263_inter)(struct MpegEncContext *s,
Diego Biurrun's avatar
Diego Biurrun committed
611
                           int16_t *block/*align 16*/, int n, int qscale);
612
    void (*dct_unquantize_h261_intra)(struct MpegEncContext *s,
Diego Biurrun's avatar
Diego Biurrun committed
613
                           int16_t *block/*align 16*/, int n, int qscale);
614
    void (*dct_unquantize_h261_inter)(struct MpegEncContext *s,
Diego Biurrun's avatar
Diego Biurrun committed
615
                           int16_t *block/*align 16*/, int n, int qscale);
616
    void (*dct_unquantize_intra)(struct MpegEncContext *s, // unquantizer to use (mpeg4 can use both)
Diego Biurrun's avatar
Diego Biurrun committed
617
                           int16_t *block/*align 16*/, int n, int qscale);
618
    void (*dct_unquantize_inter)(struct MpegEncContext *s, // unquantizer to use (mpeg4 can use both)
Diego Biurrun's avatar
Diego Biurrun committed
619 620 621 622
                           int16_t *block/*align 16*/, int n, int qscale);
    int (*dct_quantize)(struct MpegEncContext *s, int16_t *block/*align 16*/, int n, int qscale, int *overflow);
    int (*fast_dct_quantize)(struct MpegEncContext *s, int16_t *block/*align 16*/, int n, int qscale, int *overflow);
    void (*denoise_dct)(struct MpegEncContext *s, int16_t *block);
623 624

    int mpv_flags;      ///< flags set by private options
625
    int quantizer_noise_shaping;
626 627 628

    /* temp buffers for rate control */
    float *cplx_tab, *bits_tab;
629 630 631 632

    /* flag to indicate a reinitialization is required, e.g. after
     * a frame size change */
    int context_reinit;
633 634

    ERContext er;
635 636

    int error_rate;
637 638 639

    /* temporary frames used by b_frame_strategy = 2 */
    AVFrame *tmp_frames[MAX_B_FRAMES + 2];
Fabrice Bellard's avatar
Fabrice Bellard committed
640 641
} MpegEncContext;

642 643
#define REBASE_PICTURE(pic, new_ctx, old_ctx)             \
    ((pic && pic >= old_ctx->picture &&                   \
644
      pic < old_ctx->picture + MAX_PICTURE_COUNT) ?  \
645
        &new_ctx->picture[pic - old_ctx->picture] : NULL)
646

647 648
/* mpegvideo_enc common options */
#define FF_MPV_FLAG_SKIP_RD      0x0001
649
#define FF_MPV_FLAG_STRICT_GOP   0x0002
650
#define FF_MPV_FLAG_QP_RD        0x0004
651
#define FF_MPV_FLAG_CBP_RD       0x0008
652 653 654 655

#define FF_MPV_OFFSET(x) offsetof(MpegEncContext, x)
#define FF_MPV_OPT_FLAGS (AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM)
#define FF_MPV_COMMON_OPTS \
656
{ "mpv_flags",      "Flags common for all mpegvideo-based encoders.", FF_MPV_OFFSET(mpv_flags), AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT_MIN, INT_MAX, FF_MPV_OPT_FLAGS, "mpv_flags" },\
657 658 659 660
{ "skip_rd",        "RD optimal MB level residual skipping", 0, AV_OPT_TYPE_CONST, { .i64 = FF_MPV_FLAG_SKIP_RD },    0, 0, FF_MPV_OPT_FLAGS, "mpv_flags" },\
{ "strict_gop",     "Strictly enforce gop size",             0, AV_OPT_TYPE_CONST, { .i64 = FF_MPV_FLAG_STRICT_GOP }, 0, 0, FF_MPV_OPT_FLAGS, "mpv_flags" },\
{ "qp_rd",          "Use rate distortion optimization for qp selection", 0, AV_OPT_TYPE_CONST, { .i64 = FF_MPV_FLAG_QP_RD },  0, 0, FF_MPV_OPT_FLAGS, "mpv_flags" },\
{ "cbp_rd",         "use rate distortion optimization for CBP",          0, AV_OPT_TYPE_CONST, { .i64 = FF_MPV_FLAG_CBP_RD }, 0, 0, FF_MPV_OPT_FLAGS, "mpv_flags" },\
661
{ "luma_elim_threshold",   "single coefficient elimination threshold for luminance (negative values also consider dc coefficient)",\
662
                                                                      FF_MPV_OFFSET(luma_elim_threshold), AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX, FF_MPV_OPT_FLAGS },\
663
{ "chroma_elim_threshold", "single coefficient elimination threshold for chrominance (negative values also consider dc coefficient)",\
664
                                                                      FF_MPV_OFFSET(chroma_elim_threshold), AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX, FF_MPV_OPT_FLAGS },\
665 666 667
{ "quantizer_noise_shaping", NULL,                                  FF_MPV_OFFSET(quantizer_noise_shaping), AV_OPT_TYPE_INT, { .i64 = 0 },       0, INT_MAX, FF_MPV_OPT_FLAGS },\
{ "error_rate", "Simulate errors in the bitstream to test error concealment.",                                                                                                  \
                                                                    FF_MPV_OFFSET(error_rate),              AV_OPT_TYPE_INT, { .i64 = 0 },       0, INT_MAX, FF_MPV_OPT_FLAGS },
668 669 670 671 672 673 674 675 676 677 678

extern const AVOption ff_mpv_generic_options[];

#define FF_MPV_GENERIC_CLASS(name) \
static const AVClass name ## _class = {\
    .class_name = #name " encoder",\
    .item_name  = av_default_item_name,\
    .option     = ff_mpv_generic_options,\
    .version    = LIBAVUTIL_VERSION_INT,\
};

679 680 681 682 683 684 685
/**
 * Set the given MpegEncContext to common defaults (same for encoding
 * and decoding).  The changed fields will not depend upon the prior
 * state of the MpegEncContext.
 */
void ff_MPV_common_defaults(MpegEncContext *s);

686 687
void ff_MPV_decode_defaults(MpegEncContext *s);
int ff_MPV_common_init(MpegEncContext *s);
688
int ff_MPV_common_frame_size_change(MpegEncContext *s);
689
void ff_MPV_common_end(MpegEncContext *s);
Diego Biurrun's avatar
Diego Biurrun committed
690
void ff_MPV_decode_mb(MpegEncContext *s, int16_t block[12][64]);
691 692 693 694
int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx);
void ff_MPV_frame_end(MpegEncContext *s);
int ff_MPV_encode_init(AVCodecContext *avctx);
int ff_MPV_encode_end(AVCodecContext *avctx);
695 696
int ff_MPV_encode_picture(AVCodecContext *avctx, AVPacket *pkt,
                          const AVFrame *frame, int *got_packet);
697
void ff_MPV_encode_init_x86(MpegEncContext *s);
698
void ff_MPV_common_init_x86(MpegEncContext *s);
699
void ff_MPV_common_init_arm(MpegEncContext *s);
700
void ff_MPV_common_init_ppc(MpegEncContext *s);
701
void ff_clean_intra_table_entries(MpegEncContext *s);
702
void ff_mpeg_draw_horiz_band(MpegEncContext *s, int y, int h);
Michael Niedermayer's avatar
Michael Niedermayer committed
703
void ff_mpeg_flush(AVCodecContext *avctx);
704
void ff_print_debug_info(MpegEncContext *s, Picture *p);
705
void ff_write_quant_matrix(PutBitContext *pb, uint16_t *matrix);
706
int ff_find_unused_picture(MpegEncContext *s, int shared);
Diego Biurrun's avatar
Diego Biurrun committed
707
void ff_denoise_dct(MpegEncContext *s, int16_t *block);
708
int ff_update_duplicate_context(MpegEncContext *dst, MpegEncContext *src);
709 710
int ff_MPV_lowest_referenced_row(MpegEncContext *s, int dir);
void ff_MPV_report_decode_progress(MpegEncContext *s);
711
int ff_mpeg_update_thread_context(AVCodecContext *dst, const AVCodecContext *src);
712
void ff_set_qscale(MpegEncContext * s, int qscale);
Michael Niedermayer's avatar
Michael Niedermayer committed
713

714
/* Error resilience */
715
void ff_mpeg_er_frame_start(MpegEncContext *s);
716
void ff_mpeg_set_erpic(ERPicture *dst, Picture *src);
717

718
int ff_dct_common_init(MpegEncContext *s);
719 720
void ff_convert_matrix(DSPContext *dsp, int (*qmat)[64], uint16_t (*qmat16)[2][64],
                       const uint16_t *quant_matrix, int bias, int qmin, int qmax, int intra);
Diego Biurrun's avatar
Diego Biurrun committed
721
int ff_dct_quantize_c(MpegEncContext *s, int16_t *block, int n, int qscale, int *overflow);
722

723
void ff_init_block_index(MpegEncContext *s);
724

725 726 727 728 729 730 731
void ff_MPV_motion(MpegEncContext *s,
                   uint8_t *dest_y, uint8_t *dest_cb,
                   uint8_t *dest_cr, int dir,
                   uint8_t **ref_picture,
                   op_pixels_func (*pix_op)[4],
                   qpel_mc_func (*qpix_op)[16]);

732
/**
733 734
 * Allocate a Picture.
 * The pixels are allocated/set by calling get_buffer() if shared = 0.
735 736 737
 */
int ff_alloc_picture(MpegEncContext *s, Picture *pic, int shared);

738
extern const enum AVPixelFormat ff_pixfmt_list_420[];
739

740 741 742 743 744 745
/**
 * permute block according to permuatation.
 * @param last last non zero element in scantable order
 */
void ff_block_permute(int16_t *block, uint8_t *permutation, const uint8_t *scantable, int last);

746
static inline void ff_update_block_index(MpegEncContext *s){
747
    const int block_size = 8;
748

749 750 751 752 753 754
    s->block_index[0]+=2;
    s->block_index[1]+=2;
    s->block_index[2]+=2;
    s->block_index[3]+=2;
    s->block_index[4]++;
    s->block_index[5]++;
755 756 757
    s->dest[0]+= 2*block_size;
    s->dest[1]+= block_size;
    s->dest[2]+= block_size;
758 759
}

760
static inline int get_bits_diff(MpegEncContext *s){
761
    const int bits= put_bits_count(&s->pb);
762 763 764 765 766 767
    const int last= s->last_bits;

    s->last_bits = bits;

    return bits - last;
}
768

769 770 771
static inline int ff_h263_round_chroma(int x){
    static const uint8_t h263_chroma_roundtab[16] = {
    //  0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15
772
        0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1,
773
    };
774
    return h263_chroma_roundtab[x & 0xf] + (x >> 3);
775 776
}

Fabrice Bellard's avatar
Fabrice Bellard committed
777
/* motion_est.c */
778 779 780 781 782 783
void ff_estimate_p_frame_motion(MpegEncContext * s,
                             int mb_x, int mb_y);
void ff_estimate_b_frame_motion(MpegEncContext * s,
                             int mb_x, int mb_y);
int ff_get_best_fcode(MpegEncContext * s, int16_t (*mv_table)[2], int type);
void ff_fix_long_p_mvs(MpegEncContext * s);
784 785
void ff_fix_long_mvs(MpegEncContext * s, uint8_t *field_select_table, int field_select,
                     int16_t (*mv_table)[2], int f_code, int type, int truncate);
786
int ff_init_me(MpegEncContext *s);
787
int ff_pre_estimate_p_frame_motion(MpegEncContext * s, int mb_x, int mb_y);
788
int ff_epzs_motion_search(MpegEncContext * s, int *mx_ptr, int *my_ptr,
789 790
                             int P[10][2], int src_index, int ref_index, int16_t (*last_mv)[2],
                             int ref_mv_scale, int size, int h);
791
int ff_get_mb_score(MpegEncContext * s, int mx, int my, int src_index,
792
                               int ref_index, int size, int h, int add_rate);
793

Fabrice Bellard's avatar
Fabrice Bellard committed
794
/* mpeg12.c */
Michael Niedermayer's avatar
Michael Niedermayer committed
795
extern const uint8_t ff_mpeg1_dc_scale_table[128];
796
extern const uint8_t * const ff_mpeg2_dc_scale_table[4];
Fabrice Bellard's avatar
Fabrice Bellard committed
797

798 799
void ff_mpeg1_encode_picture_header(MpegEncContext *s, int picture_number);
void ff_mpeg1_encode_mb(MpegEncContext *s,
Diego Biurrun's avatar
Diego Biurrun committed
800
                        int16_t block[6][64],
801
                        int motion_x, int motion_y);
Michael Niedermayer's avatar
Michael Niedermayer committed
802
void ff_mpeg1_encode_init(MpegEncContext *s);
803
void ff_mpeg1_encode_slice_header(MpegEncContext *s);
Fabrice Bellard's avatar
Fabrice Bellard committed
804

Michael Niedermayer's avatar
Michael Niedermayer committed
805
extern const uint8_t ff_aic_dc_scale_table[32];
Michael Niedermayer's avatar
Michael Niedermayer committed
806
extern const uint8_t ff_h263_chroma_qscale_table[32];
Michael Niedermayer's avatar
Michael Niedermayer committed
807

Fabrice Bellard's avatar
Fabrice Bellard committed
808
/* rv10.c */
809 810 811
void ff_rv10_encode_picture_header(MpegEncContext *s, int picture_number);
int ff_rv_decode_dc(MpegEncContext *s, int n);
void ff_rv20_encode_picture_header(MpegEncContext *s, int picture_number);
Fabrice Bellard's avatar
Fabrice Bellard committed
812

813

Fabrice Bellard's avatar
Fabrice Bellard committed
814
/* msmpeg4.c */
815 816 817
void ff_msmpeg4_encode_picture_header(MpegEncContext * s, int picture_number);
void ff_msmpeg4_encode_ext_header(MpegEncContext * s);
void ff_msmpeg4_encode_mb(MpegEncContext * s,
Diego Biurrun's avatar
Diego Biurrun committed
818
                          int16_t block[6][64],
819 820 821
                          int motion_x, int motion_y);
int ff_msmpeg4_decode_picture_header(MpegEncContext * s);
int ff_msmpeg4_decode_ext_header(MpegEncContext * s, int buf_size);
822
int ff_msmpeg4_decode_init(AVCodecContext *avctx);
Michael Niedermayer's avatar
Michael Niedermayer committed
823
void ff_msmpeg4_encode_init(MpegEncContext *s);
Michael Niedermayer's avatar
Michael Niedermayer committed
824
int ff_wmv2_decode_picture_header(MpegEncContext * s);
Fabrice Bellard's avatar
Fabrice Bellard committed
825
int ff_wmv2_decode_secondary_picture_header(MpegEncContext * s);
Diego Biurrun's avatar
Diego Biurrun committed
826
void ff_wmv2_add_mb(MpegEncContext *s, int16_t block[6][64], uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr);
Michael Niedermayer's avatar
Michael Niedermayer committed
827
void ff_mspel_motion(MpegEncContext *s,
828 829
                               uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
                               uint8_t **ref_picture, op_pixels_func (*pix_op)[4],
Michael Niedermayer's avatar
Michael Niedermayer committed
830 831
                               int motion_x, int motion_y, int h);
int ff_wmv2_encode_picture_header(MpegEncContext * s, int picture_number);
832
void ff_wmv2_encode_mb(MpegEncContext * s,
Diego Biurrun's avatar
Diego Biurrun committed
833
                       int16_t block[6][64],
Michael Niedermayer's avatar
Michael Niedermayer committed
834
                       int motion_x, int motion_y);
Fabrice Bellard's avatar
Fabrice Bellard committed
835

836 837
int ff_mpeg_ref_picture(MpegEncContext *s, Picture *dst, Picture *src);
void ff_mpeg_unref_picture(MpegEncContext *s, Picture *picture);
838
void ff_free_picture_tables(Picture *pic);
839

840
#endif /* AVCODEC_MPEGVIDEO_H */