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