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