Mercurial > libavcodec.hg
annotate mpeg12.c @ 925:7fccaa0d699d libavcodec
AVVideoFrame -> AVFrame
author | michaelni |
---|---|
date | Mon, 09 Dec 2002 12:03:43 +0000 |
parents | 3814e9115672 |
children | 6bcb214d6a17 |
rev | line source |
---|---|
0 | 1 /* |
2 * MPEG1 encoder / MPEG2 decoder | |
429 | 3 * Copyright (c) 2000,2001 Fabrice Bellard. |
0 | 4 * |
429 | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2 of the License, or (at your option) any later version. | |
0 | 9 * |
429 | 10 * This library is distributed in the hope that it will be useful, |
0 | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
429 | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 * Lesser General Public License for more details. | |
0 | 14 * |
429 | 15 * You should have received a copy of the GNU Lesser General Public |
16 * License along with this library; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
0 | 18 */ |
76 | 19 //#define DEBUG |
0 | 20 #include "avcodec.h" |
21 #include "dsputil.h" | |
22 #include "mpegvideo.h" | |
23 | |
24 #include "mpeg12data.h" | |
25 | |
694 | 26 #if 1 |
27 #define PRINT_QP(a, b) {} | |
28 #else | |
29 #define PRINT_QP(a, b) printf(a, b) | |
30 #endif | |
31 | |
0 | 32 /* Start codes. */ |
33 #define SEQ_END_CODE 0x000001b7 | |
34 #define SEQ_START_CODE 0x000001b3 | |
35 #define GOP_START_CODE 0x000001b8 | |
36 #define PICTURE_START_CODE 0x00000100 | |
37 #define SLICE_MIN_START_CODE 0x00000101 | |
38 #define SLICE_MAX_START_CODE 0x000001af | |
39 #define EXT_START_CODE 0x000001b5 | |
40 #define USER_START_CODE 0x000001b2 | |
41 | |
552 | 42 #define DC_VLC_BITS 9 |
43 #define MV_VLC_BITS 9 | |
44 #define MBINCR_VLC_BITS 9 | |
45 #define MB_PAT_VLC_BITS 9 | |
46 #define MB_PTYPE_VLC_BITS 6 | |
47 #define MB_BTYPE_VLC_BITS 6 | |
48 #define TEX_VLC_BITS 9 | |
49 | |
0 | 50 static void mpeg1_encode_block(MpegEncContext *s, |
51 DCTELEM *block, | |
52 int component); | |
53 static void mpeg1_encode_motion(MpegEncContext *s, int val); | |
54 static void mpeg1_skip_picture(MpegEncContext *s, int pict_num); | |
711 | 55 static inline int mpeg1_decode_block_inter(MpegEncContext *s, |
56 DCTELEM *block, | |
57 int n); | |
58 static inline int mpeg1_decode_block_intra(MpegEncContext *s, | |
0 | 59 DCTELEM *block, |
60 int n); | |
714 | 61 static inline int mpeg2_decode_block_non_intra(MpegEncContext *s, |
0 | 62 DCTELEM *block, |
63 int n); | |
714 | 64 static inline int mpeg2_decode_block_intra(MpegEncContext *s, |
0 | 65 DCTELEM *block, |
66 int n); | |
67 static int mpeg_decode_motion(MpegEncContext *s, int fcode, int pred); | |
68 | |
292
73a9ce3d9715
fcode_tables where too small, found by Klaas-Pieter Vlieg <vlieg@eurescom.de>
michaelni
parents:
281
diff
changeset
|
69 static UINT16 mv_penalty[MAX_FCODE+1][MAX_MV*2+1]; |
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
70 static UINT8 fcode_tab[MAX_MV*2+1]; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
71 |
740 | 72 static inline int get_bits_diff(MpegEncContext *s){ |
73 int bits,ret; | |
74 | |
75 bits= get_bit_count(&s->pb); | |
76 ret= bits - s->last_bits; | |
77 s->last_bits=bits; | |
78 | |
79 return ret; | |
80 } | |
81 | |
552 | 82 static void init_2d_vlc_rl(RLTable *rl) |
83 { | |
620
a5aa53b6e648
warning patch by (Dominik Mierzejewski <dominik at rangers dot eu dot org>)
michaelni
parents:
617
diff
changeset
|
84 int i; |
552 | 85 |
86 init_vlc(&rl->vlc, TEX_VLC_BITS, rl->n + 2, | |
87 &rl->table_vlc[0][1], 4, 2, | |
88 &rl->table_vlc[0][0], 4, 2); | |
89 | |
90 | |
91 rl->rl_vlc[0]= av_malloc(rl->vlc.table_size*sizeof(RL_VLC_ELEM)); | |
92 for(i=0; i<rl->vlc.table_size; i++){ | |
93 int code= rl->vlc.table[i][0]; | |
94 int len = rl->vlc.table[i][1]; | |
95 int level, run; | |
96 | |
97 if(len==0){ // illegal code | |
98 run= 65; | |
99 level= MAX_LEVEL; | |
100 }else if(len<0){ //more bits needed | |
101 run= 0; | |
102 level= code; | |
103 }else{ | |
104 if(code==rl->n){ //esc | |
105 run= 65; | |
106 level= 0; | |
107 }else if(code==rl->n+1){ //eob | |
711 | 108 run= 0; |
109 level= 127; | |
552 | 110 }else{ |
111 run= rl->table_run [code] + 1; | |
112 level= rl->table_level[code]; | |
113 } | |
114 } | |
115 rl->rl_vlc[0][i].len= len; | |
116 rl->rl_vlc[0][i].level= level; | |
117 rl->rl_vlc[0][i].run= run; | |
118 } | |
119 } | |
120 | |
121 | |
0 | 122 static void put_header(MpegEncContext *s, int header) |
123 { | |
124 align_put_bits(&s->pb); | |
236 | 125 put_bits(&s->pb, 16, header>>16); |
126 put_bits(&s->pb, 16, header&0xFFFF); | |
0 | 127 } |
128 | |
129 /* put sequence header if needed */ | |
130 static void mpeg1_encode_sequence_header(MpegEncContext *s) | |
131 { | |
132 unsigned int vbv_buffer_size; | |
1 | 133 unsigned int fps, v; |
918 | 134 int n, i; |
0 | 135 UINT64 time_code; |
918 | 136 float best_aspect_error= 1E10; |
137 float aspect_ratio= s->avctx->aspect_ratio; | |
138 | |
139 if(aspect_ratio==0.0) aspect_ratio= s->width / (float)s->height; //pixel aspect 1:1 (VGA) | |
0 | 140 |
903 | 141 if (s->current_picture.key_frame) { |
0 | 142 /* mpeg1 header repeated every gop */ |
143 put_header(s, SEQ_START_CODE); | |
144 | |
145 /* search closest frame rate */ | |
146 { | |
147 int i, dmin, d; | |
148 s->frame_rate_index = 0; | |
149 dmin = 0x7fffffff; | |
150 for(i=1;i<9;i++) { | |
151 d = abs(s->frame_rate - frame_rate_tab[i]); | |
152 if (d < dmin) { | |
153 dmin = d; | |
154 s->frame_rate_index = i; | |
155 } | |
156 } | |
157 } | |
158 | |
159 put_bits(&s->pb, 12, s->width); | |
160 put_bits(&s->pb, 12, s->height); | |
918 | 161 |
162 for(i=1; i<15; i++){ | |
163 float error= mpeg1_aspect[i] - s->width/(s->height*aspect_ratio); | |
164 error= ABS(error); | |
165 | |
166 if(error < best_aspect_error){ | |
167 best_aspect_error= error; | |
168 s->aspect_ratio_info= i; | |
169 } | |
170 } | |
171 | |
172 put_bits(&s->pb, 4, s->aspect_ratio_info); | |
0 | 173 put_bits(&s->pb, 4, s->frame_rate_index); |
174 v = s->bit_rate / 400; | |
175 if (v > 0x3ffff) | |
176 v = 0x3ffff; | |
177 put_bits(&s->pb, 18, v); | |
178 put_bits(&s->pb, 1, 1); /* marker */ | |
639
f449913e8419
new vbv calculation patch by (Henry Mason <talus25 at speakeasy dot net>) with slight modification by me
michaelni
parents:
620
diff
changeset
|
179 |
f449913e8419
new vbv calculation patch by (Henry Mason <talus25 at speakeasy dot net>) with slight modification by me
michaelni
parents:
620
diff
changeset
|
180 if(s->avctx->rc_buffer_size) |
f449913e8419
new vbv calculation patch by (Henry Mason <talus25 at speakeasy dot net>) with slight modification by me
michaelni
parents:
620
diff
changeset
|
181 vbv_buffer_size = s->avctx->rc_buffer_size; |
f449913e8419
new vbv calculation patch by (Henry Mason <talus25 at speakeasy dot net>) with slight modification by me
michaelni
parents:
620
diff
changeset
|
182 else |
f449913e8419
new vbv calculation patch by (Henry Mason <talus25 at speakeasy dot net>) with slight modification by me
michaelni
parents:
620
diff
changeset
|
183 /* VBV calculation: Scaled so that a VCD has the proper VBV size of 40 kilobytes */ |
f449913e8419
new vbv calculation patch by (Henry Mason <talus25 at speakeasy dot net>) with slight modification by me
michaelni
parents:
620
diff
changeset
|
184 vbv_buffer_size = (( 20 * s->bit_rate) / (1151929 / 2)) * 8 * 1024; |
0 | 185 put_bits(&s->pb, 10, (vbv_buffer_size + 16383) / 16384); |
186 put_bits(&s->pb, 1, 1); /* constrained parameter flag */ | |
187 put_bits(&s->pb, 1, 0); /* no custom intra matrix */ | |
188 put_bits(&s->pb, 1, 0); /* no custom non intra matrix */ | |
189 | |
190 put_header(s, GOP_START_CODE); | |
191 put_bits(&s->pb, 1, 0); /* do drop frame */ | |
192 /* time code : we must convert from the real frame rate to a | |
193 fake mpeg frame rate in case of low frame rate */ | |
194 fps = frame_rate_tab[s->frame_rate_index]; | |
241 | 195 time_code = (INT64)s->fake_picture_number * FRAME_RATE_BASE; |
0 | 196 s->gop_picture_number = s->fake_picture_number; |
64 | 197 put_bits(&s->pb, 5, (UINT32)((time_code / (fps * 3600)) % 24)); |
198 put_bits(&s->pb, 6, (UINT32)((time_code / (fps * 60)) % 60)); | |
0 | 199 put_bits(&s->pb, 1, 1); |
64 | 200 put_bits(&s->pb, 6, (UINT32)((time_code / fps) % 60)); |
201 put_bits(&s->pb, 6, (UINT32)((time_code % fps) / FRAME_RATE_BASE)); | |
0 | 202 put_bits(&s->pb, 1, 1); /* closed gop */ |
203 put_bits(&s->pb, 1, 0); /* broken link */ | |
204 } | |
205 | |
206 if (s->frame_rate < (24 * FRAME_RATE_BASE) && s->picture_number > 0) { | |
207 /* insert empty P pictures to slow down to the desired | |
208 frame rate. Each fake pictures takes about 20 bytes */ | |
209 fps = frame_rate_tab[s->frame_rate_index]; | |
241 | 210 n = (((INT64)s->picture_number * fps) / s->frame_rate) - 1; |
0 | 211 while (s->fake_picture_number < n) { |
212 mpeg1_skip_picture(s, s->fake_picture_number - | |
213 s->gop_picture_number); | |
214 s->fake_picture_number++; | |
215 } | |
216 | |
217 } | |
218 } | |
219 | |
220 | |
221 /* insert a fake P picture */ | |
222 static void mpeg1_skip_picture(MpegEncContext *s, int pict_num) | |
223 { | |
224 unsigned int mb_incr; | |
225 | |
226 /* mpeg1 picture header */ | |
227 put_header(s, PICTURE_START_CODE); | |
228 /* temporal reference */ | |
229 put_bits(&s->pb, 10, pict_num & 0x3ff); | |
230 | |
231 put_bits(&s->pb, 3, P_TYPE); | |
232 put_bits(&s->pb, 16, 0xffff); /* non constant bit rate */ | |
233 | |
234 put_bits(&s->pb, 1, 1); /* integer coordinates */ | |
235 put_bits(&s->pb, 3, 1); /* forward_f_code */ | |
236 | |
237 put_bits(&s->pb, 1, 0); /* extra bit picture */ | |
238 | |
239 /* only one slice */ | |
240 put_header(s, SLICE_MIN_START_CODE); | |
241 put_bits(&s->pb, 5, 1); /* quantizer scale */ | |
242 put_bits(&s->pb, 1, 0); /* slice extra information */ | |
243 | |
244 mb_incr = 1; | |
245 put_bits(&s->pb, mbAddrIncrTable[mb_incr - 1][1], | |
246 mbAddrIncrTable[mb_incr - 1][0]); | |
247 | |
248 /* empty macroblock */ | |
249 put_bits(&s->pb, 3, 1); /* motion only */ | |
250 | |
251 /* zero motion x & y */ | |
252 put_bits(&s->pb, 1, 1); | |
253 put_bits(&s->pb, 1, 1); | |
254 | |
255 /* output a number of empty slice */ | |
256 mb_incr = s->mb_width * s->mb_height - 1; | |
257 while (mb_incr > 33) { | |
258 put_bits(&s->pb, 11, 0x008); | |
259 mb_incr -= 33; | |
260 } | |
261 put_bits(&s->pb, mbAddrIncrTable[mb_incr - 1][1], | |
262 mbAddrIncrTable[mb_incr - 1][0]); | |
263 | |
264 /* empty macroblock */ | |
265 put_bits(&s->pb, 3, 1); /* motion only */ | |
266 | |
267 /* zero motion x & y */ | |
268 put_bits(&s->pb, 1, 1); | |
269 put_bits(&s->pb, 1, 1); | |
270 } | |
271 | |
498 | 272 static void common_init(MpegEncContext *s) |
273 { | |
274 s->y_dc_scale_table= | |
275 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; | |
276 } | |
277 | |
0 | 278 void mpeg1_encode_picture_header(MpegEncContext *s, int picture_number) |
279 { | |
280 mpeg1_encode_sequence_header(s); | |
281 | |
282 /* mpeg1 picture header */ | |
283 put_header(s, PICTURE_START_CODE); | |
284 /* temporal reference */ | |
285 put_bits(&s->pb, 10, (s->fake_picture_number - | |
286 s->gop_picture_number) & 0x3ff); | |
276
1e2f9ef286d4
- Fix pts calculation on mpeg mux (A/V sync) - Thanks to Lennert Buytenhek
pulento
parents:
275
diff
changeset
|
287 s->fake_picture_number++; |
0 | 288 |
289 put_bits(&s->pb, 3, s->pict_type); | |
290 put_bits(&s->pb, 16, 0xffff); /* non constant bit rate */ | |
291 | |
292 if (s->pict_type == P_TYPE) { | |
293 put_bits(&s->pb, 1, 0); /* half pel coordinates */ | |
294 put_bits(&s->pb, 3, s->f_code); /* forward_f_code */ | |
295 } | |
296 | |
297 put_bits(&s->pb, 1, 0); /* extra bit picture */ | |
298 | |
299 /* only one slice */ | |
300 put_header(s, SLICE_MIN_START_CODE); | |
301 put_bits(&s->pb, 5, s->qscale); /* quantizer scale */ | |
302 put_bits(&s->pb, 1, 0); /* slice extra information */ | |
303 } | |
304 | |
305 void mpeg1_encode_mb(MpegEncContext *s, | |
306 DCTELEM block[6][64], | |
307 int motion_x, int motion_y) | |
308 { | |
309 int mb_incr, i, cbp, mb_x, mb_y; | |
310 | |
311 mb_x = s->mb_x; | |
312 mb_y = s->mb_y; | |
313 | |
314 /* compute cbp */ | |
315 cbp = 0; | |
316 for(i=0;i<6;i++) { | |
317 if (s->block_last_index[i] >= 0) | |
318 cbp |= 1 << (5 - i); | |
319 } | |
320 | |
321 /* skip macroblock, except if first or last macroblock of a slice */ | |
322 if ((cbp | motion_x | motion_y) == 0 && | |
323 (!((mb_x | mb_y) == 0 || | |
324 (mb_x == s->mb_width - 1 && mb_y == s->mb_height - 1)))) { | |
325 s->mb_incr++; | |
694 | 326 s->qscale -= s->dquant; |
740 | 327 s->skip_count++; |
328 s->misc_bits++; | |
329 s->last_bits++; | |
0 | 330 } else { |
331 /* output mb incr */ | |
332 mb_incr = s->mb_incr; | |
333 | |
334 while (mb_incr > 33) { | |
335 put_bits(&s->pb, 11, 0x008); | |
336 mb_incr -= 33; | |
337 } | |
338 put_bits(&s->pb, mbAddrIncrTable[mb_incr - 1][1], | |
339 mbAddrIncrTable[mb_incr - 1][0]); | |
340 | |
341 if (s->pict_type == I_TYPE) { | |
694 | 342 if(s->dquant && cbp){ |
343 put_bits(&s->pb, 2, 1); /* macroblock_type : macroblock_quant = 1 */ | |
344 put_bits(&s->pb, 5, s->qscale); | |
345 }else{ | |
346 put_bits(&s->pb, 1, 1); /* macroblock_type : macroblock_quant = 0 */ | |
347 s->qscale -= s->dquant; | |
348 } | |
740 | 349 s->misc_bits+= get_bits_diff(s); |
350 s->i_count++; | |
0 | 351 } else { |
352 if (s->mb_intra) { | |
694 | 353 if(s->dquant && cbp){ |
354 put_bits(&s->pb, 6, 0x01); | |
355 put_bits(&s->pb, 5, s->qscale); | |
356 }else{ | |
357 put_bits(&s->pb, 5, 0x03); | |
358 s->qscale -= s->dquant; | |
359 } | |
740 | 360 s->misc_bits+= get_bits_diff(s); |
361 s->i_count++; | |
0 | 362 } else { |
363 if (cbp != 0) { | |
364 if (motion_x == 0 && motion_y == 0) { | |
694 | 365 if(s->dquant){ |
366 put_bits(&s->pb, 5, 1); /* macroblock_pattern & quant */ | |
367 put_bits(&s->pb, 5, s->qscale); | |
368 }else{ | |
369 put_bits(&s->pb, 2, 1); /* macroblock_pattern only */ | |
370 } | |
740 | 371 s->misc_bits+= get_bits_diff(s); |
0 | 372 put_bits(&s->pb, mbPatTable[cbp - 1][1], mbPatTable[cbp - 1][0]); |
373 } else { | |
694 | 374 if(s->dquant){ |
375 put_bits(&s->pb, 5, 2); /* motion + cbp */ | |
376 put_bits(&s->pb, 5, s->qscale); | |
377 }else{ | |
378 put_bits(&s->pb, 1, 1); /* motion + cbp */ | |
379 } | |
740 | 380 s->misc_bits+= get_bits_diff(s); |
0 | 381 mpeg1_encode_motion(s, motion_x - s->last_mv[0][0][0]); |
382 mpeg1_encode_motion(s, motion_y - s->last_mv[0][0][1]); | |
740 | 383 s->mv_bits+= get_bits_diff(s); |
0 | 384 put_bits(&s->pb, mbPatTable[cbp - 1][1], mbPatTable[cbp - 1][0]); |
385 } | |
386 } else { | |
387 put_bits(&s->pb, 3, 1); /* motion only */ | |
388 mpeg1_encode_motion(s, motion_x - s->last_mv[0][0][0]); | |
389 mpeg1_encode_motion(s, motion_y - s->last_mv[0][0][1]); | |
694 | 390 s->qscale -= s->dquant; |
740 | 391 s->mv_bits+= get_bits_diff(s); |
0 | 392 } |
740 | 393 s->f_count++; |
0 | 394 } |
395 } | |
396 for(i=0;i<6;i++) { | |
397 if (cbp & (1 << (5 - i))) { | |
398 mpeg1_encode_block(s, block[i], i); | |
399 } | |
400 } | |
401 s->mb_incr = 1; | |
740 | 402 if(s->mb_intra) |
403 s->i_tex_bits+= get_bits_diff(s); | |
404 else | |
405 s->p_tex_bits+= get_bits_diff(s); | |
0 | 406 } |
407 s->last_mv[0][0][0] = motion_x; | |
408 s->last_mv[0][0][1] = motion_y; | |
409 } | |
410 | |
411 static void mpeg1_encode_motion(MpegEncContext *s, int val) | |
412 { | |
413 int code, bit_size, l, m, bits, range, sign; | |
414 | |
415 if (val == 0) { | |
416 /* zero vector */ | |
417 code = 0; | |
418 put_bits(&s->pb, | |
419 mbMotionVectorTable[0][1], | |
420 mbMotionVectorTable[0][0]); | |
421 } else { | |
422 bit_size = s->f_code - 1; | |
423 range = 1 << bit_size; | |
424 /* modulo encoding */ | |
425 l = 16 * range; | |
426 m = 2 * l; | |
427 if (val < -l) { | |
428 val += m; | |
429 } else if (val >= l) { | |
430 val -= m; | |
431 } | |
432 | |
433 if (val >= 0) { | |
434 val--; | |
435 code = (val >> bit_size) + 1; | |
436 bits = val & (range - 1); | |
437 sign = 0; | |
438 } else { | |
439 val = -val; | |
440 val--; | |
441 code = (val >> bit_size) + 1; | |
442 bits = val & (range - 1); | |
443 sign = 1; | |
444 } | |
445 put_bits(&s->pb, | |
446 mbMotionVectorTable[code][1], | |
447 mbMotionVectorTable[code][0]); | |
448 put_bits(&s->pb, 1, sign); | |
449 if (bit_size > 0) { | |
450 put_bits(&s->pb, bit_size, bits); | |
451 } | |
452 } | |
453 } | |
454 | |
498 | 455 void ff_mpeg1_encode_init(MpegEncContext *s) |
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
456 { |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
457 static int done=0; |
498 | 458 |
459 common_init(s); | |
460 | |
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
461 if(!done){ |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
462 int f_code; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
463 int mv; |
498 | 464 int i; |
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
465 |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
466 done=1; |
498 | 467 init_rl(&rl_mpeg1); |
468 | |
469 for(i=0; i<64; i++) | |
470 { | |
471 mpeg1_max_level[0][i]= rl_mpeg1.max_level[0][i]; | |
472 mpeg1_index_run[0][i]= rl_mpeg1.index_run[0][i]; | |
473 } | |
474 | |
475 /* build unified dc encoding tables */ | |
476 for(i=-255; i<256; i++) | |
477 { | |
478 int adiff, index; | |
479 int bits, code; | |
480 int diff=i; | |
481 | |
482 adiff = ABS(diff); | |
483 if(diff<0) diff--; | |
484 index = vlc_dc_table[adiff]; | |
485 | |
486 bits= vlc_dc_lum_bits[index] + index; | |
487 code= (vlc_dc_lum_code[index]<<index) + (diff & ((1 << index) - 1)); | |
488 mpeg1_lum_dc_uni[i+255]= bits + (code<<8); | |
489 | |
490 bits= vlc_dc_chroma_bits[index] + index; | |
491 code= (vlc_dc_chroma_code[index]<<index) + (diff & ((1 << index) - 1)); | |
492 mpeg1_chr_dc_uni[i+255]= bits + (code<<8); | |
493 } | |
494 | |
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
495 for(f_code=1; f_code<=MAX_FCODE; f_code++){ |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
496 for(mv=-MAX_MV; mv<=MAX_MV; mv++){ |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
497 int len; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
498 |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
499 if(mv==0) len= mbMotionVectorTable[0][1]; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
500 else{ |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
501 int val, bit_size, range, code; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
502 |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
503 bit_size = s->f_code - 1; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
504 range = 1 << bit_size; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
505 |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
506 val=mv; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
507 if (val < 0) |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
508 val = -val; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
509 val--; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
510 code = (val >> bit_size) + 1; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
511 if(code<17){ |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
512 len= mbMotionVectorTable[code][1] + 1 + bit_size; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
513 }else{ |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
514 len= mbMotionVectorTable[16][1] + 2 + bit_size; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
515 } |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
516 } |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
517 |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
518 mv_penalty[f_code][mv+MAX_MV]= len; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
519 } |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
520 } |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
521 |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
522 |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
523 for(f_code=MAX_FCODE; f_code>0; f_code--){ |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
524 for(mv=-(8<<f_code); mv<(8<<f_code); mv++){ |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
525 fcode_tab[mv+MAX_MV]= f_code; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
526 } |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
527 } |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
528 } |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
529 s->mv_penalty= mv_penalty; |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
530 s->fcode_tab= fcode_tab; |
344 | 531 s->min_qcoeff=-255; |
532 s->max_qcoeff= 255; | |
533 s->intra_quant_bias= 3<<(QUANT_BIAS_SHIFT-3); //(a + x*3/8)/x | |
534 s->inter_quant_bias= 0; | |
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
277
diff
changeset
|
535 } |
498 | 536 |
0 | 537 static inline void encode_dc(MpegEncContext *s, int diff, int component) |
538 { | |
539 if (component == 0) { | |
237
75123d30f862
optimized encode_dc() (+2% speed on P3 for mpeg1 intra only encodings)
michaelni
parents:
236
diff
changeset
|
540 put_bits( |
75123d30f862
optimized encode_dc() (+2% speed on P3 for mpeg1 intra only encodings)
michaelni
parents:
236
diff
changeset
|
541 &s->pb, |
75123d30f862
optimized encode_dc() (+2% speed on P3 for mpeg1 intra only encodings)
michaelni
parents:
236
diff
changeset
|
542 mpeg1_lum_dc_uni[diff+255]&0xFF, |
75123d30f862
optimized encode_dc() (+2% speed on P3 for mpeg1 intra only encodings)
michaelni
parents:
236
diff
changeset
|
543 mpeg1_lum_dc_uni[diff+255]>>8); |
0 | 544 } else { |
237
75123d30f862
optimized encode_dc() (+2% speed on P3 for mpeg1 intra only encodings)
michaelni
parents:
236
diff
changeset
|
545 put_bits( |
75123d30f862
optimized encode_dc() (+2% speed on P3 for mpeg1 intra only encodings)
michaelni
parents:
236
diff
changeset
|
546 &s->pb, |
75123d30f862
optimized encode_dc() (+2% speed on P3 for mpeg1 intra only encodings)
michaelni
parents:
236
diff
changeset
|
547 mpeg1_chr_dc_uni[diff+255]&0xFF, |
75123d30f862
optimized encode_dc() (+2% speed on P3 for mpeg1 intra only encodings)
michaelni
parents:
236
diff
changeset
|
548 mpeg1_chr_dc_uni[diff+255]>>8); |
0 | 549 } |
550 } | |
551 | |
552 static void mpeg1_encode_block(MpegEncContext *s, | |
553 DCTELEM *block, | |
554 int n) | |
555 { | |
556 int alevel, level, last_non_zero, dc, diff, i, j, run, last_index, sign; | |
557 int code, component; | |
236 | 558 // RLTable *rl = &rl_mpeg1; |
0 | 559 |
560 last_index = s->block_last_index[n]; | |
561 | |
562 /* DC coef */ | |
563 if (s->mb_intra) { | |
564 component = (n <= 3 ? 0 : n - 4 + 1); | |
565 dc = block[0]; /* overflow is impossible */ | |
566 diff = dc - s->last_dc[component]; | |
567 encode_dc(s, diff, component); | |
568 s->last_dc[component] = dc; | |
569 i = 1; | |
570 } else { | |
571 /* encode the first coefficient : needs to be done here because | |
572 it is handled slightly differently */ | |
573 level = block[0]; | |
574 if (abs(level) == 1) { | |
575 code = ((UINT32)level >> 31); /* the sign bit */ | |
576 put_bits(&s->pb, 2, code | 0x02); | |
577 i = 1; | |
578 } else { | |
579 i = 0; | |
580 last_non_zero = -1; | |
581 goto next_coef; | |
582 } | |
583 } | |
584 | |
585 /* now quantify & encode AC coefs */ | |
586 last_non_zero = i - 1; | |
236 | 587 |
0 | 588 for(;i<=last_index;i++) { |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
589 j = s->intra_scantable.permutated[i]; |
0 | 590 level = block[j]; |
591 next_coef: | |
592 #if 0 | |
593 if (level != 0) | |
594 dprintf("level[%d]=%d\n", i, level); | |
595 #endif | |
596 /* encode using VLC */ | |
597 if (level != 0) { | |
598 run = i - last_non_zero - 1; | |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
599 |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
600 alevel= level; |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
601 MASK_ABS(sign, alevel) |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
602 sign&=1; |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
603 |
236 | 604 // code = get_rl_index(rl, 0, run, alevel); |
605 if (alevel > mpeg1_max_level[0][run]) | |
606 code= 111; /*rl->n*/ | |
607 else | |
608 code= mpeg1_index_run[0][run] + alevel - 1; | |
609 | |
610 if (code < 111 /* rl->n */) { | |
611 /* store the vlc & sign at once */ | |
612 put_bits(&s->pb, mpeg1_vlc[code][1]+1, (mpeg1_vlc[code][0]<<1) + sign); | |
0 | 613 } else { |
236 | 614 /* escape seems to be pretty rare <5% so i dont optimize it */ |
615 put_bits(&s->pb, mpeg1_vlc[111/*rl->n*/][1], mpeg1_vlc[111/*rl->n*/][0]); | |
0 | 616 /* escape: only clip in this case */ |
617 put_bits(&s->pb, 6, run); | |
618 if (alevel < 128) { | |
619 put_bits(&s->pb, 8, level & 0xff); | |
620 } else { | |
621 if (level < 0) { | |
622 put_bits(&s->pb, 16, 0x8001 + level + 255); | |
623 } else { | |
624 put_bits(&s->pb, 16, level & 0xffff); | |
625 } | |
626 } | |
627 } | |
628 last_non_zero = i; | |
629 } | |
630 } | |
631 /* end of block */ | |
632 put_bits(&s->pb, 2, 0x2); | |
633 } | |
634 | |
635 /******************************************/ | |
636 /* decoding */ | |
637 | |
638 static VLC dc_lum_vlc; | |
639 static VLC dc_chroma_vlc; | |
640 static VLC mv_vlc; | |
641 static VLC mbincr_vlc; | |
642 static VLC mb_ptype_vlc; | |
643 static VLC mb_btype_vlc; | |
644 static VLC mb_pat_vlc; | |
645 | |
647
22b22723805e
support decoding of the last mpeg "packet" even if no startcode is immedeatly afterwards (fixes bugs with mpeg in avi)
michaelni
parents:
639
diff
changeset
|
646 static void init_vlcs(MpegEncContext *s) |
0 | 647 { |
648 static int done = 0; | |
649 | |
650 if (!done) { | |
494 | 651 done = 1; |
0 | 652 |
568 | 653 init_vlc(&dc_lum_vlc, DC_VLC_BITS, 12, |
0 | 654 vlc_dc_lum_bits, 1, 1, |
655 vlc_dc_lum_code, 2, 2); | |
568 | 656 init_vlc(&dc_chroma_vlc, DC_VLC_BITS, 12, |
0 | 657 vlc_dc_chroma_bits, 1, 1, |
658 vlc_dc_chroma_code, 2, 2); | |
545 | 659 init_vlc(&mv_vlc, MV_VLC_BITS, 17, |
0 | 660 &mbMotionVectorTable[0][1], 2, 1, |
661 &mbMotionVectorTable[0][0], 2, 1); | |
545 | 662 init_vlc(&mbincr_vlc, MBINCR_VLC_BITS, 35, |
0 | 663 &mbAddrIncrTable[0][1], 2, 1, |
664 &mbAddrIncrTable[0][0], 2, 1); | |
545 | 665 init_vlc(&mb_pat_vlc, MB_PAT_VLC_BITS, 63, |
0 | 666 &mbPatTable[0][1], 2, 1, |
667 &mbPatTable[0][0], 2, 1); | |
668 | |
545 | 669 init_vlc(&mb_ptype_vlc, MB_PTYPE_VLC_BITS, 32, |
0 | 670 &table_mb_ptype[0][1], 2, 1, |
671 &table_mb_ptype[0][0], 2, 1); | |
545 | 672 init_vlc(&mb_btype_vlc, MB_BTYPE_VLC_BITS, 32, |
0 | 673 &table_mb_btype[0][1], 2, 1, |
674 &table_mb_btype[0][0], 2, 1); | |
675 init_rl(&rl_mpeg1); | |
676 init_rl(&rl_mpeg2); | |
552 | 677 |
678 init_2d_vlc_rl(&rl_mpeg1); | |
679 init_2d_vlc_rl(&rl_mpeg2); | |
0 | 680 } |
681 } | |
682 | |
683 static inline int get_dmv(MpegEncContext *s) | |
684 { | |
21 | 685 if(get_bits1(&s->gb)) |
686 return 1 - (get_bits1(&s->gb) << 1); | |
0 | 687 else |
688 return 0; | |
689 } | |
690 | |
54 | 691 static inline int get_qscale(MpegEncContext *s) |
692 { | |
693 int qscale; | |
694 if (s->mpeg2) { | |
695 if (s->q_scale_type) { | |
696 qscale = non_linear_qscale[get_bits(&s->gb, 5)]; | |
697 } else { | |
698 qscale = get_bits(&s->gb, 5) << 1; | |
699 } | |
700 } else { | |
701 /* for mpeg1, we use the generic unquant code */ | |
702 qscale = get_bits(&s->gb, 5); | |
703 } | |
704 return qscale; | |
705 } | |
706 | |
0 | 707 /* motion type (for mpeg2) */ |
708 #define MT_FIELD 1 | |
709 #define MT_FRAME 2 | |
710 #define MT_16X8 2 | |
711 #define MT_DMV 3 | |
712 | |
713 static int mpeg_decode_mb(MpegEncContext *s, | |
714 DCTELEM block[6][64]) | |
715 { | |
751 | 716 int i, j, k, cbp, val, mb_type, motion_type; |
0 | 717 |
718 dprintf("decode_mb: x=%d y=%d\n", s->mb_x, s->mb_y); | |
719 | |
720 if (--s->mb_incr != 0) { | |
721 /* skip mb */ | |
722 s->mb_intra = 0; | |
723 for(i=0;i<6;i++) | |
724 s->block_last_index[i] = -1; | |
725 s->mv_type = MV_TYPE_16X16; | |
726 if (s->pict_type == P_TYPE) { | |
727 /* if P type, zero motion vector is implied */ | |
728 s->mv_dir = MV_DIR_FORWARD; | |
729 s->mv[0][0][0] = s->mv[0][0][1] = 0; | |
730 s->last_mv[0][0][0] = s->last_mv[0][0][1] = 0; | |
59
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
731 s->last_mv[0][1][0] = s->last_mv[0][1][1] = 0; |
0 | 732 } else { |
733 /* if B type, reuse previous vectors and directions */ | |
734 s->mv[0][0][0] = s->last_mv[0][0][0]; | |
735 s->mv[0][0][1] = s->last_mv[0][0][1]; | |
736 s->mv[1][0][0] = s->last_mv[1][0][0]; | |
737 s->mv[1][0][1] = s->last_mv[1][0][1]; | |
738 } | |
7
1d3ac9654178
added skip macroblock optimization (big perf win on black regions for example)
glantau
parents:
1
diff
changeset
|
739 s->mb_skiped = 1; |
0 | 740 return 0; |
741 } | |
742 | |
743 switch(s->pict_type) { | |
744 default: | |
745 case I_TYPE: | |
21 | 746 if (get_bits1(&s->gb) == 0) { |
747 if (get_bits1(&s->gb) == 0) | |
0 | 748 return -1; |
749 mb_type = MB_QUANT | MB_INTRA; | |
750 } else { | |
751 mb_type = MB_INTRA; | |
752 } | |
753 break; | |
754 case P_TYPE: | |
545 | 755 mb_type = get_vlc2(&s->gb, mb_ptype_vlc.table, MB_PTYPE_VLC_BITS, 1); |
568 | 756 if (mb_type < 0){ |
757 fprintf(stderr, "invalid mb type in P Frame at %d %d\n", s->mb_x, s->mb_y); | |
0 | 758 return -1; |
568 | 759 } |
0 | 760 break; |
761 case B_TYPE: | |
545 | 762 mb_type = get_vlc2(&s->gb, mb_btype_vlc.table, MB_BTYPE_VLC_BITS, 1); |
568 | 763 if (mb_type < 0){ |
764 fprintf(stderr, "invalid mb type in B Frame at %d %d\n", s->mb_x, s->mb_y); | |
0 | 765 return -1; |
568 | 766 } |
0 | 767 break; |
768 } | |
769 dprintf("mb_type=%x\n", mb_type); | |
770 motion_type = 0; /* avoid warning */ | |
771 if (mb_type & (MB_FOR|MB_BACK)) { | |
772 /* get additionnal motion vector type */ | |
773 if (s->picture_structure == PICT_FRAME && s->frame_pred_frame_dct) | |
774 motion_type = MT_FRAME; | |
775 else | |
776 motion_type = get_bits(&s->gb, 2); | |
777 } | |
778 /* compute dct type */ | |
779 if (s->picture_structure == PICT_FRAME && | |
780 !s->frame_pred_frame_dct && | |
781 (mb_type & (MB_PAT | MB_INTRA))) { | |
21 | 782 s->interlaced_dct = get_bits1(&s->gb); |
0 | 783 #ifdef DEBUG |
784 if (s->interlaced_dct) | |
785 printf("interlaced_dct\n"); | |
786 #endif | |
787 } else { | |
788 s->interlaced_dct = 0; /* frame based */ | |
789 } | |
790 | |
791 if (mb_type & MB_QUANT) { | |
54 | 792 s->qscale = get_qscale(s); |
0 | 793 } |
794 if (mb_type & MB_INTRA) { | |
795 if (s->concealment_motion_vectors) { | |
796 /* just parse them */ | |
797 if (s->picture_structure != PICT_FRAME) | |
21 | 798 skip_bits1(&s->gb); /* field select */ |
0 | 799 mpeg_decode_motion(s, s->mpeg_f_code[0][0], 0); |
800 mpeg_decode_motion(s, s->mpeg_f_code[0][1], 0); | |
801 } | |
802 s->mb_intra = 1; | |
803 cbp = 0x3f; | |
804 memset(s->last_mv, 0, sizeof(s->last_mv)); /* reset mv prediction */ | |
805 } else { | |
806 s->mb_intra = 0; | |
807 cbp = 0; | |
808 } | |
809 /* special case of implicit zero motion vector */ | |
810 if (s->pict_type == P_TYPE && !(mb_type & MB_FOR)) { | |
811 s->mv_dir = MV_DIR_FORWARD; | |
812 s->mv_type = MV_TYPE_16X16; | |
813 s->last_mv[0][0][0] = 0; | |
814 s->last_mv[0][0][1] = 0; | |
58
0e0a24def67a
fixed last zero mv for field - fixed mismatch handling for intra coefs
glantau
parents:
54
diff
changeset
|
815 s->last_mv[0][1][0] = 0; |
0e0a24def67a
fixed last zero mv for field - fixed mismatch handling for intra coefs
glantau
parents:
54
diff
changeset
|
816 s->last_mv[0][1][1] = 0; |
0 | 817 s->mv[0][0][0] = 0; |
818 s->mv[0][0][1] = 0; | |
819 } else if (mb_type & (MB_FOR | MB_BACK)) { | |
820 /* motion vectors */ | |
821 s->mv_dir = 0; | |
822 for(i=0;i<2;i++) { | |
823 if (mb_type & (MB_FOR >> i)) { | |
824 s->mv_dir |= (MV_DIR_FORWARD >> i); | |
58
0e0a24def67a
fixed last zero mv for field - fixed mismatch handling for intra coefs
glantau
parents:
54
diff
changeset
|
825 dprintf("motion_type=%d\n", motion_type); |
0 | 826 switch(motion_type) { |
827 case MT_FRAME: /* or MT_16X8 */ | |
828 if (s->picture_structure == PICT_FRAME) { | |
829 /* MT_FRAME */ | |
830 s->mv_type = MV_TYPE_16X16; | |
831 for(k=0;k<2;k++) { | |
832 val = mpeg_decode_motion(s, s->mpeg_f_code[i][k], | |
833 s->last_mv[i][0][k]); | |
834 s->last_mv[i][0][k] = val; | |
835 s->last_mv[i][1][k] = val; | |
836 /* full_pel: only for mpeg1 */ | |
837 if (s->full_pel[i]) | |
838 val = val << 1; | |
839 s->mv[i][0][k] = val; | |
840 dprintf("mv%d: %d\n", k, val); | |
841 } | |
842 } else { | |
843 /* MT_16X8 */ | |
844 s->mv_type = MV_TYPE_16X8; | |
845 for(j=0;j<2;j++) { | |
21 | 846 s->field_select[i][j] = get_bits1(&s->gb); |
0 | 847 for(k=0;k<2;k++) { |
848 val = mpeg_decode_motion(s, s->mpeg_f_code[i][k], | |
849 s->last_mv[i][j][k]); | |
850 s->last_mv[i][j][k] = val; | |
851 s->mv[i][j][k] = val; | |
852 } | |
853 } | |
854 } | |
855 break; | |
856 case MT_FIELD: | |
857 if (s->picture_structure == PICT_FRAME) { | |
858 s->mv_type = MV_TYPE_FIELD; | |
859 for(j=0;j<2;j++) { | |
21 | 860 s->field_select[i][j] = get_bits1(&s->gb); |
0 | 861 val = mpeg_decode_motion(s, s->mpeg_f_code[i][0], |
862 s->last_mv[i][j][0]); | |
863 s->last_mv[i][j][0] = val; | |
864 s->mv[i][j][0] = val; | |
865 dprintf("fmx=%d\n", val); | |
866 val = mpeg_decode_motion(s, s->mpeg_f_code[i][1], | |
867 s->last_mv[i][j][1] >> 1); | |
868 s->last_mv[i][j][1] = val << 1; | |
869 s->mv[i][j][1] = val; | |
870 dprintf("fmy=%d\n", val); | |
871 } | |
872 } else { | |
873 s->mv_type = MV_TYPE_16X16; | |
21 | 874 s->field_select[i][0] = get_bits1(&s->gb); |
0 | 875 for(k=0;k<2;k++) { |
876 val = mpeg_decode_motion(s, s->mpeg_f_code[i][k], | |
877 s->last_mv[i][0][k]); | |
878 s->last_mv[i][0][k] = val; | |
879 s->last_mv[i][1][k] = val; | |
880 s->mv[i][0][k] = val; | |
881 } | |
882 } | |
883 break; | |
884 case MT_DMV: | |
885 { | |
886 int dmx, dmy, mx, my, m; | |
887 | |
888 mx = mpeg_decode_motion(s, s->mpeg_f_code[i][0], | |
889 s->last_mv[i][0][0]); | |
890 s->last_mv[i][0][0] = mx; | |
891 s->last_mv[i][1][0] = mx; | |
892 dmx = get_dmv(s); | |
893 my = mpeg_decode_motion(s, s->mpeg_f_code[i][1], | |
894 s->last_mv[i][0][1] >> 1); | |
895 dmy = get_dmv(s); | |
896 s->mv_type = MV_TYPE_DMV; | |
897 /* XXX: totally broken */ | |
898 if (s->picture_structure == PICT_FRAME) { | |
899 s->last_mv[i][0][1] = my << 1; | |
900 s->last_mv[i][1][1] = my << 1; | |
901 | |
902 m = s->top_field_first ? 1 : 3; | |
903 /* top -> top pred */ | |
904 s->mv[i][0][0] = mx; | |
905 s->mv[i][0][1] = my << 1; | |
906 s->mv[i][1][0] = ((mx * m + (mx > 0)) >> 1) + dmx; | |
907 s->mv[i][1][1] = ((my * m + (my > 0)) >> 1) + dmy - 1; | |
908 m = 4 - m; | |
909 s->mv[i][2][0] = mx; | |
910 s->mv[i][2][1] = my << 1; | |
911 s->mv[i][3][0] = ((mx * m + (mx > 0)) >> 1) + dmx; | |
912 s->mv[i][3][1] = ((my * m + (my > 0)) >> 1) + dmy + 1; | |
913 } else { | |
914 s->last_mv[i][0][1] = my; | |
915 s->last_mv[i][1][1] = my; | |
916 s->mv[i][0][0] = mx; | |
917 s->mv[i][0][1] = my; | |
918 s->mv[i][1][0] = ((mx + (mx > 0)) >> 1) + dmx; | |
919 s->mv[i][1][1] = ((my + (my > 0)) >> 1) + dmy - 1 | |
920 /* + 2 * cur_field */; | |
921 } | |
922 } | |
923 break; | |
924 } | |
925 } | |
926 } | |
927 } | |
928 | |
929 if ((mb_type & MB_INTRA) && s->concealment_motion_vectors) { | |
21 | 930 skip_bits1(&s->gb); /* marker */ |
0 | 931 } |
932 | |
933 if (mb_type & MB_PAT) { | |
545 | 934 cbp = get_vlc2(&s->gb, mb_pat_vlc.table, MB_PAT_VLC_BITS, 1); |
568 | 935 if (cbp < 0){ |
936 fprintf(stderr, "invalid cbp at %d %d\n", s->mb_x, s->mb_y); | |
0 | 937 return -1; |
568 | 938 } |
0 | 939 cbp++; |
940 } | |
941 dprintf("cbp=%x\n", cbp); | |
942 | |
943 if (s->mpeg2) { | |
944 if (s->mb_intra) { | |
945 for(i=0;i<6;i++) { | |
711 | 946 if (mpeg2_decode_block_intra(s, block[i], i) < 0) |
947 return -1; | |
0 | 948 } |
949 } else { | |
950 for(i=0;i<6;i++) { | |
711 | 951 if (cbp & 32) { |
0 | 952 if (mpeg2_decode_block_non_intra(s, block[i], i) < 0) |
953 return -1; | |
391 | 954 } else { |
955 s->block_last_index[i] = -1; | |
0 | 956 } |
711 | 957 cbp+=cbp; |
0 | 958 } |
959 } | |
960 } else { | |
711 | 961 if (s->mb_intra) { |
962 for(i=0;i<6;i++) { | |
963 if (mpeg1_decode_block_intra(s, block[i], i) < 0) | |
0 | 964 return -1; |
711 | 965 } |
966 }else{ | |
967 for(i=0;i<6;i++) { | |
968 if (cbp & 32) { | |
969 if (mpeg1_decode_block_inter(s, block[i], i) < 0) | |
970 return -1; | |
971 } else { | |
972 s->block_last_index[i] = -1; | |
973 } | |
974 cbp+=cbp; | |
0 | 975 } |
976 } | |
977 } | |
978 return 0; | |
979 } | |
980 | |
981 /* as h263, but only 17 codes */ | |
982 static int mpeg_decode_motion(MpegEncContext *s, int fcode, int pred) | |
983 { | |
984 int code, sign, val, m, l, shift; | |
985 | |
545 | 986 code = get_vlc2(&s->gb, mv_vlc.table, MV_VLC_BITS, 2); |
0 | 987 if (code < 0) { |
988 return 0xffff; | |
989 } | |
990 if (code == 0) { | |
991 return pred; | |
992 } | |
21 | 993 sign = get_bits1(&s->gb); |
0 | 994 shift = fcode - 1; |
995 val = (code - 1) << shift; | |
996 if (shift > 0) | |
997 val |= get_bits(&s->gb, shift); | |
998 val++; | |
999 if (sign) | |
1000 val = -val; | |
1001 val += pred; | |
1002 | |
1003 /* modulo decoding */ | |
1004 l = (1 << shift) * 16; | |
1005 m = 2 * l; | |
1006 if (val < -l) { | |
1007 val += m; | |
1008 } else if (val >= l) { | |
1009 val -= m; | |
1010 } | |
1011 return val; | |
1012 } | |
1013 | |
1014 static inline int decode_dc(MpegEncContext *s, int component) | |
1015 { | |
1016 int code, diff; | |
1017 | |
1018 if (component == 0) { | |
568 | 1019 code = get_vlc2(&s->gb, dc_lum_vlc.table, DC_VLC_BITS, 2); |
0 | 1020 } else { |
568 | 1021 code = get_vlc2(&s->gb, dc_chroma_vlc.table, DC_VLC_BITS, 2); |
0 | 1022 } |
568 | 1023 if (code < 0){ |
1024 fprintf(stderr, "invalid dc code at %d %d\n", s->mb_x, s->mb_y); | |
0 | 1025 return 0xffff; |
568 | 1026 } |
0 | 1027 if (code == 0) { |
1028 diff = 0; | |
1029 } else { | |
1030 diff = get_bits(&s->gb, code); | |
1031 if ((diff & (1 << (code - 1))) == 0) | |
1032 diff = (-1 << code) | (diff + 1); | |
1033 } | |
1034 return diff; | |
1035 } | |
1036 | |
711 | 1037 static inline int mpeg1_decode_block_intra(MpegEncContext *s, |
0 | 1038 DCTELEM *block, |
1039 int n) | |
1040 { | |
1041 int level, dc, diff, i, j, run; | |
711 | 1042 int component; |
0 | 1043 RLTable *rl = &rl_mpeg1; |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
1044 UINT8 * const scantable= s->intra_scantable.permutated; |
711 | 1045 const UINT16 *quant_matrix= s->intra_matrix; |
1046 const int qscale= s->qscale; | |
0 | 1047 |
711 | 1048 /* DC coef */ |
1049 component = (n <= 3 ? 0 : n - 4 + 1); | |
1050 diff = decode_dc(s, component); | |
1051 if (diff >= 0xffff) | |
1052 return -1; | |
1053 dc = s->last_dc[component]; | |
1054 dc += diff; | |
1055 s->last_dc[component] = dc; | |
1056 block[0] = dc<<3; | |
1057 dprintf("dc=%d diff=%d\n", dc, diff); | |
1058 i = 0; | |
1059 { | |
1060 OPEN_READER(re, &s->gb); | |
1061 /* now quantify & encode AC coefs */ | |
1062 for(;;) { | |
1063 UPDATE_CACHE(re, &s->gb); | |
1064 GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2); | |
1065 | |
1066 if(level == 127){ | |
1067 break; | |
1068 } else if(level != 0) { | |
1069 i += run; | |
1070 j = scantable[i]; | |
1071 level= (level*qscale*quant_matrix[j])>>3; | |
1072 level= (level-1)|1; | |
1073 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
1074 LAST_SKIP_BITS(re, &s->gb, 1); | |
1075 } else { | |
1076 /* escape */ | |
1077 run = SHOW_UBITS(re, &s->gb, 6)+1; LAST_SKIP_BITS(re, &s->gb, 6); | |
1078 UPDATE_CACHE(re, &s->gb); | |
1079 level = SHOW_SBITS(re, &s->gb, 8); SKIP_BITS(re, &s->gb, 8); | |
1080 if (level == -128) { | |
1081 level = SHOW_UBITS(re, &s->gb, 8) - 256; LAST_SKIP_BITS(re, &s->gb, 8); | |
1082 } else if (level == 0) { | |
1083 level = SHOW_UBITS(re, &s->gb, 8) ; LAST_SKIP_BITS(re, &s->gb, 8); | |
1084 } | |
1085 i += run; | |
1086 j = scantable[i]; | |
1087 if(level<0){ | |
1088 level= -level; | |
1089 level= (level*qscale*quant_matrix[j])>>3; | |
1090 level= (level-1)|1; | |
1091 level= -level; | |
1092 }else{ | |
1093 level= (level*qscale*quant_matrix[j])>>3; | |
1094 level= (level-1)|1; | |
1095 } | |
1096 } | |
1097 if (i > 63){ | |
1098 fprintf(stderr, "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y); | |
1099 return -1; | |
1100 } | |
1101 | |
1102 block[j] = level; | |
1103 } | |
1104 CLOSE_READER(re, &s->gb); | |
1105 } | |
1106 s->block_last_index[n] = i; | |
1107 return 0; | |
1108 } | |
1109 | |
1110 static inline int mpeg1_decode_block_inter(MpegEncContext *s, | |
1111 DCTELEM *block, | |
1112 int n) | |
1113 { | |
1114 int level, i, j, run; | |
1115 RLTable *rl = &rl_mpeg1; | |
1116 UINT8 * const scantable= s->intra_scantable.permutated; | |
1117 const UINT16 *quant_matrix= s->inter_matrix; | |
1118 const int qscale= s->qscale; | |
1119 | |
1120 { | |
520
19a5e2a81e1a
new bitstream reader API (old get_bits() based one is emulated and will still be supported in the future cuz its simpler)
michaelni
parents:
498
diff
changeset
|
1121 int v; |
19a5e2a81e1a
new bitstream reader API (old get_bits() based one is emulated and will still be supported in the future cuz its simpler)
michaelni
parents:
498
diff
changeset
|
1122 OPEN_READER(re, &s->gb); |
711 | 1123 i = -1; |
0 | 1124 /* special case for the first coef. no need to add a second vlc table */ |
520
19a5e2a81e1a
new bitstream reader API (old get_bits() based one is emulated and will still be supported in the future cuz its simpler)
michaelni
parents:
498
diff
changeset
|
1125 UPDATE_CACHE(re, &s->gb); |
19a5e2a81e1a
new bitstream reader API (old get_bits() based one is emulated and will still be supported in the future cuz its simpler)
michaelni
parents:
498
diff
changeset
|
1126 v= SHOW_UBITS(re, &s->gb, 2); |
0 | 1127 if (v & 2) { |
714 | 1128 LAST_SKIP_BITS(re, &s->gb, 2); |
711 | 1129 level= (3*qscale*quant_matrix[0])>>4; |
1130 level= (level-1)|1; | |
1131 if(v&1) | |
1132 level= -level; | |
714 | 1133 block[0] = level; |
711 | 1134 i++; |
0 | 1135 } |
714 | 1136 |
711 | 1137 /* now quantify & encode AC coefs */ |
1138 for(;;) { | |
1139 UPDATE_CACHE(re, &s->gb); | |
1140 GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2); | |
1141 | |
1142 if(level == 127){ | |
1143 break; | |
1144 } else if(level != 0) { | |
1145 i += run; | |
1146 j = scantable[i]; | |
1147 level= ((level*2+1)*qscale*quant_matrix[j])>>4; | |
1148 level= (level-1)|1; | |
1149 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
1150 LAST_SKIP_BITS(re, &s->gb, 1); | |
1151 } else { | |
1152 /* escape */ | |
1153 run = SHOW_UBITS(re, &s->gb, 6)+1; LAST_SKIP_BITS(re, &s->gb, 6); | |
1154 UPDATE_CACHE(re, &s->gb); | |
1155 level = SHOW_SBITS(re, &s->gb, 8); SKIP_BITS(re, &s->gb, 8); | |
1156 if (level == -128) { | |
1157 level = SHOW_UBITS(re, &s->gb, 8) - 256; LAST_SKIP_BITS(re, &s->gb, 8); | |
1158 } else if (level == 0) { | |
1159 level = SHOW_UBITS(re, &s->gb, 8) ; LAST_SKIP_BITS(re, &s->gb, 8); | |
1160 } | |
1161 i += run; | |
1162 j = scantable[i]; | |
1163 if(level<0){ | |
1164 level= -level; | |
1165 level= ((level*2+1)*qscale*quant_matrix[j])>>4; | |
1166 level= (level-1)|1; | |
1167 level= -level; | |
1168 }else{ | |
1169 level= ((level*2+1)*qscale*quant_matrix[j])>>4; | |
1170 level= (level-1)|1; | |
1171 } | |
1172 } | |
1173 if (i > 63){ | |
1174 fprintf(stderr, "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y); | |
1175 return -1; | |
1176 } | |
0 | 1177 |
711 | 1178 block[j] = level; |
0 | 1179 } |
711 | 1180 CLOSE_READER(re, &s->gb); |
0 | 1181 } |
711 | 1182 s->block_last_index[n] = i; |
0 | 1183 return 0; |
1184 } | |
1185 | |
1186 /* Also does unquantization here, since I will never support mpeg2 | |
1187 encoding */ | |
714 | 1188 static inline int mpeg2_decode_block_non_intra(MpegEncContext *s, |
1189 DCTELEM *block, | |
1190 int n) | |
0 | 1191 { |
1192 int level, i, j, run; | |
1193 RLTable *rl = &rl_mpeg1; | |
715
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1194 UINT8 * const scantable= s->intra_scantable.permutated; |
714 | 1195 const UINT16 *quant_matrix; |
1196 const int qscale= s->qscale; | |
0 | 1197 int mismatch; |
1198 | |
1199 mismatch = 1; | |
1200 | |
1201 { | |
520
19a5e2a81e1a
new bitstream reader API (old get_bits() based one is emulated and will still be supported in the future cuz its simpler)
michaelni
parents:
498
diff
changeset
|
1202 int v; |
19a5e2a81e1a
new bitstream reader API (old get_bits() based one is emulated and will still be supported in the future cuz its simpler)
michaelni
parents:
498
diff
changeset
|
1203 OPEN_READER(re, &s->gb); |
714 | 1204 i = -1; |
520
19a5e2a81e1a
new bitstream reader API (old get_bits() based one is emulated and will still be supported in the future cuz its simpler)
michaelni
parents:
498
diff
changeset
|
1205 if (n < 4) |
714 | 1206 quant_matrix = s->inter_matrix; |
0 | 1207 else |
714 | 1208 quant_matrix = s->chroma_inter_matrix; |
520
19a5e2a81e1a
new bitstream reader API (old get_bits() based one is emulated and will still be supported in the future cuz its simpler)
michaelni
parents:
498
diff
changeset
|
1209 |
0 | 1210 /* special case for the first coef. no need to add a second vlc table */ |
520
19a5e2a81e1a
new bitstream reader API (old get_bits() based one is emulated and will still be supported in the future cuz its simpler)
michaelni
parents:
498
diff
changeset
|
1211 UPDATE_CACHE(re, &s->gb); |
19a5e2a81e1a
new bitstream reader API (old get_bits() based one is emulated and will still be supported in the future cuz its simpler)
michaelni
parents:
498
diff
changeset
|
1212 v= SHOW_UBITS(re, &s->gb, 2); |
0 | 1213 if (v & 2) { |
714 | 1214 LAST_SKIP_BITS(re, &s->gb, 2); |
1215 level= (3*qscale*quant_matrix[0])>>5; | |
1216 if(v&1) | |
1217 level= -level; | |
1218 block[0] = level; | |
1219 mismatch ^= level; | |
1220 i++; | |
1221 } | |
1222 | |
1223 /* now quantify & encode AC coefs */ | |
1224 for(;;) { | |
1225 UPDATE_CACHE(re, &s->gb); | |
1226 GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2); | |
1227 | |
1228 if(level == 127){ | |
1229 break; | |
1230 } else if(level != 0) { | |
1231 i += run; | |
1232 j = scantable[i]; | |
1233 level= ((level*2+1)*qscale*quant_matrix[j])>>5; | |
1234 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
1235 LAST_SKIP_BITS(re, &s->gb, 1); | |
1236 } else { | |
1237 /* escape */ | |
1238 run = SHOW_UBITS(re, &s->gb, 6)+1; LAST_SKIP_BITS(re, &s->gb, 6); | |
1239 UPDATE_CACHE(re, &s->gb); | |
1240 level = SHOW_SBITS(re, &s->gb, 12); SKIP_BITS(re, &s->gb, 12); | |
1241 | |
1242 i += run; | |
1243 j = scantable[i]; | |
1244 if(level<0){ | |
1245 level= ((-level*2+1)*qscale*quant_matrix[j])>>5; | |
1246 level= -level; | |
1247 }else{ | |
1248 level= ((level*2+1)*qscale*quant_matrix[j])>>5; | |
1249 } | |
1250 } | |
1251 if (i > 63){ | |
1252 fprintf(stderr, "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y); | |
1253 return -1; | |
1254 } | |
1255 | |
1256 mismatch ^= level; | |
1257 block[j] = level; | |
0 | 1258 } |
520
19a5e2a81e1a
new bitstream reader API (old get_bits() based one is emulated and will still be supported in the future cuz its simpler)
michaelni
parents:
498
diff
changeset
|
1259 CLOSE_READER(re, &s->gb); |
0 | 1260 } |
1261 block[63] ^= (mismatch & 1); | |
714 | 1262 |
0 | 1263 s->block_last_index[n] = i; |
1264 return 0; | |
1265 } | |
1266 | |
714 | 1267 static inline int mpeg2_decode_block_intra(MpegEncContext *s, |
1268 DCTELEM *block, | |
1269 int n) | |
0 | 1270 { |
1271 int level, dc, diff, i, j, run; | |
714 | 1272 int component; |
0 | 1273 RLTable *rl; |
715
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1274 UINT8 * const scantable= s->intra_scantable.permutated; |
714 | 1275 const UINT16 *quant_matrix; |
1276 const int qscale= s->qscale; | |
0 | 1277 int mismatch; |
1278 | |
1279 /* DC coef */ | |
714 | 1280 if (n < 4){ |
1281 quant_matrix = s->intra_matrix; | |
1282 component = 0; | |
1283 }else{ | |
1284 quant_matrix = s->chroma_intra_matrix; | |
1285 component = n - 3; | |
1286 } | |
0 | 1287 diff = decode_dc(s, component); |
1288 if (diff >= 0xffff) | |
1289 return -1; | |
1290 dc = s->last_dc[component]; | |
1291 dc += diff; | |
1292 s->last_dc[component] = dc; | |
1293 block[0] = dc << (3 - s->intra_dc_precision); | |
1294 dprintf("dc=%d\n", block[0]); | |
58
0e0a24def67a
fixed last zero mv for field - fixed mismatch handling for intra coefs
glantau
parents:
54
diff
changeset
|
1295 mismatch = block[0] ^ 1; |
714 | 1296 i = 0; |
0 | 1297 if (s->intra_vlc_format) |
1298 rl = &rl_mpeg2; | |
1299 else | |
1300 rl = &rl_mpeg1; | |
59
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1301 |
714 | 1302 { |
1303 OPEN_READER(re, &s->gb); | |
1304 /* now quantify & encode AC coefs */ | |
1305 for(;;) { | |
1306 UPDATE_CACHE(re, &s->gb); | |
1307 GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2); | |
1308 | |
1309 if(level == 127){ | |
1310 break; | |
1311 } else if(level != 0) { | |
1312 i += run; | |
1313 j = scantable[i]; | |
1314 level= (level*qscale*quant_matrix[j])>>4; | |
1315 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
1316 LAST_SKIP_BITS(re, &s->gb, 1); | |
1317 } else { | |
1318 /* escape */ | |
1319 run = SHOW_UBITS(re, &s->gb, 6)+1; LAST_SKIP_BITS(re, &s->gb, 6); | |
1320 UPDATE_CACHE(re, &s->gb); | |
1321 level = SHOW_SBITS(re, &s->gb, 12); SKIP_BITS(re, &s->gb, 12); | |
1322 i += run; | |
1323 j = scantable[i]; | |
1324 if(level<0){ | |
1325 level= (-level*qscale*quant_matrix[j])>>4; | |
1326 level= -level; | |
1327 }else{ | |
1328 level= (level*qscale*quant_matrix[j])>>4; | |
1329 } | |
1330 } | |
1331 if (i > 63){ | |
1332 fprintf(stderr, "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y); | |
1333 return -1; | |
1334 } | |
1335 | |
1336 mismatch^= level; | |
1337 block[j] = level; | |
568 | 1338 } |
714 | 1339 CLOSE_READER(re, &s->gb); |
0 | 1340 } |
714 | 1341 block[63]^= mismatch&1; |
1342 | |
0 | 1343 s->block_last_index[n] = i; |
1344 return 0; | |
1345 } | |
1346 | |
1347 /* compressed picture size */ | |
1348 #define PICTURE_BUFFER_SIZE 100000 | |
1349 | |
1350 typedef struct Mpeg1Context { | |
1351 MpegEncContext mpeg_enc_ctx; | |
1352 UINT32 header_state; | |
1353 int start_code; /* current start code */ | |
1354 UINT8 buffer[PICTURE_BUFFER_SIZE]; | |
1355 UINT8 *buf_ptr; | |
1356 int buffer_size; | |
1357 int mpeg_enc_ctx_allocated; /* true if decoding context allocated */ | |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1358 int repeat_field; /* true if we must repeat the field */ |
0 | 1359 } Mpeg1Context; |
1360 | |
1361 static int mpeg_decode_init(AVCodecContext *avctx) | |
1362 { | |
1363 Mpeg1Context *s = avctx->priv_data; | |
498 | 1364 |
558 | 1365 s->mpeg_enc_ctx.flags= avctx->flags; |
498 | 1366 common_init(&s->mpeg_enc_ctx); |
647
22b22723805e
support decoding of the last mpeg "packet" even if no startcode is immedeatly afterwards (fixes bugs with mpeg in avi)
michaelni
parents:
639
diff
changeset
|
1367 init_vlcs(&s->mpeg_enc_ctx); |
0 | 1368 |
1369 s->header_state = 0xff; | |
1370 s->mpeg_enc_ctx_allocated = 0; | |
1371 s->buffer_size = PICTURE_BUFFER_SIZE; | |
1372 s->start_code = -1; | |
1373 s->buf_ptr = s->buffer; | |
1374 s->mpeg_enc_ctx.picture_number = 0; | |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1375 s->repeat_field = 0; |
344 | 1376 s->mpeg_enc_ctx.codec_id= avctx->codec->id; |
0 | 1377 return 0; |
1378 } | |
1379 | |
1380 /* return the 8 bit start code value and update the search | |
1381 state. Return -1 if no start code found */ | |
1382 static int find_start_code(UINT8 **pbuf_ptr, UINT8 *buf_end, | |
1383 UINT32 *header_state) | |
1384 { | |
1385 UINT8 *buf_ptr; | |
1386 unsigned int state, v; | |
1387 int val; | |
1388 | |
1389 state = *header_state; | |
1390 buf_ptr = *pbuf_ptr; | |
1391 while (buf_ptr < buf_end) { | |
1392 v = *buf_ptr++; | |
1393 if (state == 0x000001) { | |
1394 state = ((state << 8) | v) & 0xffffff; | |
1395 val = state; | |
1396 goto found; | |
1397 } | |
1398 state = ((state << 8) | v) & 0xffffff; | |
1399 } | |
1400 val = -1; | |
1401 found: | |
1402 *pbuf_ptr = buf_ptr; | |
1403 *header_state = state; | |
1404 return val; | |
1405 } | |
1406 | |
1407 static int mpeg1_decode_picture(AVCodecContext *avctx, | |
1408 UINT8 *buf, int buf_size) | |
1409 { | |
1410 Mpeg1Context *s1 = avctx->priv_data; | |
1411 MpegEncContext *s = &s1->mpeg_enc_ctx; | |
1412 int ref, f_code; | |
1413 | |
1414 init_get_bits(&s->gb, buf, buf_size); | |
1415 | |
1416 ref = get_bits(&s->gb, 10); /* temporal ref */ | |
1417 s->pict_type = get_bits(&s->gb, 3); | |
45
933cc4acab5c
fixed mpeg1 last block bug (mb stuffing code was not included in vlc table...)
glantau
parents:
38
diff
changeset
|
1418 dprintf("pict_type=%d number=%d\n", s->pict_type, s->picture_number); |
872 | 1419 |
21 | 1420 skip_bits(&s->gb, 16); |
0 | 1421 if (s->pict_type == P_TYPE || s->pict_type == B_TYPE) { |
21 | 1422 s->full_pel[0] = get_bits1(&s->gb); |
0 | 1423 f_code = get_bits(&s->gb, 3); |
1424 if (f_code == 0) | |
1425 return -1; | |
1426 s->mpeg_f_code[0][0] = f_code; | |
1427 s->mpeg_f_code[0][1] = f_code; | |
1428 } | |
1429 if (s->pict_type == B_TYPE) { | |
21 | 1430 s->full_pel[1] = get_bits1(&s->gb); |
0 | 1431 f_code = get_bits(&s->gb, 3); |
1432 if (f_code == 0) | |
1433 return -1; | |
1434 s->mpeg_f_code[1][0] = f_code; | |
1435 s->mpeg_f_code[1][1] = f_code; | |
1436 } | |
903 | 1437 s->current_picture.pict_type= s->pict_type; |
1438 s->current_picture.key_frame= s->pict_type == I_TYPE; | |
911 | 1439 |
0 | 1440 s->y_dc_scale = 8; |
1441 s->c_dc_scale = 8; | |
1442 s->first_slice = 1; | |
1443 return 0; | |
1444 } | |
1445 | |
1446 static void mpeg_decode_sequence_extension(MpegEncContext *s) | |
1447 { | |
1448 int horiz_size_ext, vert_size_ext; | |
917 | 1449 int bit_rate_ext, vbv_buf_ext; |
0 | 1450 int frame_rate_ext_n, frame_rate_ext_d; |
917 | 1451 float aspect; |
0 | 1452 |
21 | 1453 skip_bits(&s->gb, 8); /* profil and level */ |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1454 s->progressive_sequence = get_bits1(&s->gb); /* progressive_sequence */ |
21 | 1455 skip_bits(&s->gb, 2); /* chroma_format */ |
0 | 1456 horiz_size_ext = get_bits(&s->gb, 2); |
1457 vert_size_ext = get_bits(&s->gb, 2); | |
1458 s->width |= (horiz_size_ext << 12); | |
1459 s->height |= (vert_size_ext << 12); | |
1460 bit_rate_ext = get_bits(&s->gb, 12); /* XXX: handle it */ | |
1461 s->bit_rate = ((s->bit_rate / 400) | (bit_rate_ext << 12)) * 400; | |
21 | 1462 skip_bits1(&s->gb); /* marker */ |
0 | 1463 vbv_buf_ext = get_bits(&s->gb, 8); |
917 | 1464 s->low_delay = get_bits1(&s->gb); |
0 | 1465 frame_rate_ext_n = get_bits(&s->gb, 2); |
1466 frame_rate_ext_d = get_bits(&s->gb, 5); | |
1467 if (frame_rate_ext_d >= 1) | |
1468 s->frame_rate = (s->frame_rate * frame_rate_ext_n) / frame_rate_ext_d; | |
1469 dprintf("sequence extension\n"); | |
1470 s->mpeg2 = 1; | |
401
e20655449d4a
mpeg1/2 identifier - fixed frame rate for some bad mpeg1 streams
glantau
parents:
391
diff
changeset
|
1471 s->avctx->sub_id = 2; /* indicates mpeg2 found */ |
917 | 1472 |
1473 aspect= mpeg2_aspect[s->aspect_ratio_info]; | |
1474 if(aspect>0.0) s->avctx->aspect_ratio= s->width/(aspect*s->height); | |
1475 else if(aspect<0.0) s->avctx->aspect_ratio= -1.0/aspect; | |
0 | 1476 } |
1477 | |
1478 static void mpeg_decode_quant_matrix_extension(MpegEncContext *s) | |
1479 { | |
38
5bf15419d47e
changed quant matrix order (should fix mmx mpeg decoding bug)
glantau
parents:
21
diff
changeset
|
1480 int i, v, j; |
0 | 1481 |
59
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1482 dprintf("matrix extension\n"); |
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1483 |
21 | 1484 if (get_bits1(&s->gb)) { |
0 | 1485 for(i=0;i<64;i++) { |
1486 v = get_bits(&s->gb, 8); | |
718 | 1487 j= s->idct_permutation[ ff_zigzag_direct[i] ]; |
38
5bf15419d47e
changed quant matrix order (should fix mmx mpeg decoding bug)
glantau
parents:
21
diff
changeset
|
1488 s->intra_matrix[j] = v; |
5bf15419d47e
changed quant matrix order (should fix mmx mpeg decoding bug)
glantau
parents:
21
diff
changeset
|
1489 s->chroma_intra_matrix[j] = v; |
0 | 1490 } |
1491 } | |
21 | 1492 if (get_bits1(&s->gb)) { |
0 | 1493 for(i=0;i<64;i++) { |
1494 v = get_bits(&s->gb, 8); | |
718 | 1495 j= s->idct_permutation[ ff_zigzag_direct[i] ]; |
344 | 1496 s->inter_matrix[j] = v; |
1497 s->chroma_inter_matrix[j] = v; | |
0 | 1498 } |
1499 } | |
21 | 1500 if (get_bits1(&s->gb)) { |
0 | 1501 for(i=0;i<64;i++) { |
1502 v = get_bits(&s->gb, 8); | |
718 | 1503 j= s->idct_permutation[ ff_zigzag_direct[i] ]; |
38
5bf15419d47e
changed quant matrix order (should fix mmx mpeg decoding bug)
glantau
parents:
21
diff
changeset
|
1504 s->chroma_intra_matrix[j] = v; |
0 | 1505 } |
1506 } | |
21 | 1507 if (get_bits1(&s->gb)) { |
0 | 1508 for(i=0;i<64;i++) { |
1509 v = get_bits(&s->gb, 8); | |
718 | 1510 j= s->idct_permutation[ ff_zigzag_direct[i] ]; |
344 | 1511 s->chroma_inter_matrix[j] = v; |
0 | 1512 } |
1513 } | |
1514 } | |
1515 | |
1516 static void mpeg_decode_picture_coding_extension(MpegEncContext *s) | |
1517 { | |
1518 s->full_pel[0] = s->full_pel[1] = 0; | |
1519 s->mpeg_f_code[0][0] = get_bits(&s->gb, 4); | |
1520 s->mpeg_f_code[0][1] = get_bits(&s->gb, 4); | |
1521 s->mpeg_f_code[1][0] = get_bits(&s->gb, 4); | |
1522 s->mpeg_f_code[1][1] = get_bits(&s->gb, 4); | |
1523 s->intra_dc_precision = get_bits(&s->gb, 2); | |
1524 s->picture_structure = get_bits(&s->gb, 2); | |
21 | 1525 s->top_field_first = get_bits1(&s->gb); |
1526 s->frame_pred_frame_dct = get_bits1(&s->gb); | |
1527 s->concealment_motion_vectors = get_bits1(&s->gb); | |
1528 s->q_scale_type = get_bits1(&s->gb); | |
1529 s->intra_vlc_format = get_bits1(&s->gb); | |
1530 s->alternate_scan = get_bits1(&s->gb); | |
1531 s->repeat_first_field = get_bits1(&s->gb); | |
1532 s->chroma_420_type = get_bits1(&s->gb); | |
1533 s->progressive_frame = get_bits1(&s->gb); | |
715
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1534 |
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1535 if(s->alternate_scan){ |
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1536 ff_init_scantable(s, &s->inter_scantable , ff_alternate_vertical_scan); |
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1537 ff_init_scantable(s, &s->intra_scantable , ff_alternate_vertical_scan); |
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1538 ff_init_scantable(s, &s->intra_h_scantable, ff_alternate_vertical_scan); |
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1539 ff_init_scantable(s, &s->intra_v_scantable, ff_alternate_vertical_scan); |
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1540 }else{ |
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1541 ff_init_scantable(s, &s->inter_scantable , ff_zigzag_direct); |
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1542 ff_init_scantable(s, &s->intra_scantable , ff_zigzag_direct); |
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1543 ff_init_scantable(s, &s->intra_h_scantable, ff_alternate_horizontal_scan); |
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1544 ff_init_scantable(s, &s->intra_v_scantable, ff_alternate_vertical_scan); |
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1545 } |
8b3ccabfce4a
move scantable init from block-decode to header parser
michaelni
parents:
714
diff
changeset
|
1546 |
0 | 1547 /* composite display not parsed */ |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1548 dprintf("intra_dc_precision=%d\n", s->intra_dc_precision); |
59
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1549 dprintf("picture_structure=%d\n", s->picture_structure); |
383
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1550 dprintf("top field first=%d\n", s->top_field_first); |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1551 dprintf("repeat first field=%d\n", s->repeat_first_field); |
0 | 1552 dprintf("conceal=%d\n", s->concealment_motion_vectors); |
59
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1553 dprintf("intra_vlc_format=%d\n", s->intra_vlc_format); |
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1554 dprintf("alternate_scan=%d\n", s->alternate_scan); |
0 | 1555 dprintf("frame_pred_frame_dct=%d\n", s->frame_pred_frame_dct); |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1556 dprintf("progressive_frame=%d\n", s->progressive_frame); |
0 | 1557 } |
1558 | |
1559 static void mpeg_decode_extension(AVCodecContext *avctx, | |
1560 UINT8 *buf, int buf_size) | |
1561 { | |
1562 Mpeg1Context *s1 = avctx->priv_data; | |
1563 MpegEncContext *s = &s1->mpeg_enc_ctx; | |
1564 int ext_type; | |
1565 | |
1566 init_get_bits(&s->gb, buf, buf_size); | |
1567 | |
1568 ext_type = get_bits(&s->gb, 4); | |
1569 switch(ext_type) { | |
1570 case 0x1: | |
1571 /* sequence ext */ | |
1572 mpeg_decode_sequence_extension(s); | |
1573 break; | |
1574 case 0x3: | |
1575 /* quant matrix extension */ | |
1576 mpeg_decode_quant_matrix_extension(s); | |
1577 break; | |
1578 case 0x8: | |
1579 /* picture extension */ | |
1580 mpeg_decode_picture_coding_extension(s); | |
1581 break; | |
1582 } | |
1583 } | |
1584 | |
826 | 1585 #define DECODE_SLICE_FATAL_ERROR -2 |
1586 #define DECODE_SLICE_ERROR -1 | |
1587 #define DECODE_SLICE_OK 0 | |
1588 #define DECODE_SLICE_EOP 1 | |
1589 | |
1590 /** | |
1591 * decodes a slice. | |
1592 * @return DECODE_SLICE_FATAL_ERROR if a non recoverable error occured<br> | |
1593 * DECODE_SLICE_ERROR if the slice is damaged<br> | |
1594 * DECODE_SLICE_OK if this slice is ok<br> | |
1595 * DECODE_SLICE_EOP if the end of the picture is reached | |
1596 */ | |
0 | 1597 static int mpeg_decode_slice(AVCodecContext *avctx, |
925 | 1598 AVFrame *pict, |
0 | 1599 int start_code, |
1600 UINT8 *buf, int buf_size) | |
1601 { | |
1602 Mpeg1Context *s1 = avctx->priv_data; | |
1603 MpegEncContext *s = &s1->mpeg_enc_ctx; | |
1604 int ret; | |
1605 | |
1606 start_code = (start_code - 1) & 0xff; | |
568 | 1607 if (start_code >= s->mb_height){ |
647
22b22723805e
support decoding of the last mpeg "packet" even if no startcode is immedeatly afterwards (fixes bugs with mpeg in avi)
michaelni
parents:
639
diff
changeset
|
1608 fprintf(stderr, "slice below image (%d >= %d)\n", start_code, s->mb_height); |
826 | 1609 return DECODE_SLICE_ERROR; |
568 | 1610 } |
0 | 1611 s->last_dc[0] = 1 << (7 + s->intra_dc_precision); |
1612 s->last_dc[1] = s->last_dc[0]; | |
1613 s->last_dc[2] = s->last_dc[0]; | |
1614 memset(s->last_mv, 0, sizeof(s->last_mv)); | |
1615 /* start frame decoding */ | |
1616 if (s->first_slice) { | |
1617 s->first_slice = 0; | |
771
d4cc92144266
handle direct rendering buffer allocation failure
michaelni
parents:
751
diff
changeset
|
1618 if(MPV_frame_start(s, avctx) < 0) |
826 | 1619 return DECODE_SLICE_FATAL_ERROR; |
0 | 1620 } |
1621 | |
1622 init_get_bits(&s->gb, buf, buf_size); | |
1623 | |
54 | 1624 s->qscale = get_qscale(s); |
0 | 1625 /* extra slice info */ |
21 | 1626 while (get_bits1(&s->gb) != 0) { |
1627 skip_bits(&s->gb, 8); | |
0 | 1628 } |
1629 | |
716 | 1630 s->mb_x=0; |
1631 for(;;) { | |
1632 int code = get_vlc2(&s->gb, mbincr_vlc.table, MBINCR_VLC_BITS, 2); | |
1633 if (code < 0) | |
1634 return -1; /* error = end of slice, but empty slice is bad or?*/ | |
1635 if (code >= 33) { | |
1636 if (code == 33) { | |
1637 s->mb_x += 33; | |
1638 } | |
1639 /* otherwise, stuffing, nothing to do */ | |
1640 } else { | |
1641 s->mb_x += code; | |
1642 break; | |
1643 } | |
1644 } | |
1645 s->mb_y = start_code; | |
1646 s->mb_incr= 1; | |
1647 | |
0 | 1648 for(;;) { |
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
844
diff
changeset
|
1649 s->dsp.clear_blocks(s->block[0]); |
716 | 1650 |
12
4d50c7d89e0f
use block[] in structure to have it aligned on 8 bytes for mmx optimizations
glantau
parents:
7
diff
changeset
|
1651 ret = mpeg_decode_mb(s, s->block); |
0 | 1652 dprintf("ret=%d\n", ret); |
1653 if (ret < 0) | |
1654 return -1; | |
694 | 1655 |
716 | 1656 MPV_decode_mb(s, s->block); |
1657 | |
1658 if (++s->mb_x >= s->mb_width) { | |
813 | 1659 ff_draw_horiz_band(s); |
716 | 1660 |
1661 s->mb_x = 0; | |
1662 s->mb_y++; | |
694 | 1663 PRINT_QP("%s", "\n"); |
716 | 1664 } |
694 | 1665 PRINT_QP("%2d", s->qscale); |
716 | 1666 |
1667 /* skip mb handling */ | |
1668 if (s->mb_incr == 0) { | |
1669 /* read again increment */ | |
1670 s->mb_incr = 1; | |
1671 for(;;) { | |
1672 int code = get_vlc2(&s->gb, mbincr_vlc.table, MBINCR_VLC_BITS, 2); | |
1673 if (code < 0) | |
1674 goto eos; /* error = end of slice */ | |
1675 if (code >= 33) { | |
1676 if (code == 33) { | |
1677 s->mb_incr += 33; | |
1678 } | |
1679 /* otherwise, stuffing, nothing to do */ | |
1680 } else { | |
1681 s->mb_incr += code; | |
1682 break; | |
1683 } | |
1684 } | |
1685 } | |
1686 if(s->mb_y >= s->mb_height){ | |
1687 fprintf(stderr, "slice too long\n"); | |
826 | 1688 return DECODE_SLICE_ERROR; |
716 | 1689 } |
0 | 1690 } |
716 | 1691 eos: //end of slice |
1692 | |
305
1de85b419387
emms was missing, found by juanjo but he didnt commit it?!
michaelni
parents:
296
diff
changeset
|
1693 emms_c(); |
1de85b419387
emms was missing, found by juanjo but he didnt commit it?!
michaelni
parents:
296
diff
changeset
|
1694 |
0 | 1695 /* end of slice reached */ |
716 | 1696 if (/*s->mb_x == 0 &&*/ |
1697 s->mb_y == s->mb_height) { | |
0 | 1698 /* end of image */ |
903 | 1699 |
1700 if(s->mpeg2) | |
1701 s->qscale >>=1; | |
0 | 1702 |
1703 MPV_frame_end(s); | |
1704 | |
924 | 1705 if (s->pict_type == B_TYPE || s->low_delay) { |
925 | 1706 *pict= *(AVFrame*)&s->current_picture; |
0 | 1707 } else { |
903 | 1708 s->picture_number++; |
0 | 1709 /* latency of 1 frame for I and P frames */ |
1710 /* XXX: use another variable than picture_number */ | |
903 | 1711 if (s->picture_number == 1) { |
1712 return DECODE_SLICE_OK; | |
0 | 1713 } else { |
925 | 1714 *pict= *(AVFrame*)&s->last_picture; |
0 | 1715 } |
1716 } | |
903 | 1717 return DECODE_SLICE_EOP; |
0 | 1718 } else { |
826 | 1719 return DECODE_SLICE_OK; |
0 | 1720 } |
1721 } | |
1722 | |
1723 static int mpeg1_decode_sequence(AVCodecContext *avctx, | |
1724 UINT8 *buf, int buf_size) | |
1725 { | |
1726 Mpeg1Context *s1 = avctx->priv_data; | |
1727 MpegEncContext *s = &s1->mpeg_enc_ctx; | |
38
5bf15419d47e
changed quant matrix order (should fix mmx mpeg decoding bug)
glantau
parents:
21
diff
changeset
|
1728 int width, height, i, v, j; |
917 | 1729 float aspect; |
401
e20655449d4a
mpeg1/2 identifier - fixed frame rate for some bad mpeg1 streams
glantau
parents:
391
diff
changeset
|
1730 |
0 | 1731 init_get_bits(&s->gb, buf, buf_size); |
1732 | |
1733 width = get_bits(&s->gb, 12); | |
1734 height = get_bits(&s->gb, 12); | |
917 | 1735 s->aspect_ratio_info= get_bits(&s->gb, 4); |
1736 if(!s->mpeg2){ | |
1737 aspect= mpeg1_aspect[s->aspect_ratio_info]; | |
1738 if(aspect!=0.0) avctx->aspect_ratio= width/(aspect*height); | |
1739 } | |
1740 | |
0 | 1741 s->frame_rate_index = get_bits(&s->gb, 4); |
1742 if (s->frame_rate_index == 0) | |
1743 return -1; | |
1744 s->bit_rate = get_bits(&s->gb, 18) * 400; | |
21 | 1745 if (get_bits1(&s->gb) == 0) /* marker */ |
0 | 1746 return -1; |
1747 if (width <= 0 || height <= 0 || | |
1748 (width % 2) != 0 || (height % 2) != 0) | |
1749 return -1; | |
1750 if (width != s->width || | |
1751 height != s->height) { | |
1752 /* start new mpeg1 context decoding */ | |
1753 s->out_format = FMT_MPEG1; | |
1754 if (s1->mpeg_enc_ctx_allocated) { | |
1755 MPV_common_end(s); | |
1756 } | |
1757 s->width = width; | |
1758 s->height = height; | |
924 | 1759 avctx->has_b_frames= 1; |
69 | 1760 s->avctx = avctx; |
0 | 1761 avctx->width = width; |
1762 avctx->height = height; | |
401
e20655449d4a
mpeg1/2 identifier - fixed frame rate for some bad mpeg1 streams
glantau
parents:
391
diff
changeset
|
1763 if (s->frame_rate_index >= 9) { |
e20655449d4a
mpeg1/2 identifier - fixed frame rate for some bad mpeg1 streams
glantau
parents:
391
diff
changeset
|
1764 /* at least give a valid frame rate (some old mpeg1 have this) */ |
e20655449d4a
mpeg1/2 identifier - fixed frame rate for some bad mpeg1 streams
glantau
parents:
391
diff
changeset
|
1765 avctx->frame_rate = 25 * FRAME_RATE_BASE; |
e20655449d4a
mpeg1/2 identifier - fixed frame rate for some bad mpeg1 streams
glantau
parents:
391
diff
changeset
|
1766 } else { |
e20655449d4a
mpeg1/2 identifier - fixed frame rate for some bad mpeg1 streams
glantau
parents:
391
diff
changeset
|
1767 avctx->frame_rate = frame_rate_tab[s->frame_rate_index]; |
e20655449d4a
mpeg1/2 identifier - fixed frame rate for some bad mpeg1 streams
glantau
parents:
391
diff
changeset
|
1768 } |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1769 s->frame_rate = avctx->frame_rate; |
0 | 1770 avctx->bit_rate = s->bit_rate; |
1771 | |
1772 if (MPV_common_init(s) < 0) | |
1773 return -1; | |
1774 s1->mpeg_enc_ctx_allocated = 1; | |
1775 } | |
1776 | |
21 | 1777 skip_bits(&s->gb, 10); /* vbv_buffer_size */ |
1778 skip_bits(&s->gb, 1); | |
0 | 1779 |
1780 /* get matrix */ | |
21 | 1781 if (get_bits1(&s->gb)) { |
0 | 1782 for(i=0;i<64;i++) { |
1783 v = get_bits(&s->gb, 8); | |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
1784 j = s->intra_scantable.permutated[i]; |
38
5bf15419d47e
changed quant matrix order (should fix mmx mpeg decoding bug)
glantau
parents:
21
diff
changeset
|
1785 s->intra_matrix[j] = v; |
5bf15419d47e
changed quant matrix order (should fix mmx mpeg decoding bug)
glantau
parents:
21
diff
changeset
|
1786 s->chroma_intra_matrix[j] = v; |
0 | 1787 } |
59
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1788 #ifdef DEBUG |
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1789 dprintf("intra matrix present\n"); |
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1790 for(i=0;i<64;i++) |
710
97377ab86647
forgot zigzag_direct[] behind #ifdef DEBUG (found by Klaas-Pieter Vlieg <vlieg at eurescom dot de>)
michaelni
parents:
706
diff
changeset
|
1791 dprintf(" %d", s->intra_matrix[s->intra_scantable.permutated[i]]); |
59
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1792 printf("\n"); |
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1793 #endif |
0 | 1794 } else { |
1795 for(i=0;i<64;i++) { | |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
1796 int j= s->idct_permutation[i]; |
533
3c07cf9595de
adding ff prefix to avoid global name conficts with xvid (patch by Marko Kreen <marko at l-t.ee>)
michaelni
parents:
520
diff
changeset
|
1797 v = ff_mpeg1_default_intra_matrix[i]; |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
1798 s->intra_matrix[j] = v; |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
1799 s->chroma_intra_matrix[j] = v; |
0 | 1800 } |
1801 } | |
21 | 1802 if (get_bits1(&s->gb)) { |
0 | 1803 for(i=0;i<64;i++) { |
1804 v = get_bits(&s->gb, 8); | |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
1805 j = s->intra_scantable.permutated[i]; |
344 | 1806 s->inter_matrix[j] = v; |
1807 s->chroma_inter_matrix[j] = v; | |
0 | 1808 } |
59
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1809 #ifdef DEBUG |
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1810 dprintf("non intra matrix present\n"); |
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1811 for(i=0;i<64;i++) |
710
97377ab86647
forgot zigzag_direct[] behind #ifdef DEBUG (found by Klaas-Pieter Vlieg <vlieg at eurescom dot de>)
michaelni
parents:
706
diff
changeset
|
1812 dprintf(" %d", s->inter_matrix[s->intra_scantable.permutated[i]]); |
59
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1813 printf("\n"); |
efd3c19f6d62
fixed mpeg2 non intra dequant - fixed MPEG1 and 2 matrix parsing
glantau
parents:
58
diff
changeset
|
1814 #endif |
0 | 1815 } else { |
1816 for(i=0;i<64;i++) { | |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
1817 int j= s->idct_permutation[i]; |
533
3c07cf9595de
adding ff prefix to avoid global name conficts with xvid (patch by Marko Kreen <marko at l-t.ee>)
michaelni
parents:
520
diff
changeset
|
1818 v = ff_mpeg1_default_non_intra_matrix[i]; |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
1819 s->inter_matrix[j] = v; |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
694
diff
changeset
|
1820 s->chroma_inter_matrix[j] = v; |
0 | 1821 } |
1822 } | |
1823 | |
1824 /* we set mpeg2 parameters so that it emulates mpeg1 */ | |
1825 s->progressive_sequence = 1; | |
1826 s->progressive_frame = 1; | |
1827 s->picture_structure = PICT_FRAME; | |
1828 s->frame_pred_frame_dct = 1; | |
1829 s->mpeg2 = 0; | |
401
e20655449d4a
mpeg1/2 identifier - fixed frame rate for some bad mpeg1 streams
glantau
parents:
391
diff
changeset
|
1830 avctx->sub_id = 1; /* indicates mpeg1 */ |
0 | 1831 return 0; |
1832 } | |
1833 | |
1834 /* handle buffering and image synchronisation */ | |
1835 static int mpeg_decode_frame(AVCodecContext *avctx, | |
1836 void *data, int *data_size, | |
1837 UINT8 *buf, int buf_size) | |
1838 { | |
1839 Mpeg1Context *s = avctx->priv_data; | |
1840 UINT8 *buf_end, *buf_ptr, *buf_start; | |
1841 int len, start_code_found, ret, code, start_code, input_size; | |
925 | 1842 AVFrame *picture = data; |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1843 MpegEncContext *s2 = &s->mpeg_enc_ctx; |
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1844 |
0 | 1845 dprintf("fill_buffer\n"); |
1846 | |
1847 *data_size = 0; | |
344 | 1848 |
0 | 1849 /* special case for last picture */ |
1850 if (buf_size == 0) { | |
1851 if (s2->picture_number > 0) { | |
925 | 1852 *picture= *(AVFrame*)&s2->next_picture; |
903 | 1853 |
925 | 1854 *data_size = sizeof(AVFrame); |
0 | 1855 } |
1856 return 0; | |
1857 } | |
1858 | |
1859 buf_ptr = buf; | |
1860 buf_end = buf + buf_size; | |
383
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1861 |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1862 #if 0 |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1863 if (s->repeat_field % 2 == 1) { |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1864 s->repeat_field++; |
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1865 //fprintf(stderr,"\nRepeating last frame: %d -> %d! pict: %d %d", avctx->frame_number-1, avctx->frame_number, |
383
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1866 // s2->picture_number, s->repeat_field); |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1867 if (avctx->flags & CODEC_FLAG_REPEAT_FIELD) { |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1868 *data_size = sizeof(AVPicture); |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1869 goto the_end; |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1870 } |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1871 } |
383
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1872 #endif |
0 | 1873 while (buf_ptr < buf_end) { |
1874 buf_start = buf_ptr; | |
1875 /* find start next code */ | |
1876 code = find_start_code(&buf_ptr, buf_end, &s->header_state); | |
1877 if (code >= 0) { | |
1878 start_code_found = 1; | |
1879 } else { | |
1880 start_code_found = 0; | |
1881 } | |
1882 /* copy to buffer */ | |
1883 len = buf_ptr - buf_start; | |
1884 if (len + (s->buf_ptr - s->buffer) > s->buffer_size) { | |
1885 /* data too big : flush */ | |
1886 s->buf_ptr = s->buffer; | |
1887 if (start_code_found) | |
1888 s->start_code = code; | |
1889 } else { | |
1890 memcpy(s->buf_ptr, buf_start, len); | |
1891 s->buf_ptr += len; | |
842
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
826
diff
changeset
|
1892 if( (!(s2->flags&CODEC_FLAG_TRUNCATED)) && (!start_code_found) |
647
22b22723805e
support decoding of the last mpeg "packet" even if no startcode is immedeatly afterwards (fixes bugs with mpeg in avi)
michaelni
parents:
639
diff
changeset
|
1893 && s->buf_ptr+4<s->buffer+s->buffer_size){ |
22b22723805e
support decoding of the last mpeg "packet" even if no startcode is immedeatly afterwards (fixes bugs with mpeg in avi)
michaelni
parents:
639
diff
changeset
|
1894 start_code_found= 1; |
22b22723805e
support decoding of the last mpeg "packet" even if no startcode is immedeatly afterwards (fixes bugs with mpeg in avi)
michaelni
parents:
639
diff
changeset
|
1895 code= 0x1FF; |
22b22723805e
support decoding of the last mpeg "packet" even if no startcode is immedeatly afterwards (fixes bugs with mpeg in avi)
michaelni
parents:
639
diff
changeset
|
1896 s->header_state=0xFF; |
22b22723805e
support decoding of the last mpeg "packet" even if no startcode is immedeatly afterwards (fixes bugs with mpeg in avi)
michaelni
parents:
639
diff
changeset
|
1897 s->buf_ptr[0]=0; |
22b22723805e
support decoding of the last mpeg "packet" even if no startcode is immedeatly afterwards (fixes bugs with mpeg in avi)
michaelni
parents:
639
diff
changeset
|
1898 s->buf_ptr[1]=0; |
22b22723805e
support decoding of the last mpeg "packet" even if no startcode is immedeatly afterwards (fixes bugs with mpeg in avi)
michaelni
parents:
639
diff
changeset
|
1899 s->buf_ptr[2]=1; |
22b22723805e
support decoding of the last mpeg "packet" even if no startcode is immedeatly afterwards (fixes bugs with mpeg in avi)
michaelni
parents:
639
diff
changeset
|
1900 s->buf_ptr[3]=0xFF; |
22b22723805e
support decoding of the last mpeg "packet" even if no startcode is immedeatly afterwards (fixes bugs with mpeg in avi)
michaelni
parents:
639
diff
changeset
|
1901 s->buf_ptr+=4; |
22b22723805e
support decoding of the last mpeg "packet" even if no startcode is immedeatly afterwards (fixes bugs with mpeg in avi)
michaelni
parents:
639
diff
changeset
|
1902 } |
0 | 1903 if (start_code_found) { |
1904 /* prepare data for next start code */ | |
1905 input_size = s->buf_ptr - s->buffer; | |
1906 start_code = s->start_code; | |
1907 s->buf_ptr = s->buffer; | |
1908 s->start_code = code; | |
1909 switch(start_code) { | |
1910 case SEQ_START_CODE: | |
1911 mpeg1_decode_sequence(avctx, s->buffer, | |
1912 input_size); | |
1913 break; | |
1914 | |
1915 case PICTURE_START_CODE: | |
1916 /* we have a complete image : we try to decompress it */ | |
1917 mpeg1_decode_picture(avctx, | |
1918 s->buffer, input_size); | |
1919 break; | |
1920 case EXT_START_CODE: | |
1921 mpeg_decode_extension(avctx, | |
1922 s->buffer, input_size); | |
1923 break; | |
1924 default: | |
1925 if (start_code >= SLICE_MIN_START_CODE && | |
911 | 1926 start_code <= SLICE_MAX_START_CODE) { |
917 | 1927 |
1928 /* skip b frames if we dont have reference frames */ | |
1929 if(s2->last_picture.data[0]==NULL && s2->pict_type==B_TYPE) break; | |
1930 /* skip b frames if we are in a hurry */ | |
1931 if(avctx->hurry_up && s2->pict_type==B_TYPE) break; | |
1932 /* skip everything if we are in a hurry>=5 */ | |
1933 if(avctx->hurry_up>=5) break; | |
1934 | |
0 | 1935 ret = mpeg_decode_slice(avctx, picture, |
1936 start_code, s->buffer, input_size); | |
826 | 1937 if (ret == DECODE_SLICE_EOP) { |
0 | 1938 /* got a picture: exit */ |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1939 /* first check if we must repeat the frame */ |
383
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1940 avctx->repeat_pict = 0; |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1941 #if 0 |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1942 if (s2->progressive_frame && s2->repeat_first_field) { |
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1943 //fprintf(stderr,"\nRepeat this frame: %d! pict: %d",avctx->frame_number,s2->picture_number); |
383
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1944 //s2->repeat_first_field = 0; |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1945 //s2->progressive_frame = 0; |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1946 if (++s->repeat_field > 2) |
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1947 s->repeat_field = 0; |
383
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1948 avctx->repeat_pict = 1; |
267
e10840e4f773
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine)
pulento
parents:
241
diff
changeset
|
1949 } |
383
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1950 #endif |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1951 if (s2->repeat_first_field) { |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1952 if (s2->progressive_sequence) { |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1953 if (s2->top_field_first) |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1954 avctx->repeat_pict = 4; |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1955 else |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1956 avctx->repeat_pict = 2; |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1957 } else if (s2->progressive_frame) { |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1958 avctx->repeat_pict = 1; |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1959 } |
e6b64bc3bc87
- repeat_pict meaning changed, now it signals the extra delay for the
pulento
parents:
377
diff
changeset
|
1960 } |
0 | 1961 *data_size = sizeof(AVPicture); |
1962 goto the_end; | |
825 | 1963 }else if(ret<0){ |
890
653d9419ea01
dont put flies in the stdout soup patch by (Agent Smith <asmith at wgz dot com>)
michaelni
parents:
885
diff
changeset
|
1964 fprintf(stderr,"Error while decoding slice\n"); |
826 | 1965 if(ret==DECODE_SLICE_FATAL_ERROR) return -1; |
0 | 1966 } |
1967 } | |
1968 break; | |
1969 } | |
1970 } | |
1971 } | |
1972 } | |
1973 the_end: | |
1974 return buf_ptr - buf; | |
1975 } | |
1976 | |
1977 static int mpeg_decode_end(AVCodecContext *avctx) | |
1978 { | |
1979 Mpeg1Context *s = avctx->priv_data; | |
1980 | |
1981 if (s->mpeg_enc_ctx_allocated) | |
1982 MPV_common_end(&s->mpeg_enc_ctx); | |
1983 return 0; | |
1984 } | |
1985 | |
1986 AVCodec mpeg_decoder = { | |
1987 "mpegvideo", | |
1988 CODEC_TYPE_VIDEO, | |
1989 CODEC_ID_MPEG1VIDEO, | |
1990 sizeof(Mpeg1Context), | |
1991 mpeg_decode_init, | |
1992 NULL, | |
1993 mpeg_decode_end, | |
1994 mpeg_decode_frame, | |
842
e460775adb38
cleanup (breaks compatibility, requested by fabrice)
michaelni
parents:
826
diff
changeset
|
1995 CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED, |
0 | 1996 }; |