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