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