Mercurial > libavcodec.hg
annotate mpegvideo.h @ 329:5cc47d0ba53e libavcodec
fixed ratecontrol & b-frames
2pass ratecontrol
fixed hq with 2pass
inceased build num (a few more vars for the rc stuff)
hopefully no new bugs
| author | michaelni |
|---|---|
| date | Sun, 21 Apr 2002 21:18:17 +0000 |
| parents | d359db02fc90 |
| children | 8aa87f1dfc52 |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2 * Generic DCT based hybrid video encoder | |
| 3 * Copyright (c) 2000,2001 Gerard Lantau. | |
| 4 * | |
| 5 * This program is free software; you can redistribute it and/or modify | |
| 6 * it under the terms of the GNU General Public License as published by | |
| 7 * the Free Software Foundation; either version 2 of the License, or | |
| 8 * (at your option) any later version. | |
| 9 * | |
| 10 * This program is distributed in the hope that it will be useful, | |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 * GNU General Public License for more details. | |
| 14 * | |
| 15 * You should have received a copy of the GNU General Public License | |
| 16 * along with this program; if not, write to the Free Software | |
| 17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
| 18 */ | |
| 19 | |
| 20 /* Macros for picture code type. */ | |
| 21 #define I_TYPE 1 | |
| 22 #define P_TYPE 2 | |
| 23 #define B_TYPE 3 | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
248
diff
changeset
|
24 #define S_TYPE 4 //S(GMC)-VOP MPEG4 |
| 0 | 25 |
| 26 enum OutputFormat { | |
| 27 FMT_MPEG1, | |
| 28 FMT_H263, | |
| 324 | 29 FMT_MJPEG, |
| 0 | 30 }; |
| 31 | |
| 32 #define MPEG_BUF_SIZE (16 * 1024) | |
| 33 | |
| 220 | 34 #define QMAT_SHIFT_MMX 19 |
| 35 #define QMAT_SHIFT 25 | |
| 36 | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
268
diff
changeset
|
37 #define MAX_FCODE 7 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
268
diff
changeset
|
38 #define MAX_MV 2048 |
| 324 | 39 #define REORDER_BUFFER_SIZE (FF_MAX_B_FRAMES+2) |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
268
diff
changeset
|
40 |
| 268 | 41 typedef struct Predictor{ |
| 42 double coeff; | |
| 43 double count; | |
| 44 double decay; | |
| 45 } Predictor; | |
| 46 | |
| 329 | 47 typedef struct RateControlEntry{ |
| 48 int pict_type; | |
| 49 int qscale; | |
| 50 int mv_bits; | |
| 51 int i_tex_bits; | |
| 52 int p_tex_bits; | |
| 53 int misc_bits; | |
| 54 uint64_t expected_bits; | |
| 55 int new_pict_type; | |
| 56 float new_qscale; | |
| 57 }RateControlEntry; | |
| 58 | |
| 59 typedef struct RateControlContext{ | |
| 60 FILE *stats_file; | |
| 61 int num_entries; | |
| 62 RateControlEntry *entry; | |
| 63 }RateControlContext; | |
| 64 | |
| 324 | 65 typedef struct ReorderBuffer{ |
| 66 UINT8 *picture[3]; | |
| 67 int pict_type; | |
| 68 int qscale; | |
| 69 int force_type; | |
| 70 int picture_number; | |
| 71 int picture_in_gop_number; | |
| 72 } ReorderBuffer; | |
| 73 | |
| 0 | 74 typedef struct MpegEncContext { |
| 71 | 75 struct AVCodecContext *avctx; |
| 0 | 76 /* the following parameters must be initialized before encoding */ |
| 77 int width, height; /* picture size. must be a multiple of 16 */ | |
| 78 int gop_size; | |
| 79 int frame_rate; /* number of frames per second */ | |
| 80 int intra_only; /* if true, only intra pictures are generated */ | |
| 81 int bit_rate; /* wanted bit rate */ | |
| 268 | 82 int bit_rate_tolerance; /* amount of +- bits (>0)*/ |
| 0 | 83 enum OutputFormat out_format; /* output format */ |
| 84 int h263_plus; /* h263 plus headers */ | |
| 85 int h263_rv10; /* use RV10 variation for H263 */ | |
| 71 | 86 int h263_pred; /* use mpeg4/h263 ac/dc predictions */ |
| 0 | 87 int h263_msmpeg4; /* generate MSMPEG4 compatible stream */ |
| 88 int h263_intel; /* use I263 intel h263 header */ | |
| 89 int fixed_qscale; /* fixed qscale if non zero */ | |
| 268 | 90 float qcompress; /* amount of qscale change between easy & hard scenes (0.0-1.0) */ |
| 91 float qblur; /* amount of qscale smoothing over time (0.0-1.0) */ | |
| 92 int qmin; /* min qscale */ | |
| 93 int qmax; /* max qscale */ | |
| 94 int max_qdiff; /* max qscale difference between frames */ | |
|
7
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
95 int encoding; /* true if we are encoding (vs decoding) */ |
| 294 | 96 int flags; /* AVCodecContext.flags (HQ, MV4, ...) */ |
| 324 | 97 int force_input_type;/* 0= no force, otherwise I_TYPE, P_TYPE, ... */ |
| 98 int max_b_frames; /* max number of b-frames for encoding */ | |
| 329 | 99 float b_quant_factor;/* qscale factor between ips and b frames */ |
| 100 int rc_strategy; | |
| 101 int b_frame_strategy; | |
| 0 | 102 /* the following fields are managed internally by the encoder */ |
| 103 | |
| 104 /* bit output */ | |
| 105 PutBitContext pb; | |
| 106 | |
| 107 /* sequence parameters */ | |
| 108 int context_initialized; | |
| 324 | 109 int input_picture_number; |
| 110 int input_picture_in_gop_number; /* 0-> first pic in gop, ... */ | |
| 0 | 111 int picture_number; |
| 112 int fake_picture_number; /* picture number at the bitstream frame rate */ | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
268
diff
changeset
|
113 int gop_picture_number; /* index of the first picture of a GOP based on fake_pic_num & mpeg1 specific */ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
268
diff
changeset
|
114 int picture_in_gop_number; /* 0-> first pic in gop, ... */ |
| 324 | 115 int b_frames_since_non_b; /* used for encoding, relative to not yet reordered input */ |
| 116 int mb_width, mb_height; /* number of MBs horizontally & vertically */ | |
|
233
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
117 int mb_num; /* number of MBs of a picture */ |
| 0 | 118 int linesize; /* line size, in bytes, may be different from width */ |
| 119 UINT8 *new_picture[3]; /* picture to be compressed */ | |
| 324 | 120 UINT8 *picture_buffer[REORDER_BUFFER_SIZE][3]; /* internal buffers used for reordering of input pictures */ |
| 121 int picture_buffer_index; | |
| 122 ReorderBuffer coded_order[REORDER_BUFFER_SIZE]; | |
| 123 UINT8 *last_picture[3]; /* previous picture */ | |
| 0 | 124 UINT8 *last_picture_base[3]; /* real start of the picture */ |
| 324 | 125 UINT8 *next_picture[3]; /* previous picture (for bidir pred) */ |
| 0 | 126 UINT8 *next_picture_base[3]; /* real start of the picture */ |
| 324 | 127 UINT8 *aux_picture[3]; /* aux picture (for B frames only) */ |
| 128 UINT8 *aux_picture_base[3]; /* real start of the picture */ | |
| 129 UINT8 *current_picture[3]; /* buffer to store the decompressed current picture */ | |
| 130 int last_dc[3]; /* last DC values for MPEG1 */ | |
| 131 INT16 *dc_val[3]; /* used for mpeg4 DC prediction, all 3 arrays must be continuous */ | |
| 0 | 132 int y_dc_scale, c_dc_scale; |
| 324 | 133 UINT8 *coded_block; /* used for coded block pattern prediction (msmpeg4v3, wmv1)*/ |
| 134 INT16 (*ac_val[3])[16]; /* used for for mpeg4 AC prediction, all 3 arrays must be continuous */ | |
| 0 | 135 int ac_pred; |
|
7
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
0
diff
changeset
|
136 int mb_skiped; /* MUST BE SET only during DECODING */ |
| 324 | 137 UINT8 *mbskip_table; /* used to avoid copy if macroblock skipped (for black regions for example) |
| 138 and used for b-frame encoding & decoding (contains skip table of next P Frame) */ | |
| 139 UINT8 *mbintra_table; /* used to avoid setting {ac, dc, cbp}-pred stuff to zero on inter MB decoding */ | |
| 0 | 140 |
| 324 | 141 int input_qscale; /* qscale prior to reordering of frames */ |
| 142 int input_pict_type; /* pict_type prior to reordering of frames */ | |
| 143 int force_type; /* 0= no force, otherwise I_TYPE, P_TYPE, ... */ | |
| 144 int qscale; /* QP */ | |
| 329 | 145 int last_non_b_qscale; /* QP of last non b frame used for b frame qscale*/ |
| 324 | 146 int pict_type; /* I_TYPE, P_TYPE, B_TYPE, ... */ |
| 329 | 147 int last_non_b_pict_type; /* used for mpeg4 gmc b-frames & ratecontrol */ |
| 0 | 148 int frame_rate_index; |
| 149 /* motion compensation */ | |
| 150 int unrestricted_mv; | |
| 151 int h263_long_vectors; /* use horrible h263v1 long vector mode */ | |
| 152 | |
| 324 | 153 int f_code; /* forward MV resolution */ |
| 154 int b_code; /* backward MV resolution for B Frames (mpeg4) */ | |
| 155 INT16 (*motion_val)[2]; /* used for MV prediction (4MV per MB) */ | |
| 156 INT16 (*p_mv_table)[2]; /* MV table (1MV per MB) p-frame encoding */ | |
| 157 INT16 (*last_p_mv_table)[2]; /* MV table (1MV per MB) p-frame encoding */ | |
| 158 INT16 (*b_forw_mv_table)[2]; /* MV table (1MV per MB) forward mode b-frame encoding */ | |
| 159 INT16 (*b_back_mv_table)[2]; /* MV table (1MV per MB) backward mode b-frame encoding */ | |
| 160 INT16 (*b_bidir_forw_mv_table)[2]; /* MV table (1MV per MB) bidir mode b-frame encoding */ | |
| 161 INT16 (*b_bidir_back_mv_table)[2]; /* MV table (1MV per MB) bidir mode b-frame encoding */ | |
| 162 INT16 (*b_direct_forw_mv_table)[2];/* MV table (1MV per MB) direct mode b-frame encoding */ | |
| 163 INT16 (*b_direct_back_mv_table)[2];/* MV table (1MV per MB) direct mode b-frame encoding */ | |
| 164 INT16 (*b_direct_mv_table)[2]; /* MV table (1MV per MB) direct mode b-frame encoding */ | |
| 327 | 165 int me_method; /* ME algorithm */ |
| 166 uint8_t *me_scratchpad; /* data area for the me algo, so that the ME doesnt need to malloc/free */ | |
| 0 | 167 int mv_dir; |
| 168 #define MV_DIR_BACKWARD 1 | |
| 169 #define MV_DIR_FORWARD 2 | |
| 262 | 170 #define MV_DIRECT 4 // bidirectional mode where the difference equals the MV of the last P/S/I-Frame (mpeg4) |
| 0 | 171 int mv_type; |
| 172 #define MV_TYPE_16X16 0 /* 1 vector for the whole mb */ | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
268
diff
changeset
|
173 #define MV_TYPE_8X8 1 /* 4 vectors (h263, mpeg4 4MV) */ |
| 0 | 174 #define MV_TYPE_16X8 2 /* 2 vectors, one per 16x8 block */ |
| 175 #define MV_TYPE_FIELD 3 /* 2 vectors, one per field */ | |
| 176 #define MV_TYPE_DMV 4 /* 2 vectors, special mpeg2 Dual Prime Vectors */ | |
| 177 /* motion vectors for a macroblock | |
| 178 first coordinate : 0 = forward 1 = backward | |
| 179 second " : depend on type | |
| 180 third " : 0 = x, 1 = y | |
| 181 */ | |
| 182 int mv[2][4][2]; | |
| 183 int field_select[2][2]; | |
| 324 | 184 int last_mv[2][2][2]; /* last MV, used for MV prediction in MPEG1 & B-frame MPEG4 */ |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
268
diff
changeset
|
185 UINT16 (*mv_penalty)[MAX_MV*2+1]; /* amount of bits needed to encode a MV, used for ME */ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
268
diff
changeset
|
186 UINT8 *fcode_tab; /* smallest fcode needed for each MV */ |
| 0 | 187 |
| 188 int has_b_frames; | |
| 327 | 189 int no_rounding; /* apply no rounding to motion compensation (MPEG4, msmpeg4, ...) |
| 190 for b-frames rounding mode is allways 0 */ | |
| 0 | 191 |
| 192 /* macroblock layer */ | |
| 193 int mb_x, mb_y; | |
| 194 int mb_incr; | |
| 195 int mb_intra; | |
| 294 | 196 UINT16 *mb_var; /* Table for MB variances */ |
| 197 UINT8 *mb_type; /* Table for MB type */ | |
| 198 #define MB_TYPE_INTRA 0x01 | |
| 199 #define MB_TYPE_INTER 0x02 | |
| 200 #define MB_TYPE_INTER4V 0x04 | |
| 201 #define MB_TYPE_SKIPED 0x08 | |
| 202 #define MB_TYPE_DIRECT 0x10 | |
| 203 #define MB_TYPE_FORWARD 0x20 | |
| 324 | 204 #define MB_TYPE_BACKWARD 0x40 |
| 294 | 205 #define MB_TYPE_BIDIR 0x80 |
| 266 | 206 |
| 324 | 207 int block_index[6]; /* index to current MB in block based arrays with edges*/ |
| 266 | 208 int block_wrap[6]; |
| 209 | |
| 0 | 210 /* matrix transmitted in the bitstream */ |
| 211 UINT16 intra_matrix[64]; | |
| 212 UINT16 chroma_intra_matrix[64]; | |
| 213 UINT16 non_intra_matrix[64]; | |
| 214 UINT16 chroma_non_intra_matrix[64]; | |
| 215 /* precomputed matrix (combine qscale and DCT renorm) */ | |
| 216 int q_intra_matrix[64]; | |
| 217 int q_non_intra_matrix[64]; | |
| 220 | 218 /* identical to the above but for MMX & these are not permutated */ |
| 329 | 219 UINT16 __align8 q_intra_matrix16[64]; |
| 220 | 220 UINT16 __align8 q_non_intra_matrix16[64]; |
| 0 | 221 int block_last_index[6]; /* last non zero coefficient in block */ |
| 222 | |
| 223 void *opaque; /* private data for the user */ | |
| 224 | |
| 225 /* bit rate control */ | |
| 324 | 226 int I_frame_bits; //FIXME used in mpeg12 ... |
|
233
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
227 int avg_mb_var; /* average MB variance for current frame */ |
| 329 | 228 int mc_mb_var; /* motion compensated MB variance for current frame */ |
| 229 int last_non_b_mc_mb_var;/* motion compensated MB variance for last non b frame */ | |
| 64 | 230 INT64 wanted_bits; |
| 231 INT64 total_bits; | |
| 329 | 232 int frame_bits; /* bits used for the current frame */ |
| 233 int pb_frame_bits; /* bits of the last b...bp group */ | |
| 268 | 234 Predictor i_pred; |
| 235 Predictor p_pred; | |
| 236 double qsum; /* sum of qscales */ | |
| 237 double qcount; /* count of qscales */ | |
| 238 double short_term_qsum; /* sum of recent qscales */ | |
| 239 double short_term_qcount; /* count of recent qscales */ | |
| 329 | 240 RateControlContext rc_context; |
| 268 | 241 |
| 286 | 242 /* statistics, used for 2-pass encoding */ |
| 243 int mv_bits; | |
| 244 int header_bits; | |
| 245 int i_tex_bits; | |
| 246 int p_tex_bits; | |
| 247 int i_count; | |
| 248 int p_count; | |
| 249 int skip_count; | |
| 250 int misc_bits; // cbp, mb_type | |
| 251 int last_bits; //temp var used for calculating the above vars | |
| 252 | |
|
154
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
151
diff
changeset
|
253 /* H.263 specific */ |
|
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
151
diff
changeset
|
254 int gob_number; |
| 162 | 255 int gob_index; |
|
154
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
151
diff
changeset
|
256 int first_gob_line; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
243
diff
changeset
|
257 |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
71
diff
changeset
|
258 /* H.263+ specific */ |
|
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
71
diff
changeset
|
259 int umvplus; |
|
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
71
diff
changeset
|
260 int umvplus_dec; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
243
diff
changeset
|
261 int h263_aic; /* Advanded INTRA Coding (AIC) */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
243
diff
changeset
|
262 int h263_aic_dir; /* AIC direction: 0 = left, 1 = top */ |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
71
diff
changeset
|
263 |
| 0 | 264 /* mpeg4 specific */ |
| 262 | 265 int time_increment_resolution; |
| 324 | 266 int time_increment_bits; /* number of bits to represent the fractional part of time */ |
| 267 int last_time_base; | |
| 268 int time_base; /* time in seconds of last I,P,S Frame */ | |
| 269 int64_t time; /* time of current frame */ | |
| 270 int64_t last_non_b_time; | |
| 271 uint16_t pp_time; /* time distance between the last 2 p,s,i frames */ | |
| 272 uint16_t bp_time; /* time distance between the last b and p,s,i frame */ | |
| 64 | 273 int shape; |
| 274 int vol_sprite_usage; | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
248
diff
changeset
|
275 int sprite_width; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
248
diff
changeset
|
276 int sprite_height; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
248
diff
changeset
|
277 int sprite_left; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
248
diff
changeset
|
278 int sprite_top; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
248
diff
changeset
|
279 int sprite_brightness_change; |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
280 int num_sprite_warping_points; |
| 255 | 281 int real_sprite_warping_points; |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
282 int sprite_offset[2][2]; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
283 int sprite_delta[2][2][2]; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
284 int sprite_shift[2][2]; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
285 int mcsel; |
| 64 | 286 int quant_precision; |
| 324 | 287 int quarter_sample; /* 1->qpel, 0->half pel ME/MC */ |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
248
diff
changeset
|
288 int scalability; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
248
diff
changeset
|
289 int new_pred; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
248
diff
changeset
|
290 int reduced_res_vop; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
248
diff
changeset
|
291 int aspect_ratio_info; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
248
diff
changeset
|
292 int sprite_warping_accuracy; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
248
diff
changeset
|
293 int low_latency_sprite; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
248
diff
changeset
|
294 int data_partioning; |
| 290 | 295 int resync_marker; |
| 296 int resync_x_pos; | |
| 255 | 297 |
| 298 /* divx specific, used to workaround (many) bugs in divx5 */ | |
| 299 int divx_version; | |
| 300 int divx_build; | |
| 301 | |
| 0 | 302 /* RV10 specific */ |
| 303 int rv10_version; /* RV10 version: 0 or 3 */ | |
| 304 int rv10_first_dc_coded[3]; | |
| 305 | |
| 306 /* MJPEG specific */ | |
| 307 struct MJpegContext *mjpeg_ctx; | |
| 229 | 308 int mjpeg_vsample[3]; /* vertical sampling factors, default = {2, 1, 1} */ |
| 309 int mjpeg_hsample[3]; /* horizontal sampling factors, default = {2, 1, 1} */ | |
| 310 int mjpeg_write_tables; /* do we want to have quantisation- and | |
| 311 huffmantables in the jpeg file ? */ | |
| 0 | 312 |
| 313 /* MSMPEG4 specific */ | |
| 314 int mv_table_index; | |
| 315 int rl_table_index; | |
| 316 int rl_chroma_table_index; | |
| 317 int dc_table_index; | |
| 318 int use_skip_mb_code; | |
| 319 int slice_height; /* in macroblocks */ | |
| 290 | 320 int first_slice_line; /* used in mpeg4 too to handle resync markers */ |
| 208 | 321 int flipflop_rounding; |
| 322 int bitrate; | |
| 307 | 323 int msmpeg4_version; /* 1=mp41, 2=mp42, 3=mp43/divx3 */ |
| 0 | 324 /* decompression specific */ |
| 325 GetBitContext gb; | |
| 326 | |
| 327 /* MPEG2 specific - I wish I had not to support this mess. */ | |
| 328 int progressive_sequence; | |
| 329 int mpeg_f_code[2][2]; | |
| 330 int picture_structure; | |
| 331 /* picture type */ | |
| 332 #define PICT_TOP_FIELD 1 | |
| 333 #define PICT_BOTTOM_FIELD 2 | |
| 334 #define PICT_FRAME 3 | |
| 335 | |
| 336 int intra_dc_precision; | |
| 337 int frame_pred_frame_dct; | |
| 338 int top_field_first; | |
| 339 int concealment_motion_vectors; | |
| 340 int q_scale_type; | |
| 341 int intra_vlc_format; | |
| 342 int alternate_scan; | |
| 343 int repeat_first_field; | |
| 344 int chroma_420_type; | |
| 345 int progressive_frame; | |
| 346 int mpeg2; | |
| 347 int full_pel[2]; | |
| 348 int interlaced_dct; | |
| 349 int last_qscale; | |
| 350 int first_slice; | |
| 162 | 351 |
| 352 /* RTP specific */ | |
| 231 | 353 /* These are explained on avcodec.h */ |
| 162 | 354 int rtp_mode; |
| 355 int rtp_payload_size; | |
| 231 | 356 void (*rtp_callback)(void *data, int size, int packet_number); |
| 162 | 357 UINT8 *ptr_lastgob; |
| 358 UINT8 *ptr_last_mb_line; | |
| 359 UINT32 mb_line_avgsize; | |
| 360 | |
| 294 | 361 DCTELEM (*block)[64]; /* points to one of the following blocks */ |
| 327 | 362 DCTELEM blocks[2][6][64] __align8; // for HQ mode we need to keep the best block |
| 325 | 363 void (*dct_unquantize_mpeg1)(struct MpegEncContext *s, |
| 364 DCTELEM *block, int n, int qscale); | |
| 365 void (*dct_unquantize_mpeg2)(struct MpegEncContext *s, | |
| 312 | 366 DCTELEM *block, int n, int qscale); |
| 367 void (*dct_unquantize_h263)(struct MpegEncContext *s, | |
| 368 DCTELEM *block, int n, int qscale); | |
| 369 void (*dct_unquantize)(struct MpegEncContext *s, // unquantizer to use (mpeg4 can use both) | |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
7
diff
changeset
|
370 DCTELEM *block, int n, int qscale); |
| 0 | 371 } MpegEncContext; |
| 372 | |
| 373 int MPV_common_init(MpegEncContext *s); | |
| 374 void MPV_common_end(MpegEncContext *s); | |
| 375 void MPV_decode_mb(MpegEncContext *s, DCTELEM block[6][64]); | |
| 376 void MPV_frame_start(MpegEncContext *s); | |
| 377 void MPV_frame_end(MpegEncContext *s); | |
|
13
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
7
diff
changeset
|
378 #ifdef HAVE_MMX |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
7
diff
changeset
|
379 void MPV_common_init_mmx(MpegEncContext *s); |
|
174ef88f619a
use block[] in structure to have it aligned on 8 bytes for mmx optimizations - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263
glantau
parents:
7
diff
changeset
|
380 #endif |
| 0 | 381 |
| 382 /* motion_est.c */ | |
| 324 | 383 void ff_estimate_p_frame_motion(MpegEncContext * s, |
| 384 int mb_x, int mb_y); | |
| 385 void ff_estimate_b_frame_motion(MpegEncContext * s, | |
| 386 int mb_x, int mb_y); | |
| 387 int ff_get_best_fcode(MpegEncContext * s, int16_t (*mv_table)[2], int type); | |
| 388 void ff_fix_long_p_mvs(MpegEncContext * s); | |
| 389 void ff_fix_long_b_mvs(MpegEncContext * s, int16_t (*mv_table)[2], int f_code, int type); | |
| 0 | 390 |
| 391 /* mpeg12.c */ | |
| 41 | 392 extern INT16 default_intra_matrix[64]; |
| 393 extern INT16 default_non_intra_matrix[64]; | |
| 0 | 394 |
| 395 void mpeg1_encode_picture_header(MpegEncContext *s, int picture_number); | |
| 396 void mpeg1_encode_mb(MpegEncContext *s, | |
| 397 DCTELEM block[6][64], | |
| 398 int motion_x, int motion_y); | |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
399 void mpeg1_encode_init(MpegEncContext *s); |
| 0 | 400 |
| 401 /* h263enc.c */ | |
| 402 | |
| 403 /* run length table */ | |
| 404 #define MAX_RUN 64 | |
| 405 #define MAX_LEVEL 64 | |
| 406 | |
| 407 typedef struct RLTable { | |
| 408 int n; /* number of entries of table_vlc minus 1 */ | |
| 409 int last; /* number of values for last = 0 */ | |
| 410 const UINT16 (*table_vlc)[2]; | |
| 411 const INT8 *table_run; | |
| 412 const INT8 *table_level; | |
| 413 UINT8 *index_run[2]; /* encoding only */ | |
| 414 INT8 *max_level[2]; /* encoding & decoding */ | |
| 415 INT8 *max_run[2]; /* encoding & decoding */ | |
| 416 VLC vlc; /* decoding only */ | |
| 417 } RLTable; | |
| 418 | |
| 419 void init_rl(RLTable *rl); | |
| 420 void init_vlc_rl(RLTable *rl); | |
| 421 | |
| 243 | 422 static inline int get_rl_index(const RLTable *rl, int last, int run, int level) |
| 0 | 423 { |
| 424 int index; | |
| 425 index = rl->index_run[last][run]; | |
| 426 if (index >= rl->n) | |
| 427 return rl->n; | |
| 428 if (level > rl->max_level[last][run]) | |
| 429 return rl->n; | |
| 430 return index + level - 1; | |
| 431 } | |
| 432 | |
| 433 void h263_encode_mb(MpegEncContext *s, | |
| 434 DCTELEM block[6][64], | |
| 435 int motion_x, int motion_y); | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
262
diff
changeset
|
436 void mpeg4_encode_mb(MpegEncContext *s, |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
262
diff
changeset
|
437 DCTELEM block[6][64], |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
262
diff
changeset
|
438 int motion_x, int motion_y); |
| 0 | 439 void h263_encode_picture_header(MpegEncContext *s, int picture_number); |
| 162 | 440 int h263_encode_gob_header(MpegEncContext * s, int mb_line); |
| 0 | 441 void h263_dc_scale(MpegEncContext *s); |
| 442 INT16 *h263_pred_motion(MpegEncContext * s, int block, | |
| 443 int *px, int *py); | |
| 444 void mpeg4_pred_ac(MpegEncContext * s, INT16 *block, int n, | |
| 445 int dir); | |
| 327 | 446 void ff_set_mpeg4_time(MpegEncContext * s, int picture_number); |
| 0 | 447 void mpeg4_encode_picture_header(MpegEncContext *s, int picture_number); |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
268
diff
changeset
|
448 void h263_encode_init(MpegEncContext *s); |
| 0 | 449 |
| 450 void h263_decode_init_vlc(MpegEncContext *s); | |
| 451 int h263_decode_picture_header(MpegEncContext *s); | |
| 162 | 452 int h263_decode_gob_header(MpegEncContext *s); |
| 0 | 453 int mpeg4_decode_picture_header(MpegEncContext * s); |
| 454 int intel_h263_decode_picture_header(MpegEncContext *s); | |
| 455 int h263_decode_mb(MpegEncContext *s, | |
| 456 DCTELEM block[6][64]); | |
| 457 int h263_get_picture_format(int width, int height); | |
| 458 | |
| 459 /* rv10.c */ | |
| 460 void rv10_encode_picture_header(MpegEncContext *s, int picture_number); | |
| 461 int rv_decode_dc(MpegEncContext *s, int n); | |
| 462 | |
| 463 /* msmpeg4.c */ | |
| 464 void msmpeg4_encode_picture_header(MpegEncContext * s, int picture_number); | |
| 208 | 465 void msmpeg4_encode_ext_header(MpegEncContext * s); |
| 0 | 466 void msmpeg4_encode_mb(MpegEncContext * s, |
| 467 DCTELEM block[6][64], | |
| 468 int motion_x, int motion_y); | |
| 469 void msmpeg4_dc_scale(MpegEncContext * s); | |
| 470 int msmpeg4_decode_picture_header(MpegEncContext * s); | |
| 208 | 471 int msmpeg4_decode_ext_header(MpegEncContext * s, int buf_size); |
| 0 | 472 int msmpeg4_decode_mb(MpegEncContext *s, |
| 473 DCTELEM block[6][64]); | |
| 474 int msmpeg4_decode_init_vlc(MpegEncContext *s); | |
| 475 | |
| 476 /* mjpegenc.c */ | |
| 477 | |
| 478 int mjpeg_init(MpegEncContext *s); | |
| 479 void mjpeg_close(MpegEncContext *s); | |
| 480 void mjpeg_encode_mb(MpegEncContext *s, | |
| 481 DCTELEM block[6][64]); | |
| 482 void mjpeg_picture_header(MpegEncContext *s); | |
| 483 void mjpeg_picture_trailer(MpegEncContext *s); | |
| 329 | 484 |
| 485 /* rate control */ | |
| 486 int ff_rate_control_init(MpegEncContext *s); | |
| 487 int ff_rate_estimate_qscale(MpegEncContext *s); | |
| 488 int ff_rate_estimate_qscale_pass2(MpegEncContext *s); | |
| 489 void ff_write_pass1_stats(MpegEncContext *s); | |
| 490 void ff_rate_control_uninit(MpegEncContext *s); | |
| 491 | |
| 492 | |
| 493 | |
| 494 |
