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