mpegvideo.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:41k
源码类别:

Windows CE

开发平台:

C/C++

  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 library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20. /**
  21.  * @file mpegvideo.h
  22.  * mpegvideo header.
  23.  */
  24.  
  25. #ifndef AVCODEC_MPEGVIDEO_H
  26. #define AVCODEC_MPEGVIDEO_H
  27. #include "dsputil.h"
  28. #include "bitstream.h"
  29. #define FRAME_SKIPPED 100 ///< return value for header parsers if frame is not coded
  30. enum OutputFormat {
  31.     FMT_MPEG1,
  32.     FMT_H261,
  33.     FMT_H263,
  34.     FMT_MJPEG, 
  35.     FMT_H264,
  36. };
  37. #define EDGE_WIDTH 16
  38. #define MPEG_BUF_SIZE (16 * 1024)
  39. #define QMAT_SHIFT_MMX 16
  40. #define QMAT_SHIFT 22
  41. #define MAX_FCODE 7
  42. #define MAX_MV 2048
  43. #define MAX_THREADS 8
  44. #define MAX_PICTURE_COUNT 32
  45. #define ME_MAP_SIZE 64
  46. #define ME_MAP_SHIFT 3
  47. #define ME_MAP_MV_BITS 11
  48. /* run length table */
  49. #define MAX_RUN    64
  50. #define MAX_LEVEL  64
  51. #define I_TYPE FF_I_TYPE  ///< Intra
  52. #define P_TYPE FF_P_TYPE  ///< Predicted
  53. #define B_TYPE FF_B_TYPE  ///< Bi-dir predicted
  54. #define S_TYPE FF_S_TYPE  ///< S(GMC)-VOP MPEG4
  55. #define SI_TYPE FF_SI_TYPE  ///< Switching Intra
  56. #define SP_TYPE FF_SP_TYPE  ///< Switching Predicted
  57. #define MAX_MB_BYTES (30*16*16*3/8 + 120)
  58. typedef struct Predictor{
  59.     double coeff;
  60.     double count;
  61.     double decay;
  62. } Predictor;
  63. typedef struct RateControlEntry{
  64.     int pict_type;
  65.     float qscale;
  66.     int mv_bits;
  67.     int i_tex_bits;
  68.     int p_tex_bits;
  69.     int misc_bits;
  70.     uint64_t expected_bits;
  71.     int new_pict_type;
  72.     float new_qscale;
  73.     int mc_mb_var_sum;
  74.     int mb_var_sum;
  75.     int i_count;
  76.     int f_code;
  77.     int b_code;
  78. }RateControlEntry;
  79. /**
  80.  * rate control context.
  81.  */
  82. typedef struct RateControlContext{
  83.     FILE *stats_file;
  84.     int num_entries;              ///< number of RateControlEntries 
  85.     RateControlEntry *entry;
  86.     double buffer_index;          ///< amount of bits in the video/audio buffer 
  87.     Predictor pred[5];
  88.     double short_term_qsum;       ///< sum of recent qscales 
  89.     double short_term_qcount;     ///< count of recent qscales 
  90.     double pass1_rc_eq_output_sum;///< sum of the output of the rc equation, this is used for normalization  
  91.     double pass1_wanted_bits;     ///< bits which should have been outputed by the pass1 code (including complexity init) 
  92.     double last_qscale;
  93.     double last_qscale_for[5];    ///< last qscale for a specific pict type, used for max_diff & ipb factor stuff 
  94.     int last_mc_mb_var_sum;
  95.     int last_mb_var_sum;
  96.     uint64_t i_cplx_sum[5];
  97.     uint64_t p_cplx_sum[5];
  98.     uint64_t mv_bits_sum[5];
  99.     uint64_t qscale_sum[5];
  100.     int frame_count[5];
  101.     int last_non_b_pict_type;
  102. }RateControlContext;
  103. /**
  104.  * Scantable.
  105.  */
  106. typedef struct ScanTable{
  107.     const uint8_t *scantable;
  108.     uint8_t permutated[64];
  109.     uint8_t raster_end[64];
  110. #ifdef ARCH_POWERPC
  111. /** Used by dct_quantise_alitvec to find last-non-zero */
  112.     uint8_t __align8 inverse[64];
  113. #endif
  114. } ScanTable;
  115. /**
  116.  * Picture.
  117.  */
  118. typedef struct Picture{
  119.     FF_COMMON_FRAME
  120.     /**
  121.      * halfpel luma planes.
  122.      */
  123.     uint8_t *interpolated[3];
  124.     int16_t (*motion_val_base[2])[2];
  125.     uint32_t *mb_type_base;
  126. #define MB_TYPE_INTRA MB_TYPE_INTRA4x4 //default mb_type if theres just one type
  127. #define IS_INTRA4x4(a)   ((a)&MB_TYPE_INTRA4x4)
  128. #define IS_INTRA16x16(a) ((a)&MB_TYPE_INTRA16x16)
  129. #define IS_PCM(a)        ((a)&MB_TYPE_INTRA_PCM)
  130. #define IS_INTRA(a)      ((a)&7)
  131. #define IS_INTER(a)      ((a)&(MB_TYPE_16x16|MB_TYPE_16x8|MB_TYPE_8x16|MB_TYPE_8x8))
  132. #define IS_SKIP(a)       ((a)&MB_TYPE_SKIP)
  133. #define IS_INTRA_PCM(a)  ((a)&MB_TYPE_INTRA_PCM)
  134. #define IS_INTERLACED(a) ((a)&MB_TYPE_INTERLACED)
  135. #define IS_DIRECT(a)     ((a)&MB_TYPE_DIRECT2)
  136. #define IS_GMC(a)        ((a)&MB_TYPE_GMC)
  137. #define IS_16X16(a)      ((a)&MB_TYPE_16x16)
  138. #define IS_16X8(a)       ((a)&MB_TYPE_16x8)
  139. #define IS_8X16(a)       ((a)&MB_TYPE_8x16)
  140. #define IS_8X8(a)        ((a)&MB_TYPE_8x8)
  141. #define IS_SUB_8X8(a)    ((a)&MB_TYPE_16x16) //note reused
  142. #define IS_SUB_8X4(a)    ((a)&MB_TYPE_16x8)  //note reused
  143. #define IS_SUB_4X8(a)    ((a)&MB_TYPE_8x16)  //note reused
  144. #define IS_SUB_4X4(a)    ((a)&MB_TYPE_8x8)   //note reused
  145. #define IS_ACPRED(a)     ((a)&MB_TYPE_ACPRED)
  146. #define IS_QUANT(a)      ((a)&MB_TYPE_QUANT)
  147. #define IS_DIR(a, part, list) ((a) & (MB_TYPE_P0L0<<((part)+2*(list))))
  148. #define USES_LIST(a, list) ((a) & ((MB_TYPE_P0L0|MB_TYPE_P1L0)<<(2*(list)))) ///< does this mb use listX, note doesnt work if subMBs
  149. #define HAS_CBP(a)        ((a)&MB_TYPE_CBP)
  150.     int field_poc[2];           ///< h264 top/bottom POC
  151.     int poc;                    ///< h264 frame POC
  152.     int frame_num;              ///< h264 frame_num
  153.     int pic_id;                 ///< h264 pic_num or long_term_pic_idx
  154.     int long_ref;               ///< 1->long term reference 0->short term reference
  155.     int ref_poc[2][16];         ///< h264 POCs of the frames used as reference
  156.     int ref_count[2];           ///< number of entries in ref_poc
  157.     int mb_var_sum;             ///< sum of MB variance for current frame 
  158.     int mc_mb_var_sum;          ///< motion compensated MB variance for current frame 
  159.     uint16_t *mb_var;           ///< Table for MB variances 
  160.     uint16_t *mc_mb_var;        ///< Table for motion compensated MB variances 
  161.     uint8_t *mb_mean;           ///< Table for MB luminance 
  162.     int32_t *mb_cmp_score; ///< Table for MB cmp scores, for mb decision FIXME remove
  163.     int b_frame_score;          /* */
  164. } Picture;
  165. typedef struct ParseContext{
  166.     uint8_t *buffer;
  167.     int index;
  168.     int last_index;
  169.     int buffer_size;
  170.     uint32_t state;             ///< contains the last few bytes in MSB order
  171.     int frame_start_found;
  172.     int overread;               ///< the number of bytes which where irreversibly read from the next frame
  173.     int overread_index;         ///< the index into ParseContext.buffer of the overreaded bytes
  174. } ParseContext;
  175. struct MpegEncContext;
  176. /**
  177.  * Motion estimation context.
  178.  */
  179. typedef struct MotionEstContext{
  180.     AVCodecContext *avctx;
  181.     int skip;                          ///< set if ME is skipped for the current MB 
  182.     int co_located_mv[4][2];           ///< mv from last p frame for direct mode ME 
  183.     int direct_basis_mv[4][2];
  184.     uint8_t *scratchpad;               ///< data area for the me algo, so that the ME doesnt need to malloc/free 
  185.     uint8_t *best_mb;
  186.     uint8_t *temp_mb[2];
  187.     uint8_t *temp;
  188.     int best_bits;
  189.     uint32_t *map;                     ///< map to avoid duplicate evaluations 
  190.     uint32_t *score_map;               ///< map to store the scores 
  191.     int map_generation;  
  192.     int pre_penalty_factor;
  193.     int penalty_factor;
  194.     int sub_penalty_factor;
  195.     int mb_penalty_factor;
  196.     int flags;
  197.     int sub_flags;
  198.     int mb_flags;
  199.     int pre_pass;                      ///< = 1 for the pre pass 
  200.     int dia_size;
  201.     int xmin;
  202.     int xmax;
  203.     int ymin;
  204.     int ymax;
  205.     int pred_x;
  206.     int pred_y;
  207.     uint8_t *src[4][4];
  208.     uint8_t *ref[4][4];
  209.     int stride;
  210.     int uvstride;
  211.     /* temp variables for picture complexity calculation */
  212.     int mc_mb_var_sum_temp;
  213.     int mb_var_sum_temp;
  214.     int scene_change_score;
  215. /*    cmp, chroma_cmp;*/
  216.     op_pixels_func (*hpel_put)[4];
  217.     op_pixels_func (*hpel_avg)[4];
  218.     qpel_mc_func (*qpel_put)[16];
  219.     qpel_mc_func (*qpel_avg)[16];
  220.     uint8_t (*mv_penalty)[MAX_MV*2+1];  ///< amount of bits needed to encode a MV 
  221.     uint8_t *current_mv_penalty;
  222.     int (*sub_motion_search)(struct MpegEncContext * s,
  223.   int *mx_ptr, int *my_ptr, int dmin,
  224.                                   int src_index, int ref_index,
  225.                                   int size, int h);
  226. }MotionEstContext;
  227. /**
  228.  * MpegEncContext.
  229.  */
  230. typedef struct MpegEncContext {
  231.     struct AVCodecContext *avctx;
  232.     /* the following parameters must be initialized before encoding */
  233.     int width, height;///< picture size. must be a multiple of 16 
  234.     int gop_size;
  235.     int intra_only;   ///< if true, only intra pictures are generated 
  236.     int bit_rate;     ///< wanted bit rate 
  237.     enum OutputFormat out_format; ///< output format 
  238.     int h263_pred;    ///< use mpeg4/h263 ac/dc predictions 
  239. /* the following codec id fields are deprecated in favor of codec_id */
  240.     int h263_plus;    ///< h263 plus headers 
  241.     int h263_msmpeg4; ///< generate MSMPEG4 compatible stream (deprecated, use msmpeg4_version instead)
  242.     int h263_flv;     ///< use flv h263 header 
  243.     
  244.     enum CodecID codec_id;     /* see CODEC_ID_xxx */
  245.     int fixed_qscale; ///< fixed qscale if non zero 
  246.     int encoding;     ///< true if we are encoding (vs decoding) 
  247.     int flags;        ///< AVCodecContext.flags (HQ, MV4, ...) 
  248.     int flags2;       ///< AVCodecContext.flags2
  249.     int max_b_frames; ///< max number of b-frames for encoding 
  250.     int luma_elim_threshold;
  251.     int chroma_elim_threshold;
  252.     int strict_std_compliance; ///< strictly follow the std (MPEG4, ...) 
  253.     int workaround_bugs;       ///< workaround bugs in encoders which cannot be detected automatically 
  254.     /* the following fields are managed internally by the encoder */
  255.     /** bit output */
  256.     PutBitContext pb;
  257.     /* sequence parameters */
  258.     int context_initialized;
  259.     int input_picture_number;  ///< used to set pic->display_picture_number, shouldnt be used for/by anything else
  260.     int coded_picture_number;  ///< used to set pic->coded_picture_number, shouldnt be used for/by anything else
  261.     int picture_number;       //FIXME remove, unclear definition
  262.     int picture_in_gop_number; ///< 0-> first pic in gop, ... 
  263.     int b_frames_since_non_b;  ///< used for encoding, relative to not yet reordered input 
  264.     int64_t user_specified_pts;///< last non zero pts from AVFrame which was passed into avcodec_encode_video()
  265.     int mb_width, mb_height;   ///< number of MBs horizontally & vertically 
  266.     int mb_stride;             ///< mb_width+1 used for some arrays to allow simple addressing of left & top MBs without sig11
  267.     int b8_stride;             ///< 2*mb_width+1 used for some 8x8 block arrays to allow simple addressing
  268.     int b4_stride;             ///< 4*mb_width+1 used for some 4x4 block arrays to allow simple addressing
  269.     int h_edge_pos, v_edge_pos;///< horizontal / vertical position of the right/bottom edge (pixel replication)
  270.     int mb_num;                ///< number of MBs of a picture 
  271.     int linesize;              ///< line size, in bytes, may be different from width 
  272.     int uvlinesize;            ///< line size, for chroma in bytes, may be different from width 
  273.     Picture *picture;          ///< main picture buffer 
  274.     Picture **input_picture;   ///< next pictures on display order for encoding
  275.     Picture **reordered_input_picture; ///< pointer to the next pictures in codedorder for encoding
  276.     
  277.     int start_mb_y;            ///< start mb_y of this thread (so current thread should process start_mb_y <= row < end_mb_y)
  278.     int end_mb_y;              ///< end   mb_y of this thread (so current thread should process start_mb_y <= row < end_mb_y)
  279.     struct MpegEncContext *thread_context[MAX_THREADS];
  280.     
  281.     /** 
  282.      * copy of the previous picture structure.
  283.      * note, linesize & data, might not match the previous picture (for field pictures)
  284.      */
  285.     Picture last_picture;       
  286.     
  287.     /** 
  288.      * copy of the next picture structure.
  289.      * note, linesize & data, might not match the next picture (for field pictures)
  290.      */
  291.     Picture next_picture;
  292.     
  293.     /** 
  294.      * copy of the source picture structure for encoding.
  295.      * note, linesize & data, might not match the source picture (for field pictures)
  296.      */
  297.     Picture new_picture;
  298.     
  299.     /** 
  300.      * copy of the current picture structure.
  301.      * note, linesize & data, might not match the current picture (for field pictures)
  302.      */
  303.     Picture current_picture;    ///< buffer to store the decompressed current picture 
  304.     
  305.     Picture *last_picture_ptr;     ///< pointer to the previous picture.
  306.     Picture *next_picture_ptr;     ///< pointer to the next picture (for bidir pred) 
  307.     Picture *current_picture_ptr;  ///< pointer to the current picture
  308.     uint8_t *visualization_buffer[3]; //< temporary buffer vor MV visualization
  309.     int last_dc[3];                ///< last DC values for MPEG1 
  310.     int16_t *dc_val_base;
  311.     int16_t *dc_val[3];            ///< used for mpeg4 DC prediction, all 3 arrays must be continuous 
  312.     int16_t dc_cache[4*5];
  313.     int y_dc_scale, c_dc_scale;
  314.     const uint8_t *y_dc_scale_table;     ///< qscale -> y_dc_scale table 
  315.     const uint8_t *c_dc_scale_table;     ///< qscale -> c_dc_scale table 
  316.     const uint8_t *chroma_qscale_table;  ///< qscale -> chroma_qscale (h263)
  317.     uint8_t *coded_block_base;
  318.     uint8_t *coded_block;          ///< used for coded block pattern prediction (msmpeg4v3, wmv1)
  319.     int16_t (*ac_val_base)[16];
  320.     int16_t (*ac_val[3])[16];      ///< used for for mpeg4 AC prediction, all 3 arrays must be continuous 
  321.     int ac_pred;
  322.     uint8_t *prev_pict_types;     ///< previous picture types in bitstream order, used for mb skip 
  323. #define PREV_PICT_TYPES_BUFFER_SIZE 256
  324.     int mb_skipped;                ///< MUST BE SET only during DECODING 
  325.     uint8_t *mbskip_table;        /**< used to avoid copy if macroblock skipped (for black regions for example) 
  326.                                    and used for b-frame encoding & decoding (contains skip table of next P Frame) */
  327.     uint8_t *mbintra_table;       ///< used to avoid setting {ac, dc, cbp}-pred stuff to zero on inter MB decoding 
  328.     uint8_t *cbp_table;           ///< used to store cbp, ac_pred for partitioned decoding 
  329.     uint8_t *pred_dir_table;      ///< used to store pred_dir for partitioned decoding 
  330.     uint8_t *allocated_edge_emu_buffer;
  331.     uint8_t *edge_emu_buffer;     ///< points into the middle of allocated_edge_emu_buffer
  332.     uint8_t *rd_scratchpad;       ///< scratchpad for rate distortion mb decision
  333.     uint8_t *obmc_scratchpad;
  334.     uint8_t *b_scratchpad;        ///< scratchpad used for writing into write only buffers
  335.     int qscale;                 ///< QP 
  336.     int chroma_qscale;          ///< chroma QP 
  337.     int lambda;                 ///< lagrange multipler used in rate distortion
  338.     int lambda2;                ///< (lambda*lambda) >> FF_LAMBDA_SHIFT 
  339.     int *lambda_table;
  340.     int adaptive_quant;         ///< use adaptive quantization 
  341.     int dquant;                 ///< qscale difference to prev qscale  
  342.     int pict_type;              ///< I_TYPE, P_TYPE, B_TYPE, ... 
  343.     int last_pict_type; //FIXME removes
  344.     int last_non_b_pict_type;   ///< used for mpeg4 gmc b-frames & ratecontrol 
  345.     int dropable;
  346.     int frame_rate_index;
  347.     /* motion compensation */
  348.     int unrestricted_mv;        ///< mv can point outside of the coded picture 
  349.     int h263_long_vectors;      ///< use horrible h263v1 long vector mode 
  350.     int decode;                 ///< if 0 then decoding will be skipped (for encoding b frames for example)
  351.     DSPContext dsp;             ///< pointers for accelerated dsp functions
  352.     int f_code;                 ///< forward MV resolution 
  353.     int b_code;                 ///< backward MV resolution for B Frames (mpeg4) 
  354.     int16_t (*p_mv_table_base)[2];
  355.     int16_t (*b_forw_mv_table_base)[2];
  356.     int16_t (*b_back_mv_table_base)[2];
  357.     int16_t (*b_bidir_forw_mv_table_base)[2]; 
  358.     int16_t (*b_bidir_back_mv_table_base)[2]; 
  359.     int16_t (*b_direct_mv_table_base)[2];
  360.     int16_t (*p_field_mv_table_base[2][2])[2];
  361.     int16_t (*b_field_mv_table_base[2][2][2])[2];
  362.     int16_t (*p_mv_table)[2];            ///< MV table (1MV per MB) p-frame encoding 
  363.     int16_t (*b_forw_mv_table)[2];       ///< MV table (1MV per MB) forward mode b-frame encoding 
  364.     int16_t (*b_back_mv_table)[2];       ///< MV table (1MV per MB) backward mode b-frame encoding 
  365.     int16_t (*b_bidir_forw_mv_table)[2]; ///< MV table (1MV per MB) bidir mode b-frame encoding 
  366.     int16_t (*b_bidir_back_mv_table)[2]; ///< MV table (1MV per MB) bidir mode b-frame encoding 
  367.     int16_t (*b_direct_mv_table)[2];     ///< MV table (1MV per MB) direct mode b-frame encoding 
  368.     int16_t (*p_field_mv_table[2][2])[2];   ///< MV table (2MV per MB) interlaced p-frame encoding
  369.     int16_t (*b_field_mv_table[2][2][2])[2];///< MV table (4MV per MB) interlaced b-frame encoding
  370.     uint8_t (*p_field_select_table[2]);
  371.     uint8_t (*b_field_select_table[2][2]);
  372.     int me_method;                       ///< ME algorithm 
  373.     int mv_dir;
  374. #define MV_DIR_BACKWARD  1
  375. #define MV_DIR_FORWARD   2
  376. #define MV_DIRECT        4 ///< bidirectional mode where the difference equals the MV of the last P/S/I-Frame (mpeg4)
  377.     int mv_type;
  378. #define MV_TYPE_16X16       0   ///< 1 vector for the whole mb 
  379. #define MV_TYPE_8X8         1   ///< 4 vectors (h263, mpeg4 4MV) 
  380. #define MV_TYPE_16X8        2   ///< 2 vectors, one per 16x8 block  
  381. #define MV_TYPE_FIELD       3   ///< 2 vectors, one per field  
  382. #define MV_TYPE_DMV         4   ///< 2 vectors, special mpeg2 Dual Prime Vectors 
  383.     /**motion vectors for a macroblock 
  384.        first coordinate : 0 = forward 1 = backward
  385.        second "         : depend on type
  386.        third  "         : 0 = x, 1 = y
  387.     */
  388.     int mv[2][4][2];
  389.     int field_select[2][2];
  390.     int last_mv[2][2][2];             ///< last MV, used for MV prediction in MPEG1 & B-frame MPEG4 
  391.     uint8_t *fcode_tab;               ///< smallest fcode needed for each MV 
  392.     
  393.     MotionEstContext me;
  394.     int no_rounding;  /**< apply no rounding to motion compensation (MPEG4, msmpeg4, ...) 
  395.                         for b-frames rounding mode is allways 0 */
  396.     int hurry_up;     /**< when set to 1 during decoding, b frames will be skipped
  397.                          when set to 2 idct/dequant will be skipped too */
  398.                         
  399.     /* macroblock layer */
  400.     int mb_x, mb_y;
  401.     int mb_skip_run;
  402.     int mb_intra;
  403.     uint16_t *mb_type;           ///< Table for candidate MB types for encoding
  404. #define CANDIDATE_MB_TYPE_INTRA    0x01
  405. #define CANDIDATE_MB_TYPE_INTER    0x02
  406. #define CANDIDATE_MB_TYPE_INTER4V  0x04
  407. #define CANDIDATE_MB_TYPE_SKIPPED   0x08
  408. //#define MB_TYPE_GMC      0x10
  409. #define CANDIDATE_MB_TYPE_DIRECT   0x10
  410. #define CANDIDATE_MB_TYPE_FORWARD  0x20
  411. #define CANDIDATE_MB_TYPE_BACKWARD 0x40
  412. #define CANDIDATE_MB_TYPE_BIDIR    0x80
  413. #define CANDIDATE_MB_TYPE_INTER_I    0x100
  414. #define CANDIDATE_MB_TYPE_FORWARD_I  0x200
  415. #define CANDIDATE_MB_TYPE_BACKWARD_I 0x400
  416. #define CANDIDATE_MB_TYPE_BIDIR_I    0x800
  417.     int block_index[6]; ///< index to current MB in block based arrays with edges
  418.     int block_wrap[6];
  419.     uint8_t *dest[3];
  420.     
  421.     int *mb_index2xy;        ///< mb_index -> mb_x + mb_y*mb_stride
  422.     /** matrix transmitted in the bitstream */
  423.     uint16_t intra_matrix[64];
  424.     uint16_t chroma_intra_matrix[64];
  425.     uint16_t inter_matrix[64];
  426.     uint16_t chroma_inter_matrix[64];
  427. #define QUANT_BIAS_SHIFT 8
  428.     int intra_quant_bias;    ///< bias for the quantizer 
  429.     int inter_quant_bias;    ///< bias for the quantizer 
  430.     int min_qcoeff;          ///< minimum encodable coefficient 
  431.     int max_qcoeff;          ///< maximum encodable coefficient 
  432.     int ac_esc_length;       ///< num of bits needed to encode the longest esc 
  433.     uint8_t *intra_ac_vlc_length;
  434.     uint8_t *intra_ac_vlc_last_length;
  435.     uint8_t *inter_ac_vlc_length;
  436.     uint8_t *inter_ac_vlc_last_length;
  437.     uint8_t *luma_dc_vlc_length;
  438.     uint8_t *chroma_dc_vlc_length;
  439. #define UNI_AC_ENC_INDEX(run,level) ((run)*128 + (level))
  440.     int coded_score[6];
  441.     /** precomputed matrix (combine qscale and DCT renorm) */
  442.     int (*q_intra_matrix)[64];
  443.     int (*q_inter_matrix)[64];
  444.     /** identical to the above but for MMX & these are not permutated, second 64 entries are bias*/
  445.     uint16_t (*q_intra_matrix16)[2][64];
  446.     uint16_t (*q_inter_matrix16)[2][64];
  447.     int block_last_index[12];  ///< last non zero coefficient in block
  448.     /* scantables */
  449.     ScanTable __align8 intra_scantable;
  450.     ScanTable intra_h_scantable;
  451.     ScanTable intra_v_scantable;
  452.     ScanTable inter_scantable; ///< if inter == intra then intra should be used to reduce tha cache usage
  453.     
  454.     /* noise reduction */
  455.     int (*dct_error_sum)[64];
  456.     int dct_count[2];
  457.     uint16_t (*dct_offset)[64];
  458.     void *opaque;              ///< private data for the user
  459.     /* bit rate control */
  460.     int64_t wanted_bits;
  461.     int64_t total_bits;
  462.     int frame_bits;                ///< bits used for the current frame 
  463.     RateControlContext rc_context; ///< contains stuff only accessed in ratecontrol.c
  464.     /* statistics, used for 2-pass encoding */
  465.     int mv_bits;
  466.     int header_bits;
  467.     int i_tex_bits;
  468.     int p_tex_bits;
  469.     int i_count;
  470.     int f_count;
  471.     int b_count;
  472.     int skip_count;
  473.     int misc_bits; ///< cbp, mb_type
  474.     int last_bits; ///< temp var used for calculating the above vars
  475.     
  476.     /* error concealment / resync */
  477.     int error_count;
  478.     uint8_t *error_status_table;       ///< table of the error status of each MB  
  479. #define VP_START            1          ///< current MB is the first after a resync marker 
  480. #define AC_ERROR            2
  481. #define DC_ERROR            4
  482. #define MV_ERROR            8
  483. #define AC_END              16
  484. #define DC_END              32
  485. #define MV_END              64
  486. //FIXME some prefix?
  487.     
  488.     int resync_mb_x;                 ///< x position of last resync marker 
  489.     int resync_mb_y;                 ///< y position of last resync marker 
  490.     GetBitContext last_resync_gb;    ///< used to search for the next resync marker 
  491.     int mb_num_left;                 ///< number of MBs left in this video packet (for partitioned Slices only)
  492.     int next_p_frame_damaged;        ///< set if the next p frame is damaged, to avoid showing trashed b frames 
  493.     int error_resilience;
  494.     
  495.     ParseContext parse_context;
  496.     /* H.263 specific */
  497.     int gob_index;
  498.     int obmc;                       ///< overlapped block motion compensation
  499.         
  500.     /* H.263+ specific */
  501.     int umvplus;                    ///< == H263+ && unrestricted_mv 
  502.     int h263_aic;                   ///< Advanded INTRA Coding (AIC) 
  503.     int h263_aic_dir;               ///< AIC direction: 0 = left, 1 = top
  504.     int h263_slice_structured;
  505.     int alt_inter_vlc;              ///< alternative inter vlc
  506.     int modified_quant;
  507.     int loop_filter;    
  508.     int custom_pcf;
  509.     
  510.     /* mpeg4 specific */
  511.     int time_increment_bits;        ///< number of bits to represent the fractional part of time 
  512.     int last_time_base;
  513.     int time_base;                  ///< time in seconds of last I,P,S Frame 
  514.     int64_t time;                   ///< time of current frame  
  515.     int64_t last_non_b_time;
  516.     uint16_t pp_time;               ///< time distance between the last 2 p,s,i frames 
  517.     uint16_t pb_time;               ///< time distance between the last b and p,s,i frame 
  518.     uint16_t pp_field_time;
  519.     uint16_t pb_field_time;         ///< like above, just for interlaced 
  520.     int shape;
  521.     int vol_sprite_usage;
  522.     int sprite_width;
  523.     int sprite_height;
  524.     int sprite_left;
  525.     int sprite_top;
  526.     int sprite_brightness_change;
  527.     int num_sprite_warping_points;
  528.     int real_sprite_warping_points;
  529.     int sprite_offset[2][2];         ///< sprite offset[isChroma][isMVY] 
  530.     int sprite_delta[2][2];          ///< sprite_delta [isY][isMVY]  
  531.     int sprite_shift[2];             ///< sprite shift [isChroma] 
  532.     int mcsel;
  533.     int quant_precision;
  534.     int quarter_sample;              ///< 1->qpel, 0->half pel ME/MC  
  535.     int scalability;
  536.     int hierachy_type;
  537.     int enhancement_type;
  538.     int new_pred;
  539.     int reduced_res_vop;
  540.     int aspect_ratio_info; //FIXME remove
  541.     int sprite_warping_accuracy;
  542.     int low_latency_sprite;
  543.     int data_partitioning;           ///< data partitioning flag from header 
  544.     int partitioned_frame;           ///< is current frame partitioned 
  545.     int rvlc;                        ///< reversible vlc 
  546.     int resync_marker;               ///< could this stream contain resync markers
  547.     int low_delay;                   ///< no reordering needed / has no b-frames 
  548.     int vo_type;
  549.     int vol_control_parameters;      ///< does the stream contain the low_delay flag, used to workaround buggy encoders 
  550.     int intra_dc_threshold;          ///< QP above whch the ac VLC should be used for intra dc 
  551.     PutBitContext tex_pb;            ///< used for data partitioned VOPs 
  552.     PutBitContext pb2;               ///< used for data partitioned VOPs 
  553.     int mpeg_quant;
  554.     int t_frame;                       ///< time distance of first I -> B, used for interlaced b frames 
  555.     int padding_bug_score;             ///< used to detect the VERY common padding bug in MPEG4 
  556.     /* divx specific, used to workaround (many) bugs in divx5 */
  557.     int divx_version;
  558.     int divx_build;
  559.     int divx_packed;
  560.     uint8_t *bitstream_buffer; //Divx 5.01 puts several frames in a single one, this is used to reorder them
  561.     int bitstream_buffer_size;
  562.     int allocated_bitstream_buffer_size;
  563.     
  564.     int xvid_build;
  565.     
  566.     /* lavc specific stuff, used to workaround bugs in libavcodec */
  567.     int lavc_build;
  568.     
  569.     /* RV10 specific */
  570.     int rv10_version; ///< RV10 version: 0 or 3 
  571.     int rv10_first_dc_coded[3];
  572.     
  573.     /* MJPEG specific */
  574.     struct MJpegContext *mjpeg_ctx;
  575.     int mjpeg_vsample[3];       ///< vertical sampling factors, default = {2, 1, 1} 
  576.     int mjpeg_hsample[3];       ///< horizontal sampling factors, default = {2, 1, 1} 
  577.     int mjpeg_write_tables;     ///< do we want to have quantisation- and huffmantables in the jpeg file ? 
  578.     int mjpeg_data_only_frames; ///< frames only with SOI, SOS and EOI markers 
  579.     /* MSMPEG4 specific */
  580.     int mv_table_index;
  581.     int rl_table_index;
  582.     int rl_chroma_table_index;
  583.     int dc_table_index;
  584.     int use_skip_mb_code;
  585.     int slice_height;      ///< in macroblocks 
  586.     int first_slice_line;  ///< used in mpeg4 too to handle resync markers 
  587.     int flipflop_rounding;
  588.     int msmpeg4_version;   ///< 0=not msmpeg4, 1=mp41, 2=mp42, 3=mp43/divx3 4=wmv1/7 5=wmv2/8
  589.     int per_mb_rl_table;
  590.     int esc3_level_length;
  591.     int esc3_run_length;
  592.     /** [mb_intra][isChroma][level][run][last] */
  593.     int (*ac_stats)[2][MAX_LEVEL+1][MAX_RUN+1][2];
  594.     int inter_intra_pred;
  595.     int mspel;
  596.     /* decompression specific */
  597.     GetBitContext gb;
  598.     /* Mpeg1 specific */
  599.     int gop_picture_number;  ///< index of the first picture of a GOP based on fake_pic_num & mpeg1 specific 
  600.     int last_mv_dir;         ///< last mv_dir, used for b frame encoding 
  601.     int broken_link;         ///< no_output_of_prior_pics_flag
  602.     uint8_t *vbv_delay_ptr;  ///< pointer to vbv_delay in the bitstream 
  603.     
  604.     /* MPEG2 specific - I wish I had not to support this mess. */
  605.     int progressive_sequence;
  606.     int mpeg_f_code[2][2];
  607.     int picture_structure;
  608. /* picture type */
  609. #define PICT_TOP_FIELD     1
  610. #define PICT_BOTTOM_FIELD  2
  611. #define PICT_FRAME         3
  612.     int intra_dc_precision;
  613.     int frame_pred_frame_dct;
  614.     int top_field_first;
  615.     int concealment_motion_vectors;
  616.     int q_scale_type;
  617.     int intra_vlc_format;
  618.     int alternate_scan;
  619.     int repeat_first_field;
  620.     int chroma_420_type;
  621.     int chroma_format;
  622. #define CHROMA_420 1
  623. #define CHROMA_422 2
  624. #define CHROMA_444 3
  625.     int chroma_x_shift;//depend on pix_format, that depend on chroma_format
  626.     int chroma_y_shift;
  627.     int progressive_frame;
  628.     int full_pel[2];
  629.     int interlaced_dct;
  630.     int first_slice;
  631.     int first_field;         ///< is 1 for the first field of a field picture 0 otherwise
  632.     /* RTP specific */
  633.     int rtp_mode;
  634.     
  635.     uint8_t *ptr_lastgob;
  636.     int swap_uv;//vcr2 codec is mpeg2 varint with UV swaped
  637.     short * pblocks[12];
  638.     
  639.     DCTELEM (*block)[64]; ///< points to one of the following blocks 
  640.     DCTELEM (*blocks)[6][64]; // for HQ mode we need to keep the best block
  641.     int (*decode_mb)(struct MpegEncContext *s, DCTELEM block[6][64]); // used by some codecs to avoid a switch()
  642. #define SLICE_OK         0
  643. #define SLICE_ERROR     -1
  644. #define SLICE_END       -2 ///<end marker found
  645. #define SLICE_NOEND     -3 ///<no end marker or error found but mb count exceeded
  646.     
  647.     void (*dct_unquantize_mpeg1_intra)(struct MpegEncContext *s, 
  648.                            DCTELEM *block/*align 16*/, int n, int qscale);
  649.     void (*dct_unquantize_mpeg1_inter)(struct MpegEncContext *s, 
  650.                            DCTELEM *block/*align 16*/, int n, int qscale);
  651.     void (*dct_unquantize_mpeg2_intra)(struct MpegEncContext *s, 
  652.                            DCTELEM *block/*align 16*/, int n, int qscale);
  653.     void (*dct_unquantize_mpeg2_inter)(struct MpegEncContext *s, 
  654.                            DCTELEM *block/*align 16*/, int n, int qscale);
  655.     void (*dct_unquantize_h263_intra)(struct MpegEncContext *s, 
  656.                            DCTELEM *block/*align 16*/, int n, int qscale);
  657.     void (*dct_unquantize_h263_inter)(struct MpegEncContext *s, 
  658.                            DCTELEM *block/*align 16*/, int n, int qscale);
  659.     void (*dct_unquantize_h261_intra)(struct MpegEncContext *s, 
  660.                            DCTELEM *block/*align 16*/, int n, int qscale);
  661.     void (*dct_unquantize_h261_inter)(struct MpegEncContext *s, 
  662.                            DCTELEM *block/*align 16*/, int n, int qscale);
  663.     void (*dct_unquantize_intra)(struct MpegEncContext *s, // unquantizer to use (mpeg4 can use both)
  664.                            DCTELEM *block/*align 16*/, int n, int qscale);
  665.     void (*dct_unquantize_inter)(struct MpegEncContext *s, // unquantizer to use (mpeg4 can use both)
  666.                            DCTELEM *block/*align 16*/, int n, int qscale);
  667.     int (*dct_quantize)(struct MpegEncContext *s, DCTELEM *block/*align 16*/, int n, int qscale, int *overflow);
  668.     int (*fast_dct_quantize)(struct MpegEncContext *s, DCTELEM *block/*align 16*/, int n, int qscale, int *overflow);
  669.     void (*denoise_dct)(struct MpegEncContext *s, DCTELEM *block);
  670. } MpegEncContext;
  671. int DCT_common_init(MpegEncContext *s);
  672. void MPV_decode_defaults(MpegEncContext *s);
  673. int MPV_common_init(MpegEncContext *s);
  674. void MPV_common_end(MpegEncContext *s);
  675. void MPV_decode_mb(MpegEncContext *s, DCTELEM block[12][64]);
  676. int MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx);
  677. void MPV_frame_end(MpegEncContext *s);
  678. int MPV_encode_init(AVCodecContext *avctx);
  679. int MPV_encode_end(AVCodecContext *avctx);
  680. int MPV_encode_picture(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data);
  681. #ifdef HAVE_MMX
  682. void MPV_common_init_mmx(MpegEncContext *s);
  683. #endif
  684. #ifdef ARCH_ALPHA
  685. void MPV_common_init_axp(MpegEncContext *s);
  686. #endif
  687. #ifdef HAVE_MLIB
  688. void MPV_common_init_mlib(MpegEncContext *s);
  689. #endif
  690. #ifdef HAVE_MMI
  691. void MPV_common_init_mmi(MpegEncContext *s);
  692. #endif
  693. #ifdef ARCH_ARMV4L
  694. void MPV_common_init_armv4l(MpegEncContext *s);
  695. #endif
  696. #ifdef ARCH_POWERPC
  697. void MPV_common_init_ppc(MpegEncContext *s);
  698. #endif
  699. extern void (*draw_edges)(uint8_t *buf, int wrap, int width, int height, int w);
  700. void ff_copy_bits(PutBitContext *pb, uint8_t *src, int length);
  701. void ff_clean_intra_table_entries(MpegEncContext *s);
  702. void ff_init_scantable(uint8_t *, ScanTable *st, const uint8_t *src_scantable);
  703. void ff_draw_horiz_band(MpegEncContext *s, int y, int h);
  704. void ff_emulated_edge_mc(uint8_t *buf, uint8_t *src, int linesize, int block_w, int block_h, 
  705.                                     int src_x, int src_y, int w, int h);
  706. #define END_NOT_FOUND -100
  707. int ff_combine_frame(ParseContext *pc, int next, uint8_t **buf, int *buf_size);
  708. void ff_parse_close(AVCodecParserContext *s);
  709. void ff_mpeg_flush(AVCodecContext *avctx);
  710. void ff_print_debug_info(MpegEncContext *s, AVFrame *pict);
  711. void ff_write_quant_matrix(PutBitContext *pb, int16_t *matrix);
  712. int ff_find_unused_picture(MpegEncContext *s, int shared);
  713. void ff_denoise_dct(MpegEncContext *s, DCTELEM *block);
  714. void ff_update_duplicate_context(MpegEncContext *dst, MpegEncContext *src);
  715. void ff_er_frame_start(MpegEncContext *s);
  716. void ff_er_frame_end(MpegEncContext *s);
  717. void ff_er_add_slice(MpegEncContext *s, int startx, int starty, int endx, int endy, int status);
  718. extern enum PixelFormat ff_yuv420p_list[2];
  719. void ff_init_block_index(MpegEncContext *s);
  720. static inline void ff_update_block_index(MpegEncContext *s){
  721.     const int block_size= 8>>s->avctx->lowres;
  722.     s->block_index[0]+=2;
  723.     s->block_index[1]+=2;
  724.     s->block_index[2]+=2;
  725.     s->block_index[3]+=2;
  726.     s->block_index[4]++;
  727.     s->block_index[5]++;
  728.     s->dest[0]+= 2*block_size;
  729.     s->dest[1]+= block_size;
  730.     s->dest[2]+= block_size;
  731. }
  732. static inline int get_bits_diff(MpegEncContext *s){
  733.     const int bits= put_bits_count(&s->pb);
  734.     const int last= s->last_bits;
  735.     s->last_bits = bits;
  736.     return bits - last;
  737. }
  738. /* motion_est.c */
  739. void ff_estimate_p_frame_motion(MpegEncContext * s,
  740.                              int mb_x, int mb_y);
  741. void ff_estimate_b_frame_motion(MpegEncContext * s,
  742.                              int mb_x, int mb_y);
  743. int ff_get_best_fcode(MpegEncContext * s, int16_t (*mv_table)[2], int type);
  744. void ff_fix_long_p_mvs(MpegEncContext * s);
  745. void ff_fix_long_mvs(MpegEncContext * s, uint8_t *field_select_table, int field_select,
  746.                      int16_t (*mv_table)[2], int f_code, int type, int truncate);
  747. void ff_init_me(MpegEncContext *s);
  748. int ff_pre_estimate_p_frame_motion(MpegEncContext * s, int mb_x, int mb_y);
  749. inline int ff_epzs_motion_search(MpegEncContext * s, int *mx_ptr, int *my_ptr,
  750.                              int P[10][2], int src_index, int ref_index, int16_t (*last_mv)[2], 
  751.                              int ref_mv_scale, int size, int h);                             
  752. int inline ff_get_mb_score(MpegEncContext * s, int mx, int my, int src_index,
  753.                                int ref_index, int size, int h, int add_rate);
  754. /* mpeg12.c */
  755. extern const int16_t ff_mpeg1_default_intra_matrix[64];
  756. extern const int16_t ff_mpeg1_default_non_intra_matrix[64];
  757. extern const uint8_t ff_mpeg1_dc_scale_table[128];
  758. void mpeg1_encode_picture_header(MpegEncContext *s, int picture_number);
  759. void mpeg1_encode_mb(MpegEncContext *s,
  760.                      DCTELEM block[6][64],
  761.                      int motion_x, int motion_y);
  762. void ff_mpeg1_encode_init(MpegEncContext *s);
  763. void ff_mpeg1_encode_slice_header(MpegEncContext *s);
  764. void ff_mpeg1_clean_buffers(MpegEncContext *s);
  765. int ff_mpeg1_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size);
  766. /** RLTable. */
  767. typedef struct RLTable {
  768.     int n;                         ///< number of entries of table_vlc minus 1 
  769.     int last;                      ///< number of values for last = 0 
  770.     const uint16_t (*table_vlc)[2];
  771.     const int8_t *table_run;
  772.     const int8_t *table_level;
  773.     uint8_t *index_run[2];         ///< encoding only 
  774.     int8_t *max_level[2];          ///< encoding & decoding 
  775.     int8_t *max_run[2];            ///< encoding & decoding 
  776.     VLC vlc;                       ///< decoding only deprected FIXME remove
  777.     RL_VLC_ELEM *rl_vlc[32];       ///< decoding only 
  778. } RLTable;
  779. void init_rl(RLTable *rl, int use_static);
  780. void init_vlc_rl(RLTable *rl, int use_static);
  781. static inline int get_rl_index(const RLTable *rl, int last, int run, int level)
  782. {
  783.     int index;
  784.     index = rl->index_run[last][run];
  785.     if (index >= rl->n)
  786.         return rl->n;
  787.     if (level > rl->max_level[last][run])
  788.         return rl->n;
  789.     return index + level - 1;
  790. }
  791. extern const uint8_t ff_mpeg4_y_dc_scale_table[32];
  792. extern const uint8_t ff_mpeg4_c_dc_scale_table[32];
  793. extern const uint8_t ff_aic_dc_scale_table[32];
  794. extern const int16_t ff_mpeg4_default_intra_matrix[64];
  795. extern const int16_t ff_mpeg4_default_non_intra_matrix[64];
  796. extern const uint8_t ff_h263_chroma_qscale_table[32];
  797. extern const uint8_t ff_h263_loop_filter_strength[32];
  798. /* h261.c */
  799. void ff_h261_loop_filter(MpegEncContext *s);
  800. void ff_h261_reorder_mb_index(MpegEncContext* s);
  801. void ff_h261_encode_mb(MpegEncContext *s,
  802.                     DCTELEM block[6][64],
  803.                     int motion_x, int motion_y);
  804. void ff_h261_encode_picture_header(MpegEncContext * s, int picture_number);
  805. void ff_h261_encode_init(MpegEncContext *s);
  806. /* h263.c, h263dec.c */
  807. int ff_h263_decode_init(AVCodecContext *avctx);
  808. int ff_h263_decode_frame(AVCodecContext *avctx, 
  809.                              void *data, int *data_size,
  810.                              uint8_t *buf, int buf_size);
  811. int ff_h263_decode_end(AVCodecContext *avctx);
  812. void h263_encode_mb(MpegEncContext *s, 
  813.                     DCTELEM block[6][64],
  814.                     int motion_x, int motion_y);
  815. void mpeg4_encode_mb(MpegEncContext *s, 
  816.                     DCTELEM block[6][64],
  817.                     int motion_x, int motion_y);
  818. void h263_encode_picture_header(MpegEncContext *s, int picture_number);
  819. void ff_flv_encode_picture_header(MpegEncContext *s, int picture_number);
  820. void h263_encode_gob_header(MpegEncContext * s, int mb_line);
  821. int16_t *h263_pred_motion(MpegEncContext * s, int block, int dir,
  822.                         int *px, int *py);
  823. void mpeg4_pred_ac(MpegEncContext * s, DCTELEM *block, int n, 
  824.                    int dir);
  825. void ff_set_mpeg4_time(MpegEncContext * s, int picture_number);
  826. void mpeg4_encode_picture_header(MpegEncContext *s, int picture_number);
  827. void h263_encode_init(MpegEncContext *s);
  828. void h263_decode_init_vlc(MpegEncContext *s);
  829. int h263_decode_picture_header(MpegEncContext *s);
  830. int ff_h263_decode_gob_header(MpegEncContext *s);
  831. int ff_mpeg4_decode_picture_header(MpegEncContext * s, GetBitContext *gb);
  832. void ff_h263_update_motion_val(MpegEncContext * s);
  833. void ff_h263_loop_filter(MpegEncContext * s);
  834. void ff_set_qscale(MpegEncContext * s, int qscale);
  835. int ff_h263_decode_mba(MpegEncContext *s);
  836. void ff_h263_encode_mba(MpegEncContext *s);
  837. int intel_h263_decode_picture_header(MpegEncContext *s);
  838. int flv_h263_decode_picture_header(MpegEncContext *s);
  839. int ff_h263_decode_mb(MpegEncContext *s,
  840.                       DCTELEM block[6][64]);
  841. int ff_mpeg4_decode_mb(MpegEncContext *s,
  842.                       DCTELEM block[6][64]);
  843. int h263_get_picture_format(int width, int height);
  844. void ff_mpeg4_encode_video_packet_header(MpegEncContext *s);
  845. void ff_mpeg4_clean_buffers(MpegEncContext *s);
  846. void ff_mpeg4_stuffing(PutBitContext * pbc);
  847. void ff_mpeg4_init_partitions(MpegEncContext *s);
  848. void ff_mpeg4_merge_partitions(MpegEncContext *s);
  849. void ff_clean_mpeg4_qscales(MpegEncContext *s);
  850. void ff_clean_h263_qscales(MpegEncContext *s);
  851. int ff_mpeg4_decode_partitions(MpegEncContext *s);
  852. int ff_mpeg4_get_video_packet_prefix_length(MpegEncContext *s);
  853. int ff_h263_resync(MpegEncContext *s);
  854. int ff_h263_get_gob_height(MpegEncContext *s);
  855. int ff_mpeg4_set_direct_mv(MpegEncContext *s, int mx, int my);
  856. int ff_h263_round_chroma(int x);
  857. void ff_h263_encode_motion(MpegEncContext * s, int val, int f_code);
  858. int ff_mpeg4_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size);
  859. /* rv10.c */
  860. void rv10_encode_picture_header(MpegEncContext *s, int picture_number);
  861. int rv_decode_dc(MpegEncContext *s, int n);
  862. void rv20_encode_picture_header(MpegEncContext *s, int picture_number);
  863. /* msmpeg4.c */
  864. void msmpeg4_encode_picture_header(MpegEncContext * s, int picture_number);
  865. void msmpeg4_encode_ext_header(MpegEncContext * s);
  866. void msmpeg4_encode_mb(MpegEncContext * s, 
  867.                        DCTELEM block[6][64],
  868.                        int motion_x, int motion_y);
  869. int msmpeg4_decode_picture_header(MpegEncContext * s);
  870. int msmpeg4_decode_ext_header(MpegEncContext * s, int buf_size);
  871. int ff_msmpeg4_decode_init(MpegEncContext *s);
  872. void ff_msmpeg4_encode_init(MpegEncContext *s);
  873. int ff_wmv2_decode_picture_header(MpegEncContext * s);
  874. int ff_wmv2_decode_secondary_picture_header(MpegEncContext * s);
  875. void ff_wmv2_add_mb(MpegEncContext *s, DCTELEM block[6][64], uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr);
  876. void ff_mspel_motion(MpegEncContext *s,
  877.                                uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  878.                                uint8_t **ref_picture, op_pixels_func (*pix_op)[4],
  879.                                int motion_x, int motion_y, int h);
  880. int ff_wmv2_encode_picture_header(MpegEncContext * s, int picture_number);
  881. void ff_wmv2_encode_mb(MpegEncContext * s, 
  882.                        DCTELEM block[6][64],
  883.                        int motion_x, int motion_y);
  884. /* mjpeg.c */
  885. int mjpeg_init(MpegEncContext *s);
  886. void mjpeg_close(MpegEncContext *s);
  887. void mjpeg_encode_mb(MpegEncContext *s, 
  888.                      DCTELEM block[6][64]);
  889. void mjpeg_picture_header(MpegEncContext *s);
  890. void mjpeg_picture_trailer(MpegEncContext *s);
  891. void ff_mjpeg_stuffing(PutBitContext * pbc);
  892. /* rate control */
  893. int ff_rate_control_init(MpegEncContext *s);
  894. float ff_rate_estimate_qscale(MpegEncContext *s);
  895. void ff_write_pass1_stats(MpegEncContext *s);
  896. void ff_rate_control_uninit(MpegEncContext *s);
  897. double ff_eval(char *s, double *const_value, const char **const_name,
  898.                double (**func1)(void *, double), const char **func1_name,
  899.                double (**func2)(void *, double, double), char **func2_name,
  900.                void *opaque);
  901. int ff_vbv_update(MpegEncContext *s, int frame_size);
  902. #endif /* AVCODEC_MPEGVIDEO_H */