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