]> git.sesse.net Git - ffmpeg/blob - libavcodec/mpeg12.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / mpeg12.c
1 /*
2  * MPEG-1/2 decoder
3  * Copyright (c) 2000, 2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * MPEG-1/2 decoder
26  */
27
28 #define UNCHECKED_BITSTREAM_READER 1
29
30 //#define DEBUG
31 #include "internal.h"
32 #include "avcodec.h"
33 #include "dsputil.h"
34 #include "mpegvideo.h"
35 #include "libavutil/avassert.h"
36 #include "libavutil/timecode.h"
37
38 #include "mpeg12.h"
39 #include "mpeg12data.h"
40 #include "mpeg12decdata.h"
41 #include "bytestream.h"
42 #include "vdpau_internal.h"
43 #include "xvmc_internal.h"
44 #include "thread.h"
45
46 //#undef NDEBUG
47 //#include <assert.h>
48
49
50 #define MV_VLC_BITS 9
51 #define MBINCR_VLC_BITS 9
52 #define MB_PAT_VLC_BITS 9
53 #define MB_PTYPE_VLC_BITS 6
54 #define MB_BTYPE_VLC_BITS 6
55
56 static VLC mv_vlc;
57
58 /* as H.263, but only 17 codes */
59 static int mpeg_decode_motion(MpegEncContext *s, int fcode, int pred)
60 {
61     int code, sign, val, shift;
62
63     code = get_vlc2(&s->gb, mv_vlc.table, MV_VLC_BITS, 2);
64     if (code == 0) {
65         return pred;
66     }
67     if (code < 0) {
68         return 0xffff;
69     }
70
71     sign  = get_bits1(&s->gb);
72     shift = fcode - 1;
73     val   = code;
74     if (shift) {
75         val  = (val - 1) << shift;
76         val |= get_bits(&s->gb, shift);
77         val++;
78     }
79     if (sign)
80         val = -val;
81     val += pred;
82
83     /* modulo decoding */
84     return sign_extend(val, 5 + shift);
85 }
86
87 static inline int mpeg1_decode_block_intra(MpegEncContext *s, DCTELEM *block, int n)
88 {
89     int level, dc, diff, i, j, run;
90     int component;
91     RLTable *rl = &ff_rl_mpeg1;
92     uint8_t * const scantable    = s->intra_scantable.permutated;
93     const uint16_t *quant_matrix = s->intra_matrix;
94     const int qscale             = s->qscale;
95
96     /* DC coefficient */
97     component = (n <= 3 ? 0 : n - 4 + 1);
98     diff = decode_dc(&s->gb, component);
99     if (diff >= 0xffff)
100         return -1;
101     dc  = s->last_dc[component];
102     dc += diff;
103     s->last_dc[component] = dc;
104     block[0] = dc * quant_matrix[0];
105     av_dlog(s->avctx, "dc=%d diff=%d\n", dc, diff);
106     i = 0;
107     {
108         OPEN_READER(re, &s->gb);
109         /* now quantify & encode AC coefficients */
110         for (;;) {
111             UPDATE_CACHE(re, &s->gb);
112             GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);
113
114             if (level == 127) {
115                 break;
116             } else if (level != 0) {
117                 i += run;
118                 j = scantable[i];
119                 level = (level * qscale * quant_matrix[j]) >> 4;
120                 level = (level - 1) | 1;
121                 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
122                 LAST_SKIP_BITS(re, &s->gb, 1);
123             } else {
124                 /* escape */
125                 run = SHOW_UBITS(re, &s->gb, 6) + 1; LAST_SKIP_BITS(re, &s->gb, 6);
126                 UPDATE_CACHE(re, &s->gb);
127                 level = SHOW_SBITS(re, &s->gb, 8); SKIP_BITS(re, &s->gb, 8);
128                 if (level == -128) {
129                     level = SHOW_UBITS(re, &s->gb, 8) - 256; LAST_SKIP_BITS(re, &s->gb, 8);
130                 } else if (level == 0) {
131                     level = SHOW_UBITS(re, &s->gb, 8)      ; LAST_SKIP_BITS(re, &s->gb, 8);
132                 }
133                 i += run;
134                 j = scantable[i];
135                 if (level < 0) {
136                     level = -level;
137                     level = (level * qscale * quant_matrix[j]) >> 4;
138                     level = (level - 1) | 1;
139                     level = -level;
140                 } else {
141                     level = (level * qscale * quant_matrix[j]) >> 4;
142                     level = (level - 1) | 1;
143                 }
144             }
145             if (i > 63) {
146                 av_log(s->avctx, AV_LOG_ERROR, "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y);
147                 return -1;
148             }
149
150             block[j] = level;
151         }
152         CLOSE_READER(re, &s->gb);
153     }
154     s->block_last_index[n] = i;
155    return 0;
156 }
157
158 int ff_mpeg1_decode_block_intra(MpegEncContext *s, DCTELEM *block, int n)
159 {
160     return mpeg1_decode_block_intra(s, block, n);
161 }
162
163 static inline int mpeg1_decode_block_inter(MpegEncContext *s, DCTELEM *block, int n)
164 {
165     int level, i, j, run;
166     RLTable *rl = &ff_rl_mpeg1;
167     uint8_t * const scantable    = s->intra_scantable.permutated;
168     const uint16_t *quant_matrix = s->inter_matrix;
169     const int qscale             = s->qscale;
170
171     {
172         OPEN_READER(re, &s->gb);
173         i = -1;
174         // special case for first coefficient, no need to add second VLC table
175         UPDATE_CACHE(re, &s->gb);
176         if (((int32_t)GET_CACHE(re, &s->gb)) < 0) {
177             level = (3 * qscale * quant_matrix[0]) >> 5;
178             level = (level - 1) | 1;
179             if (GET_CACHE(re, &s->gb) & 0x40000000)
180                 level = -level;
181             block[0] = level;
182             i++;
183             SKIP_BITS(re, &s->gb, 2);
184             if (((int32_t)GET_CACHE(re, &s->gb)) <= (int32_t)0xBFFFFFFF)
185                 goto end;
186         }
187         /* now quantify & encode AC coefficients */
188         for (;;) {
189             GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);
190
191             if (level != 0) {
192                 i += run;
193                 j = scantable[i];
194                 level = ((level * 2 + 1) * qscale * quant_matrix[j]) >> 5;
195                 level = (level - 1) | 1;
196                 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
197                 SKIP_BITS(re, &s->gb, 1);
198             } else {
199                 /* escape */
200                 run = SHOW_UBITS(re, &s->gb, 6) + 1; LAST_SKIP_BITS(re, &s->gb, 6);
201                 UPDATE_CACHE(re, &s->gb);
202                 level = SHOW_SBITS(re, &s->gb, 8); SKIP_BITS(re, &s->gb, 8);
203                 if (level == -128) {
204                     level = SHOW_UBITS(re, &s->gb, 8) - 256; SKIP_BITS(re, &s->gb, 8);
205                 } else if (level == 0) {
206                     level = SHOW_UBITS(re, &s->gb, 8)      ; SKIP_BITS(re, &s->gb, 8);
207                 }
208                 i += run;
209                 j = scantable[i];
210                 if (level < 0) {
211                     level = -level;
212                     level = ((level * 2 + 1) * qscale * quant_matrix[j]) >> 5;
213                     level = (level - 1) | 1;
214                     level = -level;
215                 } else {
216                     level = ((level * 2 + 1) * qscale * quant_matrix[j]) >> 5;
217                     level = (level - 1) | 1;
218                 }
219             }
220             if (i > 63) {
221                 av_log(s->avctx, AV_LOG_ERROR, "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y);
222                 return -1;
223             }
224
225             block[j] = level;
226             if (((int32_t)GET_CACHE(re, &s->gb)) <= (int32_t)0xBFFFFFFF)
227                 break;
228             UPDATE_CACHE(re, &s->gb);
229         }
230 end:
231         LAST_SKIP_BITS(re, &s->gb, 2);
232         CLOSE_READER(re, &s->gb);
233     }
234     s->block_last_index[n] = i;
235     return 0;
236 }
237
238 static inline int mpeg1_fast_decode_block_inter(MpegEncContext *s, DCTELEM *block, int n)
239 {
240     int level, i, j, run;
241     RLTable *rl = &ff_rl_mpeg1;
242     uint8_t * const scantable = s->intra_scantable.permutated;
243     const int qscale          = s->qscale;
244
245     {
246         OPEN_READER(re, &s->gb);
247         i = -1;
248         // special case for first coefficient, no need to add second VLC table
249         UPDATE_CACHE(re, &s->gb);
250         if (((int32_t)GET_CACHE(re, &s->gb)) < 0) {
251             level = (3 * qscale) >> 1;
252             level = (level - 1) | 1;
253             if (GET_CACHE(re, &s->gb) & 0x40000000)
254                 level = -level;
255             block[0] = level;
256             i++;
257             SKIP_BITS(re, &s->gb, 2);
258             if (((int32_t)GET_CACHE(re, &s->gb)) <= (int32_t)0xBFFFFFFF)
259                 goto end;
260         }
261
262         /* now quantify & encode AC coefficients */
263         for (;;) {
264             GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);
265
266             if (level != 0) {
267                 i += run;
268                 j = scantable[i];
269                 level = ((level * 2 + 1) * qscale) >> 1;
270                 level = (level - 1) | 1;
271                 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
272                 SKIP_BITS(re, &s->gb, 1);
273             } else {
274                 /* escape */
275                 run = SHOW_UBITS(re, &s->gb, 6)+1; LAST_SKIP_BITS(re, &s->gb, 6);
276                 UPDATE_CACHE(re, &s->gb);
277                 level = SHOW_SBITS(re, &s->gb, 8); SKIP_BITS(re, &s->gb, 8);
278                 if (level == -128) {
279                     level = SHOW_UBITS(re, &s->gb, 8) - 256; SKIP_BITS(re, &s->gb, 8);
280                 } else if (level == 0) {
281                     level = SHOW_UBITS(re, &s->gb, 8)      ; SKIP_BITS(re, &s->gb, 8);
282                 }
283                 i += run;
284                 j = scantable[i];
285                 if (level < 0) {
286                     level = -level;
287                     level = ((level * 2 + 1) * qscale) >> 1;
288                     level = (level - 1) | 1;
289                     level = -level;
290                 } else {
291                     level = ((level * 2 + 1) * qscale) >> 1;
292                     level = (level - 1) | 1;
293                 }
294             }
295
296             block[j] = level;
297             if (((int32_t)GET_CACHE(re, &s->gb)) <= (int32_t)0xBFFFFFFF)
298                 break;
299             UPDATE_CACHE(re, &s->gb);
300         }
301 end:
302         LAST_SKIP_BITS(re, &s->gb, 2);
303         CLOSE_READER(re, &s->gb);
304     }
305     s->block_last_index[n] = i;
306     return 0;
307 }
308
309
310 static inline int mpeg2_decode_block_non_intra(MpegEncContext *s, DCTELEM *block, int n)
311 {
312     int level, i, j, run;
313     RLTable *rl = &ff_rl_mpeg1;
314     uint8_t * const scantable = s->intra_scantable.permutated;
315     const uint16_t *quant_matrix;
316     const int qscale = s->qscale;
317     int mismatch;
318
319     mismatch = 1;
320
321     {
322         OPEN_READER(re, &s->gb);
323         i = -1;
324         if (n < 4)
325             quant_matrix = s->inter_matrix;
326         else
327             quant_matrix = s->chroma_inter_matrix;
328
329         // special case for first coefficient, no need to add second VLC table
330         UPDATE_CACHE(re, &s->gb);
331         if (((int32_t)GET_CACHE(re, &s->gb)) < 0) {
332             level= (3 * qscale * quant_matrix[0]) >> 5;
333             if (GET_CACHE(re, &s->gb) & 0x40000000)
334                 level = -level;
335             block[0]  = level;
336             mismatch ^= level;
337             i++;
338             SKIP_BITS(re, &s->gb, 2);
339             if (((int32_t)GET_CACHE(re, &s->gb)) <= (int32_t)0xBFFFFFFF)
340                 goto end;
341         }
342
343         /* now quantify & encode AC coefficients */
344         for (;;) {
345             GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);
346
347             if (level != 0) {
348                 i += run;
349                 j = scantable[i];
350                 level = ((level * 2 + 1) * qscale * quant_matrix[j]) >> 5;
351                 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
352                 SKIP_BITS(re, &s->gb, 1);
353             } else {
354                 /* escape */
355                 run = SHOW_UBITS(re, &s->gb, 6) + 1; LAST_SKIP_BITS(re, &s->gb, 6);
356                 UPDATE_CACHE(re, &s->gb);
357                 level = SHOW_SBITS(re, &s->gb, 12); SKIP_BITS(re, &s->gb, 12);
358
359                 i += run;
360                 j = scantable[i];
361                 if (level < 0) {
362                     level = ((-level * 2 + 1) * qscale * quant_matrix[j]) >> 5;
363                     level = -level;
364                 } else {
365                     level = ((level * 2 + 1) * qscale * quant_matrix[j]) >> 5;
366                 }
367             }
368             if (i > 63) {
369                 av_log(s->avctx, AV_LOG_ERROR, "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y);
370                 return -1;
371             }
372
373             mismatch ^= level;
374             block[j]  = level;
375             if (((int32_t)GET_CACHE(re, &s->gb)) <= (int32_t)0xBFFFFFFF)
376                 break;
377             UPDATE_CACHE(re, &s->gb);
378         }
379 end:
380         LAST_SKIP_BITS(re, &s->gb, 2);
381         CLOSE_READER(re, &s->gb);
382     }
383     block[63] ^= (mismatch & 1);
384
385     s->block_last_index[n] = i;
386     return 0;
387 }
388
389 static inline int mpeg2_fast_decode_block_non_intra(MpegEncContext *s,
390                                                     DCTELEM *block, int n)
391 {
392     int level, i, j, run;
393     RLTable *rl = &ff_rl_mpeg1;
394     uint8_t * const scantable = s->intra_scantable.permutated;
395     const int qscale          = s->qscale;
396     OPEN_READER(re, &s->gb);
397     i = -1;
398
399     // special case for first coefficient, no need to add second VLC table
400     UPDATE_CACHE(re, &s->gb);
401     if (((int32_t)GET_CACHE(re, &s->gb)) < 0) {
402         level = (3 * qscale) >> 1;
403         if (GET_CACHE(re, &s->gb) & 0x40000000)
404             level = -level;
405         block[0] = level;
406         i++;
407         SKIP_BITS(re, &s->gb, 2);
408         if (((int32_t)GET_CACHE(re, &s->gb)) <= (int32_t)0xBFFFFFFF)
409             goto end;
410     }
411
412     /* now quantify & encode AC coefficients */
413     for (;;) {
414         GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);
415
416         if (level != 0) {
417             i += run;
418             j  = scantable[i];
419             level = ((level * 2 + 1) * qscale) >> 1;
420             level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
421             SKIP_BITS(re, &s->gb, 1);
422         } else {
423             /* escape */
424             run = SHOW_UBITS(re, &s->gb, 6) + 1; LAST_SKIP_BITS(re, &s->gb, 6);
425             UPDATE_CACHE(re, &s->gb);
426             level = SHOW_SBITS(re, &s->gb, 12); SKIP_BITS(re, &s->gb, 12);
427
428             i += run;
429             j  = scantable[i];
430             if (level < 0) {
431                 level = ((-level * 2 + 1) * qscale) >> 1;
432                 level = -level;
433             } else {
434                 level = ((level * 2 + 1) * qscale) >> 1;
435             }
436         }
437
438         block[j] = level;
439         if (((int32_t)GET_CACHE(re, &s->gb)) <= (int32_t)0xBFFFFFFF)
440             break;
441         UPDATE_CACHE(re, &s->gb);
442     }
443 end:
444     LAST_SKIP_BITS(re, &s->gb, 2);
445     CLOSE_READER(re, &s->gb);
446     s->block_last_index[n] = i;
447     return 0;
448 }
449
450
451 static inline int mpeg2_decode_block_intra(MpegEncContext *s, DCTELEM *block, int n)
452 {
453     int level, dc, diff, i, j, run;
454     int component;
455     RLTable *rl;
456     uint8_t * const scantable = s->intra_scantable.permutated;
457     const uint16_t *quant_matrix;
458     const int qscale = s->qscale;
459     int mismatch;
460
461     /* DC coefficient */
462     if (n < 4) {
463         quant_matrix = s->intra_matrix;
464         component = 0;
465     } else {
466         quant_matrix = s->chroma_intra_matrix;
467         component = (n & 1) + 1;
468     }
469     diff = decode_dc(&s->gb, component);
470     if (diff >= 0xffff)
471         return -1;
472     dc  = s->last_dc[component];
473     dc += diff;
474     s->last_dc[component] = dc;
475     block[0] = dc << (3 - s->intra_dc_precision);
476     av_dlog(s->avctx, "dc=%d\n", block[0]);
477     mismatch = block[0] ^ 1;
478     i = 0;
479     if (s->intra_vlc_format)
480         rl = &ff_rl_mpeg2;
481     else
482         rl = &ff_rl_mpeg1;
483
484     {
485         OPEN_READER(re, &s->gb);
486         /* now quantify & encode AC coefficients */
487         for (;;) {
488             UPDATE_CACHE(re, &s->gb);
489             GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);
490
491             if (level == 127) {
492                 break;
493             } else if (level != 0) {
494                 i += run;
495                 j  = scantable[i];
496                 level = (level * qscale * quant_matrix[j]) >> 4;
497                 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
498                 LAST_SKIP_BITS(re, &s->gb, 1);
499             } else {
500                 /* escape */
501                 run = SHOW_UBITS(re, &s->gb, 6) + 1; LAST_SKIP_BITS(re, &s->gb, 6);
502                 UPDATE_CACHE(re, &s->gb);
503                 level = SHOW_SBITS(re, &s->gb, 12); SKIP_BITS(re, &s->gb, 12);
504                 i += run;
505                 j  = scantable[i];
506                 if (level < 0) {
507                     level = (-level * qscale * quant_matrix[j]) >> 4;
508                     level = -level;
509                 } else {
510                     level = (level * qscale * quant_matrix[j]) >> 4;
511                 }
512             }
513             if (i > 63) {
514                 av_log(s->avctx, AV_LOG_ERROR, "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y);
515                 return -1;
516             }
517
518             mismatch ^= level;
519             block[j]  = level;
520         }
521         CLOSE_READER(re, &s->gb);
522     }
523     block[63] ^= mismatch & 1;
524
525     s->block_last_index[n] = i;
526     return 0;
527 }
528
529 static inline int mpeg2_fast_decode_block_intra(MpegEncContext *s, DCTELEM *block, int n)
530 {
531     int level, dc, diff, j, run;
532     int component;
533     RLTable *rl;
534     uint8_t * scantable = s->intra_scantable.permutated;
535     const uint16_t *quant_matrix;
536     const int qscale = s->qscale;
537
538     /* DC coefficient */
539     if (n < 4) {
540         quant_matrix = s->intra_matrix;
541         component = 0;
542     } else {
543         quant_matrix = s->chroma_intra_matrix;
544         component = (n & 1) + 1;
545     }
546     diff = decode_dc(&s->gb, component);
547     if (diff >= 0xffff)
548         return -1;
549     dc = s->last_dc[component];
550     dc += diff;
551     s->last_dc[component] = dc;
552     block[0] = dc << (3 - s->intra_dc_precision);
553     if (s->intra_vlc_format)
554         rl = &ff_rl_mpeg2;
555     else
556         rl = &ff_rl_mpeg1;
557
558     {
559         OPEN_READER(re, &s->gb);
560         /* now quantify & encode AC coefficients */
561         for (;;) {
562             UPDATE_CACHE(re, &s->gb);
563             GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);
564
565             if (level == 127) {
566                 break;
567             } else if (level != 0) {
568                 scantable += run;
569                 j = *scantable;
570                 level = (level * qscale * quant_matrix[j]) >> 4;
571                 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
572                 LAST_SKIP_BITS(re, &s->gb, 1);
573             } else {
574                 /* escape */
575                 run = SHOW_UBITS(re, &s->gb, 6) + 1; LAST_SKIP_BITS(re, &s->gb, 6);
576                 UPDATE_CACHE(re, &s->gb);
577                 level = SHOW_SBITS(re, &s->gb, 12); SKIP_BITS(re, &s->gb, 12);
578                 scantable += run;
579                 j = *scantable;
580                 if (level < 0) {
581                     level = (-level * qscale * quant_matrix[j]) >> 4;
582                     level = -level;
583                 } else {
584                     level = (level * qscale * quant_matrix[j]) >> 4;
585                 }
586             }
587
588             block[j] = level;
589         }
590         CLOSE_READER(re, &s->gb);
591     }
592
593     s->block_last_index[n] = scantable - s->intra_scantable.permutated;
594     return 0;
595 }
596
597 uint8_t ff_mpeg12_static_rl_table_store[2][2][2*MAX_RUN + MAX_LEVEL + 3];
598
599 #define INIT_2D_VLC_RL(rl, static_size)\
600 {\
601     static RL_VLC_ELEM rl_vlc_table[static_size];\
602     INIT_VLC_STATIC(&rl.vlc, TEX_VLC_BITS, rl.n + 2,\
603                     &rl.table_vlc[0][1], 4, 2,\
604                     &rl.table_vlc[0][0], 4, 2, static_size);\
605 \
606     rl.rl_vlc[0] = rl_vlc_table;\
607     init_2d_vlc_rl(&rl);\
608 }
609
610 static void init_2d_vlc_rl(RLTable *rl)
611 {
612     int i;
613
614     for (i = 0; i < rl->vlc.table_size; i++) {
615         int code = rl->vlc.table[i][0];
616         int len  = rl->vlc.table[i][1];
617         int level, run;
618
619         if (len == 0) { // illegal code
620             run   = 65;
621             level = MAX_LEVEL;
622         } else if (len<0) { //more bits needed
623             run   = 0;
624             level = code;
625         } else {
626             if (code == rl->n) { //esc
627                 run   = 65;
628                 level = 0;
629             } else if (code == rl->n+1) { //eob
630                 run   = 0;
631                 level = 127;
632             } else {
633                 run   = rl->table_run  [code] + 1;
634                 level = rl->table_level[code];
635             }
636         }
637         rl->rl_vlc[0][i].len   = len;
638         rl->rl_vlc[0][i].level = level;
639         rl->rl_vlc[0][i].run   = run;
640     }
641 }
642
643 void ff_mpeg12_common_init(MpegEncContext *s)
644 {
645
646     s->y_dc_scale_table =
647     s->c_dc_scale_table = ff_mpeg2_dc_scale_table[s->intra_dc_precision];
648
649 }
650
651 void ff_mpeg1_clean_buffers(MpegEncContext *s)
652 {
653     s->last_dc[0] = 1 << (7 + s->intra_dc_precision);
654     s->last_dc[1] = s->last_dc[0];
655     s->last_dc[2] = s->last_dc[0];
656     memset(s->last_mv, 0, sizeof(s->last_mv));
657 }
658
659
660 /******************************************/
661 /* decoding */
662
663 VLC ff_dc_lum_vlc;
664 VLC ff_dc_chroma_vlc;
665
666 static VLC mbincr_vlc;
667 static VLC mb_ptype_vlc;
668 static VLC mb_btype_vlc;
669 static VLC mb_pat_vlc;
670
671 av_cold void ff_mpeg12_init_vlcs(void)
672 {
673     static int done = 0;
674
675     if (!done) {
676         done = 1;
677
678         INIT_VLC_STATIC(&ff_dc_lum_vlc, DC_VLC_BITS, 12,
679                         ff_mpeg12_vlc_dc_lum_bits, 1, 1,
680                         ff_mpeg12_vlc_dc_lum_code, 2, 2, 512);
681         INIT_VLC_STATIC(&ff_dc_chroma_vlc,  DC_VLC_BITS, 12,
682                         ff_mpeg12_vlc_dc_chroma_bits, 1, 1,
683                         ff_mpeg12_vlc_dc_chroma_code, 2, 2, 514);
684         INIT_VLC_STATIC(&mv_vlc, MV_VLC_BITS, 17,
685                         &ff_mpeg12_mbMotionVectorTable[0][1], 2, 1,
686                         &ff_mpeg12_mbMotionVectorTable[0][0], 2, 1, 518);
687         INIT_VLC_STATIC(&mbincr_vlc, MBINCR_VLC_BITS, 36,
688                         &ff_mpeg12_mbAddrIncrTable[0][1], 2, 1,
689                         &ff_mpeg12_mbAddrIncrTable[0][0], 2, 1, 538);
690         INIT_VLC_STATIC(&mb_pat_vlc, MB_PAT_VLC_BITS, 64,
691                         &ff_mpeg12_mbPatTable[0][1], 2, 1,
692                         &ff_mpeg12_mbPatTable[0][0], 2, 1, 512);
693
694         INIT_VLC_STATIC(&mb_ptype_vlc, MB_PTYPE_VLC_BITS, 7,
695                         &table_mb_ptype[0][1], 2, 1,
696                         &table_mb_ptype[0][0], 2, 1, 64);
697         INIT_VLC_STATIC(&mb_btype_vlc, MB_BTYPE_VLC_BITS, 11,
698                         &table_mb_btype[0][1], 2, 1,
699                         &table_mb_btype[0][0], 2, 1, 64);
700         init_rl(&ff_rl_mpeg1, ff_mpeg12_static_rl_table_store[0]);
701         init_rl(&ff_rl_mpeg2, ff_mpeg12_static_rl_table_store[1]);
702
703         INIT_2D_VLC_RL(ff_rl_mpeg1, 680);
704         INIT_2D_VLC_RL(ff_rl_mpeg2, 674);
705     }
706 }
707
708 static inline int get_dmv(MpegEncContext *s)
709 {
710     if (get_bits1(&s->gb))
711         return 1 - (get_bits1(&s->gb) << 1);
712     else
713         return 0;
714 }
715
716 static inline int get_qscale(MpegEncContext *s)
717 {
718     int qscale = get_bits(&s->gb, 5);
719     if (s->q_scale_type) {
720         return non_linear_qscale[qscale];
721     } else {
722         return qscale << 1;
723     }
724 }
725
726 static void exchange_uv(MpegEncContext *s)
727 {
728     DCTELEM (*tmp)[64];
729
730     tmp           = s->pblocks[4];
731     s->pblocks[4] = s->pblocks[5];
732     s->pblocks[5] = tmp;
733 }
734
735 /* motion type (for MPEG-2) */
736 #define MT_FIELD 1
737 #define MT_FRAME 2
738 #define MT_16X8  2
739 #define MT_DMV   3
740
741 static int mpeg_decode_mb(MpegEncContext *s, DCTELEM block[12][64])
742 {
743     int i, j, k, cbp, val, mb_type, motion_type;
744     const int mb_block_count = 4 + (1 << s->chroma_format);
745
746     av_dlog(s->avctx, "decode_mb: x=%d y=%d\n", s->mb_x, s->mb_y);
747
748     assert(s->mb_skipped == 0);
749
750     if (s->mb_skip_run-- != 0) {
751         if (s->pict_type == AV_PICTURE_TYPE_P) {
752             s->mb_skipped = 1;
753             s->current_picture.f.mb_type[s->mb_x + s->mb_y * s->mb_stride] = MB_TYPE_SKIP | MB_TYPE_L0 | MB_TYPE_16x16;
754         } else {
755             int mb_type;
756
757             if (s->mb_x)
758                 mb_type = s->current_picture.f.mb_type[s->mb_x + s->mb_y * s->mb_stride - 1];
759             else
760                 mb_type = s->current_picture.f.mb_type[s->mb_width + (s->mb_y - 1) * s->mb_stride - 1]; // FIXME not sure if this is allowed in MPEG at all
761             if (IS_INTRA(mb_type))
762                 return -1;
763             s->current_picture.f.mb_type[s->mb_x + s->mb_y*s->mb_stride] =
764                 mb_type | MB_TYPE_SKIP;
765 //            assert(s->current_picture.f.mb_type[s->mb_x + s->mb_y * s->mb_stride - 1] & (MB_TYPE_16x16 | MB_TYPE_16x8));
766
767             if ((s->mv[0][0][0] | s->mv[0][0][1] | s->mv[1][0][0] | s->mv[1][0][1]) == 0)
768                 s->mb_skipped = 1;
769         }
770
771         return 0;
772     }
773
774     switch (s->pict_type) {
775     default:
776     case AV_PICTURE_TYPE_I:
777         if (get_bits1(&s->gb) == 0) {
778             if (get_bits1(&s->gb) == 0) {
779                 av_log(s->avctx, AV_LOG_ERROR, "invalid mb type in I Frame at %d %d\n", s->mb_x, s->mb_y);
780                 return -1;
781             }
782             mb_type = MB_TYPE_QUANT | MB_TYPE_INTRA;
783         } else {
784             mb_type = MB_TYPE_INTRA;
785         }
786         break;
787     case AV_PICTURE_TYPE_P:
788         mb_type = get_vlc2(&s->gb, mb_ptype_vlc.table, MB_PTYPE_VLC_BITS, 1);
789         if (mb_type < 0) {
790             av_log(s->avctx, AV_LOG_ERROR, "invalid mb type in P Frame at %d %d\n", s->mb_x, s->mb_y);
791             return -1;
792         }
793         mb_type = ptype2mb_type[mb_type];
794         break;
795     case AV_PICTURE_TYPE_B:
796         mb_type = get_vlc2(&s->gb, mb_btype_vlc.table, MB_BTYPE_VLC_BITS, 1);
797         if (mb_type < 0) {
798             av_log(s->avctx, AV_LOG_ERROR, "invalid mb type in B Frame at %d %d\n", s->mb_x, s->mb_y);
799             return -1;
800         }
801         mb_type = btype2mb_type[mb_type];
802         break;
803     }
804     av_dlog(s->avctx, "mb_type=%x\n", mb_type);
805 //    motion_type = 0; /* avoid warning */
806     if (IS_INTRA(mb_type)) {
807         s->dsp.clear_blocks(s->block[0]);
808
809         if (!s->chroma_y_shift) {
810             s->dsp.clear_blocks(s->block[6]);
811         }
812
813         /* compute DCT type */
814         if (s->picture_structure == PICT_FRAME && // FIXME add an interlaced_dct coded var?
815             !s->frame_pred_frame_dct) {
816             s->interlaced_dct = get_bits1(&s->gb);
817         }
818
819         if (IS_QUANT(mb_type))
820             s->qscale = get_qscale(s);
821
822         if (s->concealment_motion_vectors) {
823             /* just parse them */
824             if (s->picture_structure != PICT_FRAME)
825                 skip_bits1(&s->gb); /* field select */
826
827             s->mv[0][0][0]= s->last_mv[0][0][0]= s->last_mv[0][1][0] =
828                 mpeg_decode_motion(s, s->mpeg_f_code[0][0], s->last_mv[0][0][0]);
829             s->mv[0][0][1]= s->last_mv[0][0][1]= s->last_mv[0][1][1] =
830                 mpeg_decode_motion(s, s->mpeg_f_code[0][1], s->last_mv[0][0][1]);
831
832             skip_bits1(&s->gb); /* marker */
833         } else
834             memset(s->last_mv, 0, sizeof(s->last_mv)); /* reset mv prediction */
835         s->mb_intra = 1;
836         // if 1, we memcpy blocks in xvmcvideo
837         if (CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration > 1) {
838             ff_xvmc_pack_pblocks(s, -1); // inter are always full blocks
839             if (s->swap_uv) {
840                 exchange_uv(s);
841             }
842         }
843
844         if (s->codec_id == CODEC_ID_MPEG2VIDEO) {
845             if (s->flags2 & CODEC_FLAG2_FAST) {
846                 for (i = 0; i < 6; i++) {
847                     mpeg2_fast_decode_block_intra(s, *s->pblocks[i], i);
848                 }
849             } else {
850                 for (i = 0; i < mb_block_count; i++) {
851                     if (mpeg2_decode_block_intra(s, *s->pblocks[i], i) < 0)
852                         return -1;
853                 }
854             }
855         } else {
856             for (i = 0; i < 6; i++) {
857                 if (mpeg1_decode_block_intra(s, *s->pblocks[i], i) < 0)
858                     return -1;
859             }
860         }
861     } else {
862         if (mb_type & MB_TYPE_ZERO_MV) {
863             assert(mb_type & MB_TYPE_CBP);
864
865             s->mv_dir = MV_DIR_FORWARD;
866             if (s->picture_structure == PICT_FRAME) {
867                 if (!s->frame_pred_frame_dct)
868                     s->interlaced_dct = get_bits1(&s->gb);
869                 s->mv_type = MV_TYPE_16X16;
870             } else {
871                 s->mv_type = MV_TYPE_FIELD;
872                 mb_type |= MB_TYPE_INTERLACED;
873                 s->field_select[0][0] = s->picture_structure - 1;
874             }
875
876             if (IS_QUANT(mb_type))
877                 s->qscale = get_qscale(s);
878
879             s->last_mv[0][0][0] = 0;
880             s->last_mv[0][0][1] = 0;
881             s->last_mv[0][1][0] = 0;
882             s->last_mv[0][1][1] = 0;
883             s->mv[0][0][0] = 0;
884             s->mv[0][0][1] = 0;
885         } else {
886             assert(mb_type & MB_TYPE_L0L1);
887             // FIXME decide if MBs in field pictures are MB_TYPE_INTERLACED
888             /* get additional motion vector type */
889             if (s->frame_pred_frame_dct)
890                 motion_type = MT_FRAME;
891             else {
892                 motion_type = get_bits(&s->gb, 2);
893                 if (s->picture_structure == PICT_FRAME && HAS_CBP(mb_type))
894                     s->interlaced_dct = get_bits1(&s->gb);
895             }
896
897             if (IS_QUANT(mb_type))
898                 s->qscale = get_qscale(s);
899
900             /* motion vectors */
901             s->mv_dir = (mb_type >> 13) & 3;
902             av_dlog(s->avctx, "motion_type=%d\n", motion_type);
903             switch (motion_type) {
904             case MT_FRAME: /* or MT_16X8 */
905                 if (s->picture_structure == PICT_FRAME) {
906                     mb_type |= MB_TYPE_16x16;
907                     s->mv_type = MV_TYPE_16X16;
908                     for (i = 0; i < 2; i++) {
909                         if (USES_LIST(mb_type, i)) {
910                             /* MT_FRAME */
911                             s->mv[i][0][0]= s->last_mv[i][0][0]= s->last_mv[i][1][0] =
912                                 mpeg_decode_motion(s, s->mpeg_f_code[i][0], s->last_mv[i][0][0]);
913                             s->mv[i][0][1]= s->last_mv[i][0][1]= s->last_mv[i][1][1] =
914                                 mpeg_decode_motion(s, s->mpeg_f_code[i][1], s->last_mv[i][0][1]);
915                             /* full_pel: only for MPEG-1 */
916                             if (s->full_pel[i]) {
917                                 s->mv[i][0][0] <<= 1;
918                                 s->mv[i][0][1] <<= 1;
919                             }
920                         }
921                     }
922                 } else {
923                     mb_type |= MB_TYPE_16x8 | MB_TYPE_INTERLACED;
924                     s->mv_type = MV_TYPE_16X8;
925                     for (i = 0; i < 2; i++) {
926                         if (USES_LIST(mb_type, i)) {
927                             /* MT_16X8 */
928                             for (j = 0; j < 2; j++) {
929                                 s->field_select[i][j] = get_bits1(&s->gb);
930                                 for (k = 0; k < 2; k++) {
931                                     val = mpeg_decode_motion(s, s->mpeg_f_code[i][k],
932                                                              s->last_mv[i][j][k]);
933                                     s->last_mv[i][j][k] = val;
934                                     s->mv[i][j][k]      = val;
935                                 }
936                             }
937                         }
938                     }
939                 }
940                 break;
941             case MT_FIELD:
942                 s->mv_type = MV_TYPE_FIELD;
943                 if (s->picture_structure == PICT_FRAME) {
944                     mb_type |= MB_TYPE_16x8 | MB_TYPE_INTERLACED;
945                     for (i = 0; i < 2; i++) {
946                         if (USES_LIST(mb_type, i)) {
947                             for (j = 0; j < 2; j++) {
948                                 s->field_select[i][j] = get_bits1(&s->gb);
949                                 val = mpeg_decode_motion(s, s->mpeg_f_code[i][0],
950                                                          s->last_mv[i][j][0]);
951                                 s->last_mv[i][j][0] = val;
952                                 s->mv[i][j][0]      = val;
953                                 av_dlog(s->avctx, "fmx=%d\n", val);
954                                 val = mpeg_decode_motion(s, s->mpeg_f_code[i][1],
955                                                          s->last_mv[i][j][1] >> 1);
956                                 s->last_mv[i][j][1] = val << 1;
957                                 s->mv[i][j][1]      = val;
958                                 av_dlog(s->avctx, "fmy=%d\n", val);
959                             }
960                         }
961                     }
962                 } else {
963                     av_assert0(!s->progressive_sequence);
964                     mb_type |= MB_TYPE_16x16 | MB_TYPE_INTERLACED;
965                     for (i = 0; i < 2; i++) {
966                         if (USES_LIST(mb_type, i)) {
967                             s->field_select[i][0] = get_bits1(&s->gb);
968                             for (k = 0; k < 2; k++) {
969                                 val = mpeg_decode_motion(s, s->mpeg_f_code[i][k],
970                                                          s->last_mv[i][0][k]);
971                                 s->last_mv[i][0][k] = val;
972                                 s->last_mv[i][1][k] = val;
973                                 s->mv[i][0][k]      = val;
974                             }
975                         }
976                     }
977                 }
978                 break;
979             case MT_DMV:
980                 if(s->progressive_sequence){
981                     av_log(s->avctx, AV_LOG_ERROR, "MT_DMV in progressive_sequence\n");
982                     return -1;
983                 }
984                 s->mv_type = MV_TYPE_DMV;
985                 for (i = 0; i < 2; i++) {
986                     if (USES_LIST(mb_type, i)) {
987                         int dmx, dmy, mx, my, m;
988                         const int my_shift = s->picture_structure == PICT_FRAME;
989
990                         mx = mpeg_decode_motion(s, s->mpeg_f_code[i][0],
991                                                 s->last_mv[i][0][0]);
992                         s->last_mv[i][0][0] = mx;
993                         s->last_mv[i][1][0] = mx;
994                         dmx = get_dmv(s);
995                         my  = mpeg_decode_motion(s, s->mpeg_f_code[i][1],
996                                                  s->last_mv[i][0][1] >> my_shift);
997                         dmy = get_dmv(s);
998
999
1000                         s->last_mv[i][0][1] = my << my_shift;
1001                         s->last_mv[i][1][1] = my << my_shift;
1002
1003                         s->mv[i][0][0] = mx;
1004                         s->mv[i][0][1] = my;
1005                         s->mv[i][1][0] = mx; // not used
1006                         s->mv[i][1][1] = my; // not used
1007
1008                         if (s->picture_structure == PICT_FRAME) {
1009                             mb_type |= MB_TYPE_16x16 | MB_TYPE_INTERLACED;
1010
1011                             // m = 1 + 2 * s->top_field_first;
1012                             m = s->top_field_first ? 1 : 3;
1013
1014                             /* top -> top pred */
1015                             s->mv[i][2][0] = ((mx * m + (mx > 0)) >> 1) + dmx;
1016                             s->mv[i][2][1] = ((my * m + (my > 0)) >> 1) + dmy - 1;
1017                             m = 4 - m;
1018                             s->mv[i][3][0] = ((mx * m + (mx > 0)) >> 1) + dmx;
1019                             s->mv[i][3][1] = ((my * m + (my > 0)) >> 1) + dmy + 1;
1020                         } else {
1021                             mb_type |= MB_TYPE_16x16;
1022
1023                             s->mv[i][2][0] = ((mx + (mx > 0)) >> 1) + dmx;
1024                             s->mv[i][2][1] = ((my + (my > 0)) >> 1) + dmy;
1025                             if (s->picture_structure == PICT_TOP_FIELD)
1026                                 s->mv[i][2][1]--;
1027                             else
1028                                 s->mv[i][2][1]++;
1029                         }
1030                     }
1031                 }
1032                 break;
1033             default:
1034                 av_log(s->avctx, AV_LOG_ERROR, "00 motion_type at %d %d\n", s->mb_x, s->mb_y);
1035                 return -1;
1036             }
1037         }
1038
1039         s->mb_intra = 0;
1040         if (HAS_CBP(mb_type)) {
1041             s->dsp.clear_blocks(s->block[0]);
1042
1043             cbp = get_vlc2(&s->gb, mb_pat_vlc.table, MB_PAT_VLC_BITS, 1);
1044             if (mb_block_count > 6) {
1045                  cbp <<= mb_block_count - 6;
1046                  cbp  |= get_bits(&s->gb, mb_block_count - 6);
1047                  s->dsp.clear_blocks(s->block[6]);
1048             }
1049             if (cbp <= 0) {
1050                 av_log(s->avctx, AV_LOG_ERROR, "invalid cbp at %d %d\n", s->mb_x, s->mb_y);
1051                 return -1;
1052             }
1053
1054             //if 1, we memcpy blocks in xvmcvideo
1055             if (CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration > 1) {
1056                 ff_xvmc_pack_pblocks(s, cbp);
1057                 if (s->swap_uv) {
1058                     exchange_uv(s);
1059                 }
1060             }
1061
1062             if (s->codec_id == CODEC_ID_MPEG2VIDEO) {
1063                 if (s->flags2 & CODEC_FLAG2_FAST) {
1064                     for (i = 0; i < 6; i++) {
1065                         if (cbp & 32) {
1066                             mpeg2_fast_decode_block_non_intra(s, *s->pblocks[i], i);
1067                         } else {
1068                             s->block_last_index[i] = -1;
1069                         }
1070                         cbp += cbp;
1071                     }
1072                 } else {
1073                     cbp <<= 12-mb_block_count;
1074
1075                     for (i = 0; i < mb_block_count; i++) {
1076                         if (cbp & (1 << 11)) {
1077                             if (mpeg2_decode_block_non_intra(s, *s->pblocks[i], i) < 0)
1078                                 return -1;
1079                         } else {
1080                             s->block_last_index[i] = -1;
1081                         }
1082                         cbp += cbp;
1083                     }
1084                 }
1085             } else {
1086                 if (s->flags2 & CODEC_FLAG2_FAST) {
1087                     for (i = 0; i < 6; i++) {
1088                         if (cbp & 32) {
1089                             mpeg1_fast_decode_block_inter(s, *s->pblocks[i], i);
1090                         } else {
1091                             s->block_last_index[i] = -1;
1092                         }
1093                         cbp += cbp;
1094                     }
1095                 } else {
1096                     for (i = 0; i < 6; i++) {
1097                         if (cbp & 32) {
1098                             if (mpeg1_decode_block_inter(s, *s->pblocks[i], i) < 0)
1099                                 return -1;
1100                         } else {
1101                             s->block_last_index[i] = -1;
1102                         }
1103                         cbp += cbp;
1104                     }
1105                 }
1106             }
1107         } else {
1108             for (i = 0; i < 12; i++)
1109                 s->block_last_index[i] = -1;
1110         }
1111     }
1112
1113     s->current_picture.f.mb_type[s->mb_x + s->mb_y * s->mb_stride] = mb_type;
1114
1115     return 0;
1116 }
1117
1118 static av_cold int mpeg_decode_init(AVCodecContext *avctx)
1119 {
1120     Mpeg1Context *s = avctx->priv_data;
1121     MpegEncContext *s2 = &s->mpeg_enc_ctx;
1122     int i;
1123
1124     /* we need some permutation to store matrices,
1125      * until MPV_common_init() sets the real permutation. */
1126     for (i = 0; i < 64; i++)
1127        s2->dsp.idct_permutation[i]=i;
1128
1129     MPV_decode_defaults(s2);
1130
1131     s->mpeg_enc_ctx.avctx  = avctx;
1132     s->mpeg_enc_ctx.flags  = avctx->flags;
1133     s->mpeg_enc_ctx.flags2 = avctx->flags2;
1134     ff_mpeg12_common_init(&s->mpeg_enc_ctx);
1135     ff_mpeg12_init_vlcs();
1136
1137     s->mpeg_enc_ctx_allocated      = 0;
1138     s->mpeg_enc_ctx.picture_number = 0;
1139     s->repeat_field                = 0;
1140     s->mpeg_enc_ctx.codec_id       = avctx->codec->id;
1141     avctx->color_range = AVCOL_RANGE_MPEG;
1142     if (avctx->codec->id == CODEC_ID_MPEG1VIDEO)
1143         avctx->chroma_sample_location = AVCHROMA_LOC_CENTER;
1144     else
1145         avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
1146     return 0;
1147 }
1148
1149 static int mpeg_decode_update_thread_context(AVCodecContext *avctx, const AVCodecContext *avctx_from)
1150 {
1151     Mpeg1Context *ctx = avctx->priv_data, *ctx_from = avctx_from->priv_data;
1152     MpegEncContext *s = &ctx->mpeg_enc_ctx, *s1 = &ctx_from->mpeg_enc_ctx;
1153     int err;
1154
1155     if (avctx == avctx_from || !ctx_from->mpeg_enc_ctx_allocated || !s1->context_initialized)
1156         return 0;
1157
1158     err = ff_mpeg_update_thread_context(avctx, avctx_from);
1159     if (err) return err;
1160
1161     if (!ctx->mpeg_enc_ctx_allocated)
1162         memcpy(s + 1, s1 + 1, sizeof(Mpeg1Context) - sizeof(MpegEncContext));
1163
1164     if (!(s->pict_type == AV_PICTURE_TYPE_B || s->low_delay))
1165         s->picture_number++;
1166
1167     return 0;
1168 }
1169
1170 static void quant_matrix_rebuild(uint16_t *matrix, const uint8_t *old_perm,
1171                                  const uint8_t *new_perm)
1172 {
1173     uint16_t temp_matrix[64];
1174     int i;
1175
1176     memcpy(temp_matrix, matrix, 64 * sizeof(uint16_t));
1177
1178     for (i = 0; i < 64; i++) {
1179         matrix[new_perm[i]] = temp_matrix[old_perm[i]];
1180     }
1181 }
1182
1183 static const enum PixelFormat mpeg1_hwaccel_pixfmt_list_420[] = {
1184 #if CONFIG_MPEG_XVMC_DECODER
1185     PIX_FMT_XVMC_MPEG2_IDCT,
1186     PIX_FMT_XVMC_MPEG2_MC,
1187 #endif
1188 #if CONFIG_MPEG1_VDPAU_HWACCEL
1189     PIX_FMT_VDPAU_MPEG1,
1190 #endif
1191     PIX_FMT_YUV420P,
1192     PIX_FMT_NONE
1193 };
1194
1195 static const enum PixelFormat mpeg2_hwaccel_pixfmt_list_420[] = {
1196 #if CONFIG_MPEG_XVMC_DECODER
1197     PIX_FMT_XVMC_MPEG2_IDCT,
1198     PIX_FMT_XVMC_MPEG2_MC,
1199 #endif
1200 #if CONFIG_MPEG2_VDPAU_HWACCEL
1201     PIX_FMT_VDPAU_MPEG2,
1202 #endif
1203 #if CONFIG_MPEG2_DXVA2_HWACCEL
1204     PIX_FMT_DXVA2_VLD,
1205 #endif
1206 #if CONFIG_MPEG2_VAAPI_HWACCEL
1207     PIX_FMT_VAAPI_VLD,
1208 #endif
1209     PIX_FMT_YUV420P,
1210     PIX_FMT_NONE
1211 };
1212
1213 static inline int uses_vdpau(AVCodecContext *avctx) {
1214     return avctx->pix_fmt == PIX_FMT_VDPAU_MPEG1 || avctx->pix_fmt == PIX_FMT_VDPAU_MPEG2;
1215 }
1216
1217 static enum PixelFormat mpeg_get_pixelformat(AVCodecContext *avctx)
1218 {
1219     Mpeg1Context *s1 = avctx->priv_data;
1220     MpegEncContext *s = &s1->mpeg_enc_ctx;
1221
1222     if(s->chroma_format < 2) {
1223         enum PixelFormat res;
1224         res = avctx->get_format(avctx,
1225                                 avctx->codec_id == CODEC_ID_MPEG1VIDEO ?
1226                                 mpeg1_hwaccel_pixfmt_list_420 :
1227                                 mpeg2_hwaccel_pixfmt_list_420);
1228         if (res != PIX_FMT_XVMC_MPEG2_IDCT && res != PIX_FMT_XVMC_MPEG2_MC) {
1229             avctx->xvmc_acceleration = 0;
1230         } else if (!avctx->xvmc_acceleration) {
1231             avctx->xvmc_acceleration = 2;
1232         }
1233         return res;
1234     } else if(s->chroma_format == 2)
1235         return PIX_FMT_YUV422P;
1236     else
1237         return PIX_FMT_YUV444P;
1238 }
1239
1240 /* Call this function when we know all parameters.
1241  * It may be called in different places for MPEG-1 and MPEG-2. */
1242 static int mpeg_decode_postinit(AVCodecContext *avctx)
1243 {
1244     Mpeg1Context *s1 = avctx->priv_data;
1245     MpegEncContext *s = &s1->mpeg_enc_ctx;
1246     uint8_t old_permutation[64];
1247
1248     if ((s1->mpeg_enc_ctx_allocated == 0) ||
1249         avctx->coded_width  != s->width   ||
1250         avctx->coded_height != s->height  ||
1251         s1->save_width           != s->width                ||
1252         s1->save_height          != s->height               ||
1253         s1->save_aspect_info     != s->aspect_ratio_info    ||
1254         s1->save_progressive_seq != s->progressive_sequence ||
1255         0)
1256     {
1257
1258         if (s1->mpeg_enc_ctx_allocated) {
1259             ParseContext pc = s->parse_context;
1260             s->parse_context.buffer = 0;
1261             MPV_common_end(s);
1262             s->parse_context = pc;
1263         }
1264
1265         if ((s->width == 0) || (s->height == 0))
1266             return -2;
1267
1268         avcodec_set_dimensions(avctx, s->width, s->height);
1269         avctx->bit_rate          = s->bit_rate;
1270         s1->save_aspect_info     = s->aspect_ratio_info;
1271         s1->save_width           = s->width;
1272         s1->save_height          = s->height;
1273         s1->save_progressive_seq = s->progressive_sequence;
1274
1275         /* low_delay may be forced, in this case we will have B-frames
1276          * that behave like P-frames. */
1277         avctx->has_b_frames = !s->low_delay;
1278
1279         assert((avctx->sub_id == 1) == (avctx->codec_id == CODEC_ID_MPEG1VIDEO));
1280         if (avctx->codec_id == CODEC_ID_MPEG1VIDEO) {
1281             //MPEG-1 fps
1282             avctx->time_base.den = avpriv_frame_rate_tab[s->frame_rate_index].num;
1283             avctx->time_base.num = avpriv_frame_rate_tab[s->frame_rate_index].den;
1284             //MPEG-1 aspect
1285             avctx->sample_aspect_ratio = av_d2q(1.0/ff_mpeg1_aspect[s->aspect_ratio_info], 255);
1286             avctx->ticks_per_frame=1;
1287         } else {//MPEG-2
1288         //MPEG-2 fps
1289             av_reduce(&s->avctx->time_base.den,
1290                       &s->avctx->time_base.num,
1291                       avpriv_frame_rate_tab[s->frame_rate_index].num * s1->frame_rate_ext.num*2,
1292                       avpriv_frame_rate_tab[s->frame_rate_index].den * s1->frame_rate_ext.den,
1293                       1 << 30);
1294             avctx->ticks_per_frame = 2;
1295             //MPEG-2 aspect
1296             if (s->aspect_ratio_info > 1) {
1297                 AVRational dar =
1298                     av_mul_q(av_div_q(ff_mpeg2_aspect[s->aspect_ratio_info],
1299                                       (AVRational) {s1->pan_scan.width, s1->pan_scan.height}),
1300                              (AVRational) {s->width, s->height});
1301
1302                 // we ignore the spec here and guess a bit as reality does not match the spec, see for example
1303                 // res_change_ffmpeg_aspect.ts and sequence-display-aspect.mpg
1304                 // issue1613, 621, 562
1305                 if ((s1->pan_scan.width == 0) || (s1->pan_scan.height == 0) ||
1306                    (av_cmp_q(dar, (AVRational) {4, 3}) && av_cmp_q(dar, (AVRational) {16, 9}))) {
1307                     s->avctx->sample_aspect_ratio =
1308                         av_div_q(ff_mpeg2_aspect[s->aspect_ratio_info],
1309                                  (AVRational) {s->width, s->height});
1310                 } else {
1311                     s->avctx->sample_aspect_ratio =
1312                         av_div_q(ff_mpeg2_aspect[s->aspect_ratio_info],
1313                                  (AVRational) {s1->pan_scan.width, s1->pan_scan.height});
1314 //issue1613 4/3 16/9 -> 16/9
1315 //res_change_ffmpeg_aspect.ts 4/3 225/44 ->4/3
1316 //widescreen-issue562.mpg 4/3 16/9 -> 16/9
1317 //                    s->avctx->sample_aspect_ratio = av_mul_q(s->avctx->sample_aspect_ratio, (AVRational) {s->width, s->height});
1318 //av_log(NULL, AV_LOG_ERROR, "A %d/%d\n", ff_mpeg2_aspect[s->aspect_ratio_info].num, ff_mpeg2_aspect[s->aspect_ratio_info].den);
1319 //av_log(NULL, AV_LOG_ERROR, "B %d/%d\n", s->avctx->sample_aspect_ratio.num, s->avctx->sample_aspect_ratio.den);
1320                 }
1321             } else {
1322                 s->avctx->sample_aspect_ratio =
1323                     ff_mpeg2_aspect[s->aspect_ratio_info];
1324             }
1325         } // MPEG-2
1326
1327         avctx->pix_fmt = mpeg_get_pixelformat(avctx);
1328         avctx->hwaccel = ff_find_hwaccel(avctx->codec->id, avctx->pix_fmt);
1329         // until then pix_fmt may be changed right after codec init
1330         if (avctx->pix_fmt == PIX_FMT_XVMC_MPEG2_IDCT ||
1331             avctx->hwaccel )
1332             if (avctx->idct_algo == FF_IDCT_AUTO)
1333                 avctx->idct_algo = FF_IDCT_SIMPLE;
1334
1335         /* Quantization matrices may need reordering
1336          * if DCT permutation is changed. */
1337         memcpy(old_permutation, s->dsp.idct_permutation, 64 * sizeof(uint8_t));
1338
1339         if (MPV_common_init(s) < 0)
1340             return -2;
1341
1342         quant_matrix_rebuild(s->intra_matrix,        old_permutation, s->dsp.idct_permutation);
1343         quant_matrix_rebuild(s->inter_matrix,        old_permutation, s->dsp.idct_permutation);
1344         quant_matrix_rebuild(s->chroma_intra_matrix, old_permutation, s->dsp.idct_permutation);
1345         quant_matrix_rebuild(s->chroma_inter_matrix, old_permutation, s->dsp.idct_permutation);
1346
1347         s1->mpeg_enc_ctx_allocated = 1;
1348     }
1349     return 0;
1350 }
1351
1352 static int mpeg1_decode_picture(AVCodecContext *avctx,
1353                                 const uint8_t *buf, int buf_size)
1354 {
1355     Mpeg1Context *s1 = avctx->priv_data;
1356     MpegEncContext *s = &s1->mpeg_enc_ctx;
1357     int ref, f_code, vbv_delay;
1358
1359     init_get_bits(&s->gb, buf, buf_size*8);
1360
1361     ref = get_bits(&s->gb, 10); /* temporal ref */
1362     s->pict_type = get_bits(&s->gb, 3);
1363     if (s->pict_type == 0 || s->pict_type > 3)
1364         return -1;
1365
1366     vbv_delay = get_bits(&s->gb, 16);
1367     if (s->pict_type == AV_PICTURE_TYPE_P || s->pict_type == AV_PICTURE_TYPE_B) {
1368         s->full_pel[0] = get_bits1(&s->gb);
1369         f_code = get_bits(&s->gb, 3);
1370         if (f_code == 0 && (avctx->err_recognition & (AV_EF_BITSTREAM|AV_EF_COMPLIANT)))
1371             return -1;
1372         s->mpeg_f_code[0][0] = f_code;
1373         s->mpeg_f_code[0][1] = f_code;
1374     }
1375     if (s->pict_type == AV_PICTURE_TYPE_B) {
1376         s->full_pel[1] = get_bits1(&s->gb);
1377         f_code = get_bits(&s->gb, 3);
1378         if (f_code == 0 && (avctx->err_recognition & (AV_EF_BITSTREAM|AV_EF_COMPLIANT)))
1379             return -1;
1380         s->mpeg_f_code[1][0] = f_code;
1381         s->mpeg_f_code[1][1] = f_code;
1382     }
1383     s->current_picture.f.pict_type = s->pict_type;
1384     s->current_picture.f.key_frame = s->pict_type == AV_PICTURE_TYPE_I;
1385
1386     if (avctx->debug & FF_DEBUG_PICT_INFO)
1387         av_log(avctx, AV_LOG_DEBUG, "vbv_delay %d, ref %d type:%d\n", vbv_delay, ref, s->pict_type);
1388
1389     s->y_dc_scale = 8;
1390     s->c_dc_scale = 8;
1391     return 0;
1392 }
1393
1394 static void mpeg_decode_sequence_extension(Mpeg1Context *s1)
1395 {
1396     MpegEncContext *s= &s1->mpeg_enc_ctx;
1397     int horiz_size_ext, vert_size_ext;
1398     int bit_rate_ext;
1399
1400     skip_bits(&s->gb, 1); /* profile and level esc*/
1401     s->avctx->profile       = get_bits(&s->gb, 3);
1402     s->avctx->level         = get_bits(&s->gb, 4);
1403     s->progressive_sequence = get_bits1(&s->gb); /* progressive_sequence */
1404     s->chroma_format        = get_bits(&s->gb, 2); /* chroma_format 1=420, 2=422, 3=444 */
1405     horiz_size_ext          = get_bits(&s->gb, 2);
1406     vert_size_ext           = get_bits(&s->gb, 2);
1407     s->width  |= (horiz_size_ext << 12);
1408     s->height |= (vert_size_ext  << 12);
1409     bit_rate_ext = get_bits(&s->gb, 12);  /* XXX: handle it */
1410     s->bit_rate += (bit_rate_ext << 18) * 400;
1411     skip_bits1(&s->gb); /* marker */
1412     s->avctx->rc_buffer_size += get_bits(&s->gb, 8) * 1024 * 16 << 10;
1413
1414     s->low_delay = get_bits1(&s->gb);
1415     if (s->flags & CODEC_FLAG_LOW_DELAY)
1416         s->low_delay = 1;
1417
1418     s1->frame_rate_ext.num = get_bits(&s->gb, 2) + 1;
1419     s1->frame_rate_ext.den = get_bits(&s->gb, 5) + 1;
1420
1421     av_dlog(s->avctx, "sequence extension\n");
1422     s->codec_id      = s->avctx->codec_id = CODEC_ID_MPEG2VIDEO;
1423     s->avctx->sub_id = 2; /* indicates MPEG-2 found */
1424
1425     if (s->avctx->debug & FF_DEBUG_PICT_INFO)
1426         av_log(s->avctx, AV_LOG_DEBUG, "profile: %d, level: %d vbv buffer: %d, bitrate:%d\n",
1427                s->avctx->profile, s->avctx->level, s->avctx->rc_buffer_size, s->bit_rate);
1428
1429 }
1430
1431 static void mpeg_decode_sequence_display_extension(Mpeg1Context *s1)
1432 {
1433     MpegEncContext *s = &s1->mpeg_enc_ctx;
1434     int color_description, w, h;
1435
1436     skip_bits(&s->gb, 3); /* video format */
1437     color_description = get_bits1(&s->gb);
1438     if (color_description) {
1439         s->avctx->color_primaries = get_bits(&s->gb, 8);
1440         s->avctx->color_trc       = get_bits(&s->gb, 8);
1441         s->avctx->colorspace      = get_bits(&s->gb, 8);
1442     }
1443     w = get_bits(&s->gb, 14);
1444     skip_bits(&s->gb, 1); //marker
1445     h = get_bits(&s->gb, 14);
1446     // remaining 3 bits are zero padding
1447
1448     s1->pan_scan.width  = 16 * w;
1449     s1->pan_scan.height = 16 * h;
1450
1451     if (s->avctx->debug & FF_DEBUG_PICT_INFO)
1452         av_log(s->avctx, AV_LOG_DEBUG, "sde w:%d, h:%d\n", w, h);
1453 }
1454
1455 static void mpeg_decode_picture_display_extension(Mpeg1Context *s1)
1456 {
1457     MpegEncContext *s = &s1->mpeg_enc_ctx;
1458     int i, nofco;
1459
1460     nofco = 1;
1461     if (s->progressive_sequence) {
1462         if (s->repeat_first_field) {
1463             nofco++;
1464             if (s->top_field_first)
1465                 nofco++;
1466         }
1467     } else {
1468         if (s->picture_structure == PICT_FRAME) {
1469             nofco++;
1470             if (s->repeat_first_field)
1471                 nofco++;
1472         }
1473     }
1474     for (i = 0; i < nofco; i++) {
1475         s1->pan_scan.position[i][0] = get_sbits(&s->gb, 16);
1476         skip_bits(&s->gb, 1); // marker
1477         s1->pan_scan.position[i][1] = get_sbits(&s->gb, 16);
1478         skip_bits(&s->gb, 1); // marker
1479     }
1480
1481     if (s->avctx->debug & FF_DEBUG_PICT_INFO)
1482         av_log(s->avctx, AV_LOG_DEBUG, "pde (%d,%d) (%d,%d) (%d,%d)\n",
1483                s1->pan_scan.position[0][0], s1->pan_scan.position[0][1],
1484                s1->pan_scan.position[1][0], s1->pan_scan.position[1][1],
1485                s1->pan_scan.position[2][0], s1->pan_scan.position[2][1]);
1486 }
1487
1488 static int load_matrix(MpegEncContext *s, uint16_t matrix0[64], uint16_t matrix1[64], int intra)
1489 {
1490     int i;
1491
1492     for (i = 0; i < 64; i++) {
1493         int j = s->dsp.idct_permutation[ff_zigzag_direct[i]];
1494         int v = get_bits(&s->gb, 8);
1495         if (v == 0) {
1496             av_log(s->avctx, AV_LOG_ERROR, "matrix damaged\n");
1497             return -1;
1498         }
1499         if (intra && i == 0 && v != 8) {
1500             av_log(s->avctx, AV_LOG_ERROR, "intra matrix invalid, ignoring\n");
1501             v = 8; // needed by pink.mpg / issue1046
1502         }
1503         matrix0[j] = v;
1504         if (matrix1)
1505             matrix1[j] = v;
1506     }
1507     return 0;
1508 }
1509
1510 static void mpeg_decode_quant_matrix_extension(MpegEncContext *s)
1511 {
1512     av_dlog(s->avctx, "matrix extension\n");
1513
1514     if (get_bits1(&s->gb)) load_matrix(s, s->chroma_intra_matrix, s->intra_matrix, 1);
1515     if (get_bits1(&s->gb)) load_matrix(s, s->chroma_inter_matrix, s->inter_matrix, 0);
1516     if (get_bits1(&s->gb)) load_matrix(s, s->chroma_intra_matrix, NULL           , 1);
1517     if (get_bits1(&s->gb)) load_matrix(s, s->chroma_inter_matrix, NULL           , 0);
1518 }
1519
1520 static void mpeg_decode_picture_coding_extension(Mpeg1Context *s1)
1521 {
1522     MpegEncContext *s = &s1->mpeg_enc_ctx;
1523
1524     s->full_pel[0] = s->full_pel[1] = 0;
1525     s->mpeg_f_code[0][0] = get_bits(&s->gb, 4);
1526     s->mpeg_f_code[0][1] = get_bits(&s->gb, 4);
1527     s->mpeg_f_code[1][0] = get_bits(&s->gb, 4);
1528     s->mpeg_f_code[1][1] = get_bits(&s->gb, 4);
1529     if (!s->pict_type && s1->mpeg_enc_ctx_allocated) {
1530         av_log(s->avctx, AV_LOG_ERROR, "Missing picture start code, guessing missing values\n");
1531         if (s->mpeg_f_code[1][0] == 15 && s->mpeg_f_code[1][1] == 15) {
1532             if (s->mpeg_f_code[0][0] == 15 && s->mpeg_f_code[0][1] == 15)
1533                 s->pict_type = AV_PICTURE_TYPE_I;
1534             else
1535                 s->pict_type = AV_PICTURE_TYPE_P;
1536         } else
1537             s->pict_type = AV_PICTURE_TYPE_B;
1538         s->current_picture.f.pict_type = s->pict_type;
1539         s->current_picture.f.key_frame = s->pict_type == AV_PICTURE_TYPE_I;
1540     }
1541     s->intra_dc_precision         = get_bits(&s->gb, 2);
1542     s->picture_structure          = get_bits(&s->gb, 2);
1543     s->top_field_first            = get_bits1(&s->gb);
1544     s->frame_pred_frame_dct       = get_bits1(&s->gb);
1545     s->concealment_motion_vectors = get_bits1(&s->gb);
1546     s->q_scale_type               = get_bits1(&s->gb);
1547     s->intra_vlc_format           = get_bits1(&s->gb);
1548     s->alternate_scan             = get_bits1(&s->gb);
1549     s->repeat_first_field         = get_bits1(&s->gb);
1550     s->chroma_420_type            = get_bits1(&s->gb);
1551     s->progressive_frame          = get_bits1(&s->gb);
1552
1553     if (s->progressive_sequence && !s->progressive_frame) {
1554         s->progressive_frame = 1;
1555         av_log(s->avctx, AV_LOG_ERROR, "interlaced frame in progressive sequence, ignoring\n");
1556     }
1557
1558     if (s->picture_structure == 0 || (s->progressive_frame && s->picture_structure != PICT_FRAME)) {
1559         av_log(s->avctx, AV_LOG_ERROR, "picture_structure %d invalid, ignoring\n", s->picture_structure);
1560         s->picture_structure = PICT_FRAME;
1561     }
1562
1563     if (s->progressive_sequence && !s->frame_pred_frame_dct) {
1564         av_log(s->avctx, AV_LOG_ERROR, "invalid frame_pred_frame_dct\n");
1565     }
1566
1567     if (s->picture_structure == PICT_FRAME) {
1568         s->first_field = 0;
1569         s->v_edge_pos  = 16 * s->mb_height;
1570     } else {
1571         s->first_field ^= 1;
1572         s->v_edge_pos   = 8 * s->mb_height;
1573         memset(s->mbskip_table, 0, s->mb_stride * s->mb_height);
1574     }
1575
1576     if (s->alternate_scan) {
1577         ff_init_scantable(s->dsp.idct_permutation, &s->inter_scantable, ff_alternate_vertical_scan);
1578         ff_init_scantable(s->dsp.idct_permutation, &s->intra_scantable, ff_alternate_vertical_scan);
1579     } else {
1580         ff_init_scantable(s->dsp.idct_permutation, &s->inter_scantable, ff_zigzag_direct);
1581         ff_init_scantable(s->dsp.idct_permutation, &s->intra_scantable, ff_zigzag_direct);
1582     }
1583
1584     /* composite display not parsed */
1585     av_dlog(s->avctx, "intra_dc_precision=%d\n", s->intra_dc_precision);
1586     av_dlog(s->avctx, "picture_structure=%d\n", s->picture_structure);
1587     av_dlog(s->avctx, "top field first=%d\n", s->top_field_first);
1588     av_dlog(s->avctx, "repeat first field=%d\n", s->repeat_first_field);
1589     av_dlog(s->avctx, "conceal=%d\n", s->concealment_motion_vectors);
1590     av_dlog(s->avctx, "intra_vlc_format=%d\n", s->intra_vlc_format);
1591     av_dlog(s->avctx, "alternate_scan=%d\n", s->alternate_scan);
1592     av_dlog(s->avctx, "frame_pred_frame_dct=%d\n", s->frame_pred_frame_dct);
1593     av_dlog(s->avctx, "progressive_frame=%d\n", s->progressive_frame);
1594 }
1595
1596 static int mpeg_field_start(MpegEncContext *s, const uint8_t *buf, int buf_size)
1597 {
1598     AVCodecContext *avctx = s->avctx;
1599     Mpeg1Context *s1 = (Mpeg1Context*)s;
1600
1601     /* start frame decoding */
1602     if (s->first_field || s->picture_structure == PICT_FRAME) {
1603         if (MPV_frame_start(s, avctx) < 0)
1604             return -1;
1605
1606         ff_er_frame_start(s);
1607
1608         /* first check if we must repeat the frame */
1609         s->current_picture_ptr->f.repeat_pict = 0;
1610         if (s->repeat_first_field) {
1611             if (s->progressive_sequence) {
1612                 if (s->top_field_first)
1613                     s->current_picture_ptr->f.repeat_pict = 4;
1614                 else
1615                     s->current_picture_ptr->f.repeat_pict = 2;
1616             } else if (s->progressive_frame) {
1617                 s->current_picture_ptr->f.repeat_pict = 1;
1618             }
1619         }
1620
1621         *s->current_picture_ptr->f.pan_scan = s1->pan_scan;
1622
1623         if (HAVE_THREADS && (avctx->active_thread_type & FF_THREAD_FRAME))
1624             ff_thread_finish_setup(avctx);
1625     } else { // second field
1626         int i;
1627
1628         if (!s->current_picture_ptr) {
1629             av_log(s->avctx, AV_LOG_ERROR, "first field missing\n");
1630             return -1;
1631         }
1632
1633         for (i = 0; i < 4; i++) {
1634             s->current_picture.f.data[i] = s->current_picture_ptr->f.data[i];
1635             if (s->picture_structure == PICT_BOTTOM_FIELD) {
1636                 s->current_picture.f.data[i] += s->current_picture_ptr->f.linesize[i];
1637             }
1638         }
1639     }
1640
1641     if (avctx->hwaccel) {
1642         if (avctx->hwaccel->start_frame(avctx, buf, buf_size) < 0)
1643             return -1;
1644     }
1645
1646 // MPV_frame_start will call this function too,
1647 // but we need to call it on every field
1648     if (CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration)
1649         if (ff_xvmc_field_start(s, avctx) < 0)
1650             return -1;
1651
1652     return 0;
1653 }
1654
1655 #define DECODE_SLICE_ERROR -1
1656 #define DECODE_SLICE_OK     0
1657
1658 /**
1659  * Decode a slice.
1660  * MpegEncContext.mb_y must be set to the MB row from the startcode.
1661  * @return DECODE_SLICE_ERROR if the slice is damaged,
1662  *         DECODE_SLICE_OK if this slice is OK
1663  */
1664 static int mpeg_decode_slice(MpegEncContext *s, int mb_y,
1665                              const uint8_t **buf, int buf_size)
1666 {
1667     AVCodecContext *avctx = s->avctx;
1668     const int lowres      = s->avctx->lowres;
1669     const int field_pic   = s->picture_structure != PICT_FRAME;
1670
1671     s->resync_mb_x =
1672     s->resync_mb_y = -1;
1673
1674     assert(mb_y < s->mb_height);
1675
1676     init_get_bits(&s->gb, *buf, buf_size * 8);
1677
1678     ff_mpeg1_clean_buffers(s);
1679     s->interlaced_dct = 0;
1680
1681     s->qscale = get_qscale(s);
1682
1683     if (s->qscale == 0) {
1684         av_log(s->avctx, AV_LOG_ERROR, "qscale == 0\n");
1685         return -1;
1686     }
1687
1688     /* extra slice info */
1689     while (get_bits1(&s->gb) != 0) {
1690         skip_bits(&s->gb, 8);
1691     }
1692
1693     s->mb_x = 0;
1694
1695     if (mb_y == 0 && s->codec_tag == AV_RL32("SLIF")) {
1696         skip_bits1(&s->gb);
1697     } else {
1698         while (get_bits_left(&s->gb) > 0) {
1699             int code = get_vlc2(&s->gb, mbincr_vlc.table, MBINCR_VLC_BITS, 2);
1700             if (code < 0) {
1701                 av_log(s->avctx, AV_LOG_ERROR, "first mb_incr damaged\n");
1702                 return -1;
1703             }
1704             if (code >= 33) {
1705                 if (code == 33) {
1706                     s->mb_x += 33;
1707                 }
1708                 /* otherwise, stuffing, nothing to do */
1709             } else {
1710                 s->mb_x += code;
1711                 break;
1712             }
1713         }
1714     }
1715
1716     if (s->mb_x >= (unsigned)s->mb_width) {
1717         av_log(s->avctx, AV_LOG_ERROR, "initial skip overflow\n");
1718         return -1;
1719     }
1720
1721     if (avctx->hwaccel) {
1722         const uint8_t *buf_end, *buf_start = *buf - 4; /* include start_code */
1723         int start_code = -1;
1724         buf_end = avpriv_mpv_find_start_code(buf_start + 2, *buf + buf_size, &start_code);
1725         if (buf_end < *buf + buf_size)
1726             buf_end -= 4;
1727         s->mb_y = mb_y;
1728         if (avctx->hwaccel->decode_slice(avctx, buf_start, buf_end - buf_start) < 0)
1729             return DECODE_SLICE_ERROR;
1730         *buf = buf_end;
1731         return DECODE_SLICE_OK;
1732     }
1733
1734     s->resync_mb_x = s->mb_x;
1735     s->resync_mb_y = s->mb_y = mb_y;
1736     s->mb_skip_run = 0;
1737     ff_init_block_index(s);
1738
1739     if (s->mb_y == 0 && s->mb_x == 0 && (s->first_field || s->picture_structure == PICT_FRAME)) {
1740         if (s->avctx->debug & FF_DEBUG_PICT_INFO) {
1741              av_log(s->avctx, AV_LOG_DEBUG, "qp:%d fc:%2d%2d%2d%2d %s %s %s %s %s dc:%d pstruct:%d fdct:%d cmv:%d qtype:%d ivlc:%d rff:%d %s\n",
1742                     s->qscale, s->mpeg_f_code[0][0], s->mpeg_f_code[0][1], s->mpeg_f_code[1][0], s->mpeg_f_code[1][1],
1743                     s->pict_type == AV_PICTURE_TYPE_I ? "I" : (s->pict_type == AV_PICTURE_TYPE_P ? "P" : (s->pict_type == AV_PICTURE_TYPE_B ? "B" : "S")),
1744                     s->progressive_sequence ? "ps" :"", s->progressive_frame ? "pf" : "", s->alternate_scan ? "alt" :"", s->top_field_first ? "top" :"",
1745                     s->intra_dc_precision, s->picture_structure, s->frame_pred_frame_dct, s->concealment_motion_vectors,
1746                     s->q_scale_type, s->intra_vlc_format, s->repeat_first_field, s->chroma_420_type ? "420" :"");
1747         }
1748     }
1749
1750     for (;;) {
1751         // If 1, we memcpy blocks in xvmcvideo.
1752         if (CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration > 1)
1753             ff_xvmc_init_block(s); // set s->block
1754
1755         if (mpeg_decode_mb(s, s->block) < 0)
1756             return -1;
1757
1758         if (s->current_picture.f.motion_val[0] && !s->encoding) { // note motion_val is normally NULL unless we want to extract the MVs
1759             const int wrap = s->b8_stride;
1760             int xy         = s->mb_x * 2 + s->mb_y * 2 * wrap;
1761             int b8_xy      = 4 * (s->mb_x + s->mb_y * s->mb_stride);
1762             int motion_x, motion_y, dir, i;
1763
1764             for (i = 0; i < 2; i++) {
1765                 for (dir = 0; dir < 2; dir++) {
1766                     if (s->mb_intra || (dir == 1 && s->pict_type != AV_PICTURE_TYPE_B)) {
1767                         motion_x = motion_y = 0;
1768                     } else if (s->mv_type == MV_TYPE_16X16 || (s->mv_type == MV_TYPE_FIELD && field_pic)) {
1769                         motion_x = s->mv[dir][0][0];
1770                         motion_y = s->mv[dir][0][1];
1771                     } else /*if ((s->mv_type == MV_TYPE_FIELD) || (s->mv_type == MV_TYPE_16X8))*/ {
1772                         motion_x = s->mv[dir][i][0];
1773                         motion_y = s->mv[dir][i][1];
1774                     }
1775
1776                     s->current_picture.f.motion_val[dir][xy    ][0] = motion_x;
1777                     s->current_picture.f.motion_val[dir][xy    ][1] = motion_y;
1778                     s->current_picture.f.motion_val[dir][xy + 1][0] = motion_x;
1779                     s->current_picture.f.motion_val[dir][xy + 1][1] = motion_y;
1780                     s->current_picture.f.ref_index [dir][b8_xy    ] =
1781                     s->current_picture.f.ref_index [dir][b8_xy + 1] = s->field_select[dir][i];
1782                     assert(s->field_select[dir][i] == 0 || s->field_select[dir][i] == 1);
1783                 }
1784                 xy += wrap;
1785                 b8_xy +=2;
1786             }
1787         }
1788
1789         s->dest[0] += 16 >> lowres;
1790         s->dest[1] +=(16 >> lowres) >> s->chroma_x_shift;
1791         s->dest[2] +=(16 >> lowres) >> s->chroma_x_shift;
1792
1793         MPV_decode_mb(s, s->block);
1794
1795         if (++s->mb_x >= s->mb_width) {
1796             const int mb_size = 16 >> s->avctx->lowres;
1797
1798             ff_draw_horiz_band(s, mb_size*(s->mb_y >> field_pic), mb_size);
1799             MPV_report_decode_progress(s);
1800
1801             s->mb_x = 0;
1802             s->mb_y += 1 << field_pic;
1803
1804             if (s->mb_y >= s->mb_height) {
1805                 int left   = get_bits_left(&s->gb);
1806                 int is_d10 = s->chroma_format == 2 && s->pict_type == AV_PICTURE_TYPE_I && avctx->profile == 0 && avctx->level == 5
1807                              && s->intra_dc_precision == 2 && s->q_scale_type == 1 && s->alternate_scan == 0
1808                              && s->progressive_frame == 0 /* vbv_delay == 0xBBB || 0xE10*/;
1809
1810                 if (left < 0 || (left && show_bits(&s->gb, FFMIN(left, 23)) && !is_d10)
1811                     || ((avctx->err_recognition & (AV_EF_BITSTREAM | AV_EF_AGGRESSIVE)) && left > 8)) {
1812                     av_log(avctx, AV_LOG_ERROR, "end mismatch left=%d %0X\n", left, show_bits(&s->gb, FFMIN(left, 23)));
1813                     return -1;
1814                 } else
1815                     goto eos;
1816             }
1817
1818             ff_init_block_index(s);
1819         }
1820
1821         /* skip mb handling */
1822         if (s->mb_skip_run == -1) {
1823             /* read increment again */
1824             s->mb_skip_run = 0;
1825             for (;;) {
1826                 int code = get_vlc2(&s->gb, mbincr_vlc.table, MBINCR_VLC_BITS, 2);
1827                 if (code < 0) {
1828                     av_log(s->avctx, AV_LOG_ERROR, "mb incr damaged\n");
1829                     return -1;
1830                 }
1831                 if (code >= 33) {
1832                     if (code == 33) {
1833                         s->mb_skip_run += 33;
1834                     } else if (code == 35) {
1835                         if (s->mb_skip_run != 0 || show_bits(&s->gb, 15) != 0) {
1836                             av_log(s->avctx, AV_LOG_ERROR, "slice mismatch\n");
1837                             return -1;
1838                         }
1839                         goto eos; /* end of slice */
1840                     }
1841                     /* otherwise, stuffing, nothing to do */
1842                 } else {
1843                     s->mb_skip_run += code;
1844                     break;
1845                 }
1846             }
1847             if (s->mb_skip_run) {
1848                 int i;
1849                 if (s->pict_type == AV_PICTURE_TYPE_I) {
1850                     av_log(s->avctx, AV_LOG_ERROR, "skipped MB in I frame at %d %d\n", s->mb_x, s->mb_y);
1851                     return -1;
1852                 }
1853
1854                 /* skip mb */
1855                 s->mb_intra = 0;
1856                 for (i = 0; i < 12; i++)
1857                     s->block_last_index[i] = -1;
1858                 if (s->picture_structure == PICT_FRAME)
1859                     s->mv_type = MV_TYPE_16X16;
1860                 else
1861                     s->mv_type = MV_TYPE_FIELD;
1862                 if (s->pict_type == AV_PICTURE_TYPE_P) {
1863                     /* if P type, zero motion vector is implied */
1864                     s->mv_dir             = MV_DIR_FORWARD;
1865                     s->mv[0][0][0]        = s->mv[0][0][1]      = 0;
1866                     s->last_mv[0][0][0]   = s->last_mv[0][0][1] = 0;
1867                     s->last_mv[0][1][0]   = s->last_mv[0][1][1] = 0;
1868                     s->field_select[0][0] = (s->picture_structure - 1) & 1;
1869                 } else {
1870                     /* if B type, reuse previous vectors and directions */
1871                     s->mv[0][0][0] = s->last_mv[0][0][0];
1872                     s->mv[0][0][1] = s->last_mv[0][0][1];
1873                     s->mv[1][0][0] = s->last_mv[1][0][0];
1874                     s->mv[1][0][1] = s->last_mv[1][0][1];
1875                 }
1876             }
1877         }
1878     }
1879 eos: // end of slice
1880     *buf += (get_bits_count(&s->gb)-1)/8;
1881 //printf("y %d %d %d %d\n", s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y);
1882     return 0;
1883 }
1884
1885 static int slice_decode_thread(AVCodecContext *c, void *arg)
1886 {
1887     MpegEncContext *s   = *(void**)arg;
1888     const uint8_t *buf  = s->gb.buffer;
1889     int mb_y            = s->start_mb_y;
1890     const int field_pic = s->picture_structure != PICT_FRAME;
1891
1892     s->error_count = (3 * (s->end_mb_y - s->start_mb_y) * s->mb_width) >> field_pic;
1893
1894     for (;;) {
1895         uint32_t start_code;
1896         int ret;
1897
1898         ret = mpeg_decode_slice(s, mb_y, &buf, s->gb.buffer_end - buf);
1899         emms_c();
1900 //av_log(c, AV_LOG_DEBUG, "ret:%d resync:%d/%d mb:%d/%d ts:%d/%d ec:%d\n",
1901 //ret, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, s->start_mb_y, s->end_mb_y, s->error_count);
1902         if (ret < 0) {
1903             if (c->err_recognition & AV_EF_EXPLODE)
1904                 return ret;
1905             if (s->resync_mb_x >= 0 && s->resync_mb_y >= 0)
1906                 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, ER_AC_ERROR | ER_DC_ERROR | ER_MV_ERROR);
1907         } else {
1908             ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, ER_AC_END | ER_DC_END | ER_MV_END);
1909         }
1910
1911         if (s->mb_y == s->end_mb_y)
1912             return 0;
1913
1914         start_code = -1;
1915         buf = avpriv_mpv_find_start_code(buf, s->gb.buffer_end, &start_code);
1916         mb_y= (start_code - SLICE_MIN_START_CODE) << field_pic;
1917         if (s->picture_structure == PICT_BOTTOM_FIELD)
1918             mb_y++;
1919         if (mb_y < 0 || mb_y >= s->end_mb_y)
1920             return -1;
1921     }
1922 }
1923
1924 /**
1925  * Handle slice ends.
1926  * @return 1 if it seems to be the last slice
1927  */
1928 static int slice_end(AVCodecContext *avctx, AVFrame *pict)
1929 {
1930     Mpeg1Context *s1 = avctx->priv_data;
1931     MpegEncContext *s = &s1->mpeg_enc_ctx;
1932
1933     if (!s1->mpeg_enc_ctx_allocated || !s->current_picture_ptr)
1934         return 0;
1935
1936     if (s->avctx->hwaccel) {
1937         if (s->avctx->hwaccel->end_frame(s->avctx) < 0)
1938             av_log(avctx, AV_LOG_ERROR, "hardware accelerator failed to decode picture\n");
1939     }
1940
1941     if (CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration)
1942         ff_xvmc_field_end(s);
1943
1944     /* end of slice reached */
1945     if (/*s->mb_y << field_pic == s->mb_height &&*/ !s->first_field && !s->first_slice) {
1946         /* end of image */
1947
1948         s->current_picture_ptr->f.qscale_type = FF_QSCALE_TYPE_MPEG2;
1949
1950         ff_er_frame_end(s);
1951
1952         MPV_frame_end(s);
1953
1954         if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
1955             *pict = *(AVFrame*)s->current_picture_ptr;
1956             ff_print_debug_info(s, pict);
1957         } else {
1958             if (avctx->active_thread_type & FF_THREAD_FRAME)
1959                 s->picture_number++;
1960             /* latency of 1 frame for I- and P-frames */
1961             /* XXX: use another variable than picture_number */
1962             if (s->last_picture_ptr != NULL) {
1963                 *pict = *(AVFrame*)s->last_picture_ptr;
1964                  ff_print_debug_info(s, pict);
1965             }
1966         }
1967
1968         return 1;
1969     } else {
1970         return 0;
1971     }
1972 }
1973
1974 static int mpeg1_decode_sequence(AVCodecContext *avctx,
1975                                  const uint8_t *buf, int buf_size)
1976 {
1977     Mpeg1Context *s1 = avctx->priv_data;
1978     MpegEncContext *s = &s1->mpeg_enc_ctx;
1979     int width, height;
1980     int i, v, j;
1981
1982     init_get_bits(&s->gb, buf, buf_size*8);
1983
1984     width  = get_bits(&s->gb, 12);
1985     height = get_bits(&s->gb, 12);
1986     if (width <= 0 || height <= 0)
1987         return -1;
1988     s->aspect_ratio_info = get_bits(&s->gb, 4);
1989     if (s->aspect_ratio_info == 0) {
1990         av_log(avctx, AV_LOG_ERROR, "aspect ratio has forbidden 0 value\n");
1991         if (avctx->err_recognition & (AV_EF_BITSTREAM | AV_EF_COMPLIANT))
1992             return -1;
1993     }
1994     s->frame_rate_index = get_bits(&s->gb, 4);
1995     if (s->frame_rate_index == 0 || s->frame_rate_index > 13)
1996         return -1;
1997     s->bit_rate = get_bits(&s->gb, 18) * 400;
1998     if (get_bits1(&s->gb) == 0) /* marker */
1999         return -1;
2000     s->width  = width;
2001     s->height = height;
2002
2003     s->avctx->rc_buffer_size = get_bits(&s->gb, 10) * 1024 * 16;
2004     skip_bits(&s->gb, 1);
2005
2006     /* get matrix */
2007     if (get_bits1(&s->gb)) {
2008         load_matrix(s, s->chroma_intra_matrix, s->intra_matrix, 1);
2009     } else {
2010         for (i = 0; i < 64; i++) {
2011             j = s->dsp.idct_permutation[i];
2012             v = ff_mpeg1_default_intra_matrix[i];
2013             s->intra_matrix[j]        = v;
2014             s->chroma_intra_matrix[j] = v;
2015         }
2016     }
2017     if (get_bits1(&s->gb)) {
2018         load_matrix(s, s->chroma_inter_matrix, s->inter_matrix, 0);
2019     } else {
2020         for (i = 0; i < 64; i++) {
2021             int j = s->dsp.idct_permutation[i];
2022             v = ff_mpeg1_default_non_intra_matrix[i];
2023             s->inter_matrix[j]        = v;
2024             s->chroma_inter_matrix[j] = v;
2025         }
2026     }
2027
2028     if (show_bits(&s->gb, 23) != 0) {
2029         av_log(s->avctx, AV_LOG_ERROR, "sequence header damaged\n");
2030         return -1;
2031     }
2032
2033     /* we set MPEG-2 parameters so that it emulates MPEG-1 */
2034     s->progressive_sequence = 1;
2035     s->progressive_frame    = 1;
2036     s->picture_structure    = PICT_FRAME;
2037     s->first_field          = 0;
2038     s->frame_pred_frame_dct = 1;
2039     s->chroma_format        = 1;
2040     s->codec_id             = s->avctx->codec_id = CODEC_ID_MPEG1VIDEO;
2041     avctx->sub_id           = 1; /* indicates MPEG-1 */
2042     s->out_format           = FMT_MPEG1;
2043     s->swap_uv              = 0; // AFAIK VCR2 does not have SEQ_HEADER
2044     if (s->flags & CODEC_FLAG_LOW_DELAY)
2045         s->low_delay = 1;
2046
2047     if (s->avctx->debug & FF_DEBUG_PICT_INFO)
2048         av_log(s->avctx, AV_LOG_DEBUG, "vbv buffer: %d, bitrate:%d\n",
2049                s->avctx->rc_buffer_size, s->bit_rate);
2050
2051     return 0;
2052 }
2053
2054 static int vcr2_init_sequence(AVCodecContext *avctx)
2055 {
2056     Mpeg1Context *s1 = avctx->priv_data;
2057     MpegEncContext *s = &s1->mpeg_enc_ctx;
2058     int i, v;
2059
2060     /* start new MPEG-1 context decoding */
2061     s->out_format = FMT_MPEG1;
2062     if (s1->mpeg_enc_ctx_allocated) {
2063         MPV_common_end(s);
2064     }
2065     s->width  = avctx->coded_width;
2066     s->height = avctx->coded_height;
2067     avctx->has_b_frames = 0; // true?
2068     s->low_delay = 1;
2069
2070     avctx->pix_fmt = mpeg_get_pixelformat(avctx);
2071     avctx->hwaccel = ff_find_hwaccel(avctx->codec->id, avctx->pix_fmt);
2072
2073     if( avctx->pix_fmt == PIX_FMT_XVMC_MPEG2_IDCT || avctx->hwaccel )
2074         if (avctx->idct_algo == FF_IDCT_AUTO)
2075             avctx->idct_algo = FF_IDCT_SIMPLE;
2076
2077     if (MPV_common_init(s) < 0)
2078         return -1;
2079     s1->mpeg_enc_ctx_allocated = 1;
2080
2081     for (i = 0; i < 64; i++) {
2082         int j = s->dsp.idct_permutation[i];
2083         v = ff_mpeg1_default_intra_matrix[i];
2084         s->intra_matrix[j]        = v;
2085         s->chroma_intra_matrix[j] = v;
2086
2087         v = ff_mpeg1_default_non_intra_matrix[i];
2088         s->inter_matrix[j]        = v;
2089         s->chroma_inter_matrix[j] = v;
2090     }
2091
2092     s->progressive_sequence  = 1;
2093     s->progressive_frame     = 1;
2094     s->picture_structure     = PICT_FRAME;
2095     s->first_field           = 0;
2096     s->frame_pred_frame_dct  = 1;
2097     s->chroma_format         = 1;
2098     if (s->codec_tag == AV_RL32("BW10")) {
2099         s->codec_id              = s->avctx->codec_id = CODEC_ID_MPEG1VIDEO;
2100         avctx->sub_id            = 1; /* indicates MPEG-1 */
2101     } else {
2102         exchange_uv(s); // common init reset pblocks, so we swap them here
2103         s->swap_uv = 1; // in case of xvmc we need to swap uv for each MB
2104         s->codec_id              = s->avctx->codec_id = CODEC_ID_MPEG2VIDEO;
2105         avctx->sub_id            = 2; /* indicates MPEG-2 */
2106     }
2107     s1->save_width           = s->width;
2108     s1->save_height          = s->height;
2109     s1->save_progressive_seq = s->progressive_sequence;
2110     return 0;
2111 }
2112
2113
2114 static void mpeg_decode_user_data(AVCodecContext *avctx,
2115                                   const uint8_t *p, int buf_size)
2116 {
2117     Mpeg1Context *s = avctx->priv_data;
2118     const uint8_t *buf_end = p + buf_size;
2119
2120     if(buf_size > 29){
2121         int i;
2122         for(i=0; i<20; i++)
2123             if(!memcmp(p+i, "\0TMPGEXS\0", 9)){
2124                 s->tmpgexs= 1;
2125             }
2126
2127 /*        for(i=0; !(!p[i-2] && !p[i-1] && p[i]==1) && i<buf_size; i++){
2128             av_log(0,0, "%c", p[i]);
2129         }
2130             av_log(0,0, "\n");*/
2131     }
2132
2133     /* we parse the DTG active format information */
2134     if (buf_end - p >= 5 &&
2135         p[0] == 'D' && p[1] == 'T' && p[2] == 'G' && p[3] == '1') {
2136         int flags = p[4];
2137         p += 5;
2138         if (flags & 0x80) {
2139             /* skip event id */
2140             p += 2;
2141         }
2142         if (flags & 0x40) {
2143             if (buf_end - p < 1)
2144                 return;
2145             avctx->dtg_active_format = p[0] & 0x0f;
2146         }
2147     }
2148 }
2149
2150 static void mpeg_decode_gop(AVCodecContext *avctx,
2151                             const uint8_t *buf, int buf_size)
2152 {
2153     Mpeg1Context *s1  = avctx->priv_data;
2154     MpegEncContext *s = &s1->mpeg_enc_ctx;
2155     int broken_link;
2156     int64_t tc;
2157
2158     init_get_bits(&s->gb, buf, buf_size*8);
2159
2160     tc = avctx->timecode_frame_start = get_bits(&s->gb, 25);
2161
2162     s->closed_gop = get_bits1(&s->gb);
2163     /*broken_link indicate that after editing the
2164       reference frames of the first B-Frames after GOP I-Frame
2165       are missing (open gop)*/
2166     broken_link = get_bits1(&s->gb);
2167
2168     if (s->avctx->debug & FF_DEBUG_PICT_INFO) {
2169         char tcbuf[AV_TIMECODE_STR_SIZE];
2170         av_timecode_make_mpeg_tc_string(tcbuf, tc);
2171         av_log(s->avctx, AV_LOG_DEBUG,
2172                "GOP (%s) closed_gop=%d broken_link=%d\n",
2173                tcbuf, s->closed_gop, broken_link);
2174     }
2175 }
2176 /**
2177  * Find the end of the current frame in the bitstream.
2178  * @return the position of the first byte of the next frame, or -1
2179  */
2180 int ff_mpeg1_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size, AVCodecParserContext *s)
2181 {
2182     int i;
2183     uint32_t state = pc->state;
2184
2185     /* EOF considered as end of frame */
2186     if (buf_size == 0)
2187         return 0;
2188
2189 /*
2190  0  frame start         -> 1/4
2191  1  first_SEQEXT        -> 0/2
2192  2  first field start   -> 3/0
2193  3  second_SEQEXT       -> 2/0
2194  4  searching end
2195 */
2196
2197     for (i = 0; i < buf_size; i++) {
2198         assert(pc->frame_start_found >= 0 && pc->frame_start_found <= 4);
2199         if (pc->frame_start_found & 1) {
2200             if (state == EXT_START_CODE && (buf[i] & 0xF0) != 0x80)
2201                 pc->frame_start_found--;
2202             else if (state == EXT_START_CODE + 2) {
2203                 if ((buf[i] & 3) == 3)
2204                     pc->frame_start_found = 0;
2205                 else
2206                     pc->frame_start_found = (pc->frame_start_found + 1) & 3;
2207             }
2208             state++;
2209         } else {
2210             i = avpriv_mpv_find_start_code(buf + i, buf + buf_size, &state) - buf - 1;
2211             if (pc->frame_start_found == 0 && state >= SLICE_MIN_START_CODE && state <= SLICE_MAX_START_CODE) {
2212                 i++;
2213                 pc->frame_start_found = 4;
2214             }
2215             if (state == SEQ_END_CODE) {
2216                 pc->frame_start_found = 0;
2217                 pc->state=-1;
2218                 return i+1;
2219             }
2220             if (pc->frame_start_found == 2 && state == SEQ_START_CODE)
2221                 pc->frame_start_found = 0;
2222             if (pc->frame_start_found  < 4 && state == EXT_START_CODE)
2223                 pc->frame_start_found++;
2224             if (pc->frame_start_found == 4 && (state & 0xFFFFFF00) == 0x100) {
2225                 if (state < SLICE_MIN_START_CODE || state > SLICE_MAX_START_CODE) {
2226                     pc->frame_start_found = 0;
2227                     pc->state             = -1;
2228                     return i - 3;
2229                 }
2230             }
2231             if (pc->frame_start_found == 0 && s && state == PICTURE_START_CODE) {
2232                 ff_fetch_timestamp(s, i - 3, 1);
2233             }
2234         }
2235     }
2236     pc->state = state;
2237     return END_NOT_FOUND;
2238 }
2239
2240 static int decode_chunks(AVCodecContext *avctx,
2241                          AVFrame *picture, int *data_size,
2242                          const uint8_t *buf, int buf_size);
2243
2244 /* handle buffering and image synchronisation */
2245 static int mpeg_decode_frame(AVCodecContext *avctx,
2246                              void *data, int *data_size,
2247                              AVPacket *avpkt)
2248 {
2249     const uint8_t *buf = avpkt->data;
2250     int buf_size = avpkt->size;
2251     Mpeg1Context *s = avctx->priv_data;
2252     AVFrame *picture = data;
2253     MpegEncContext *s2 = &s->mpeg_enc_ctx;
2254     av_dlog(avctx, "fill_buffer\n");
2255
2256     if (buf_size == 0 || (buf_size == 4 && AV_RB32(buf) == SEQ_END_CODE)) {
2257         /* special case for last picture */
2258         if (s2->low_delay == 0 && s2->next_picture_ptr) {
2259             *picture = *(AVFrame*)s2->next_picture_ptr;
2260             s2->next_picture_ptr = NULL;
2261
2262             *data_size = sizeof(AVFrame);
2263         }
2264         return buf_size;
2265     }
2266
2267     if (s2->flags & CODEC_FLAG_TRUNCATED) {
2268         int next = ff_mpeg1_find_frame_end(&s2->parse_context, buf, buf_size, NULL);
2269
2270         if (ff_combine_frame(&s2->parse_context, next, (const uint8_t **)&buf, &buf_size) < 0)
2271             return buf_size;
2272     }
2273
2274     s2->codec_tag = avpriv_toupper4(avctx->codec_tag);
2275     if (s->mpeg_enc_ctx_allocated == 0 && (   s2->codec_tag == AV_RL32("VCR2")
2276                                            || s2->codec_tag == AV_RL32("BW10")
2277                                           ))
2278         vcr2_init_sequence(avctx);
2279
2280     s->slice_count = 0;
2281
2282     if (avctx->extradata && !avctx->frame_number) {
2283         int ret = decode_chunks(avctx, picture, data_size, avctx->extradata, avctx->extradata_size);
2284         if (ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
2285             return ret;
2286     }
2287
2288     return decode_chunks(avctx, picture, data_size, buf, buf_size);
2289 }
2290
2291 static int decode_chunks(AVCodecContext *avctx,
2292                          AVFrame *picture, int *data_size,
2293                          const uint8_t *buf, int buf_size)
2294 {
2295     Mpeg1Context *s = avctx->priv_data;
2296     MpegEncContext *s2 = &s->mpeg_enc_ctx;
2297     const uint8_t *buf_ptr = buf;
2298     const uint8_t *buf_end = buf + buf_size;
2299     int ret, input_size;
2300     int last_code = 0;
2301
2302     for (;;) {
2303         /* find next start code */
2304         uint32_t start_code = -1;
2305         buf_ptr = avpriv_mpv_find_start_code(buf_ptr, buf_end, &start_code);
2306         if (start_code > 0x1ff) {
2307             if (s2->pict_type != AV_PICTURE_TYPE_B || avctx->skip_frame <= AVDISCARD_DEFAULT) {
2308                 if (HAVE_THREADS && (avctx->active_thread_type & FF_THREAD_SLICE)) {
2309                     int i;
2310                     av_assert0(avctx->thread_count > 1);
2311
2312                     avctx->execute(avctx, slice_decode_thread,  &s2->thread_context[0], NULL, s->slice_count, sizeof(void*));
2313                     for (i = 0; i < s->slice_count; i++)
2314                         s2->error_count += s2->thread_context[i]->error_count;
2315                 }
2316
2317                 if (CONFIG_VDPAU && uses_vdpau(avctx))
2318                     ff_vdpau_mpeg_picture_complete(s2, buf, buf_size, s->slice_count);
2319
2320
2321                 if (slice_end(avctx, picture)) {
2322                     if (s2->last_picture_ptr || s2->low_delay) //FIXME merge with the stuff in mpeg_decode_slice
2323                         *data_size = sizeof(AVPicture);
2324                 }
2325             }
2326             s2->pict_type = 0;
2327             return FFMAX(0, buf_ptr - buf - s2->parse_context.last_index);
2328         }
2329
2330         input_size = buf_end - buf_ptr;
2331
2332         if (avctx->debug & FF_DEBUG_STARTCODE) {
2333             av_log(avctx, AV_LOG_DEBUG, "%3X at %td left %d\n", start_code, buf_ptr-buf, input_size);
2334         }
2335
2336         /* prepare data for next start code */
2337         switch (start_code) {
2338         case SEQ_START_CODE:
2339             if (last_code == 0) {
2340                 mpeg1_decode_sequence(avctx, buf_ptr, input_size);
2341                 if(buf != avctx->extradata)
2342                     s->sync=1;
2343             } else {
2344                 av_log(avctx, AV_LOG_ERROR, "ignoring SEQ_START_CODE after %X\n", last_code);
2345                 if (avctx->err_recognition & AV_EF_EXPLODE)
2346                     return AVERROR_INVALIDDATA;
2347             }
2348             break;
2349
2350         case PICTURE_START_CODE:
2351             if(s->tmpgexs){
2352                 s2->intra_dc_precision= 3;
2353                 s2->intra_matrix[0]= 1;
2354             }
2355             if (HAVE_THREADS && (avctx->active_thread_type & FF_THREAD_SLICE) && s->slice_count) {
2356                 int i;
2357
2358                 avctx->execute(avctx, slice_decode_thread,
2359                                s2->thread_context, NULL,
2360                                s->slice_count, sizeof(void*));
2361                 for (i = 0; i < s->slice_count; i++)
2362                     s2->error_count += s2->thread_context[i]->error_count;
2363                 s->slice_count = 0;
2364             }
2365             if (last_code == 0 || last_code == SLICE_MIN_START_CODE) {
2366                 ret = mpeg_decode_postinit(avctx);
2367                 if (ret < 0) {
2368                     av_log(avctx, AV_LOG_ERROR, "mpeg_decode_postinit() failure\n");
2369                     return ret;
2370                 }
2371
2372                 /* we have a complete image: we try to decompress it */
2373                 if (mpeg1_decode_picture(avctx, buf_ptr, input_size) < 0)
2374                     s2->pict_type = 0;
2375                 s2->first_slice = 1;
2376                 last_code = PICTURE_START_CODE;
2377             } else {
2378                 av_log(avctx, AV_LOG_ERROR, "ignoring pic after %X\n", last_code);
2379                 if (avctx->err_recognition & AV_EF_EXPLODE)
2380                     return AVERROR_INVALIDDATA;
2381             }
2382             break;
2383         case EXT_START_CODE:
2384             init_get_bits(&s2->gb, buf_ptr, input_size*8);
2385
2386             switch (get_bits(&s2->gb, 4)) {
2387             case 0x1:
2388                 if (last_code == 0) {
2389                 mpeg_decode_sequence_extension(s);
2390                 } else {
2391                     av_log(avctx, AV_LOG_ERROR, "ignoring seq ext after %X\n", last_code);
2392                     if (avctx->err_recognition & AV_EF_EXPLODE)
2393                         return AVERROR_INVALIDDATA;
2394                 }
2395                 break;
2396             case 0x2:
2397                 mpeg_decode_sequence_display_extension(s);
2398                 break;
2399             case 0x3:
2400                 mpeg_decode_quant_matrix_extension(s2);
2401                 break;
2402             case 0x7:
2403                 mpeg_decode_picture_display_extension(s);
2404                 break;
2405             case 0x8:
2406                 if (last_code == PICTURE_START_CODE) {
2407                     mpeg_decode_picture_coding_extension(s);
2408                 } else {
2409                     av_log(avctx, AV_LOG_ERROR, "ignoring pic cod ext after %X\n", last_code);
2410                     if (avctx->err_recognition & AV_EF_EXPLODE)
2411                         return AVERROR_INVALIDDATA;
2412                 }
2413                 break;
2414             }
2415             break;
2416         case USER_START_CODE:
2417             mpeg_decode_user_data(avctx, buf_ptr, input_size);
2418             break;
2419         case GOP_START_CODE:
2420             if (last_code == 0) {
2421                 s2->first_field=0;
2422                 mpeg_decode_gop(avctx, buf_ptr, input_size);
2423                 s->sync=1;
2424             } else {
2425                 av_log(avctx, AV_LOG_ERROR, "ignoring GOP_START_CODE after %X\n", last_code);
2426                 if (avctx->err_recognition & AV_EF_EXPLODE)
2427                     return AVERROR_INVALIDDATA;
2428             }
2429             break;
2430         default:
2431             if (start_code >= SLICE_MIN_START_CODE &&
2432                 start_code <= SLICE_MAX_START_CODE && last_code != 0) {
2433                 const int field_pic = s2->picture_structure != PICT_FRAME;
2434                 int mb_y = (start_code - SLICE_MIN_START_CODE) << field_pic;
2435                 last_code = SLICE_MIN_START_CODE;
2436
2437                 if (s2->picture_structure == PICT_BOTTOM_FIELD)
2438                     mb_y++;
2439
2440                 if (mb_y >= s2->mb_height) {
2441                     av_log(s2->avctx, AV_LOG_ERROR, "slice below image (%d >= %d)\n", mb_y, s2->mb_height);
2442                     return -1;
2443                 }
2444
2445                 if (s2->last_picture_ptr == NULL) {
2446                 /* Skip B-frames if we do not have reference frames and gop is not closed */
2447                     if (s2->pict_type == AV_PICTURE_TYPE_B) {
2448                         if (!s2->closed_gop)
2449                             break;
2450                     }
2451                 }
2452                 if (s2->pict_type == AV_PICTURE_TYPE_I || (s2->flags2 & CODEC_FLAG2_SHOW_ALL))
2453                     s->sync=1;
2454                 if (s2->next_picture_ptr == NULL) {
2455                 /* Skip P-frames if we do not have a reference frame or we have an invalid header. */
2456                     if (s2->pict_type == AV_PICTURE_TYPE_P && !s->sync) break;
2457                 }
2458                 if ((avctx->skip_frame >= AVDISCARD_NONREF && s2->pict_type == AV_PICTURE_TYPE_B) ||
2459                     (avctx->skip_frame >= AVDISCARD_NONKEY && s2->pict_type != AV_PICTURE_TYPE_I) ||
2460                      avctx->skip_frame >= AVDISCARD_ALL)
2461                     break;
2462
2463                 if (!s->mpeg_enc_ctx_allocated)
2464                     break;
2465
2466                 if (s2->codec_id == CODEC_ID_MPEG2VIDEO) {
2467                     if (mb_y < avctx->skip_top || mb_y >= s2->mb_height - avctx->skip_bottom)
2468                         break;
2469                 }
2470
2471                 if (!s2->pict_type) {
2472                     av_log(avctx, AV_LOG_ERROR, "Missing picture start code\n");
2473                     if (avctx->err_recognition & AV_EF_EXPLODE)
2474                         return AVERROR_INVALIDDATA;
2475                     break;
2476                 }
2477
2478                 if (s2->first_slice) {
2479                     s2->first_slice = 0;
2480                     if (mpeg_field_start(s2, buf, buf_size) < 0)
2481                         return -1;
2482                 }
2483                 if (!s2->current_picture_ptr) {
2484                     av_log(avctx, AV_LOG_ERROR, "current_picture not initialized\n");
2485                     return AVERROR_INVALIDDATA;
2486                 }
2487
2488                 if (uses_vdpau(avctx)) {
2489                     s->slice_count++;
2490                     break;
2491                 }
2492
2493                 if (HAVE_THREADS && (avctx->active_thread_type & FF_THREAD_SLICE)) {
2494                     int threshold = (s2->mb_height * s->slice_count +
2495                                      s2->slice_context_count / 2) /
2496                                     s2->slice_context_count;
2497                     av_assert0(avctx->thread_count > 1);
2498                     if (threshold <= mb_y) {
2499                         MpegEncContext *thread_context = s2->thread_context[s->slice_count];
2500
2501                         thread_context->start_mb_y = mb_y;
2502                         thread_context->end_mb_y   = s2->mb_height;
2503                         if (s->slice_count) {
2504                             s2->thread_context[s->slice_count-1]->end_mb_y = mb_y;
2505                             ff_update_duplicate_context(thread_context, s2);
2506                         }
2507                         init_get_bits(&thread_context->gb, buf_ptr, input_size*8);
2508                         s->slice_count++;
2509                     }
2510                     buf_ptr += 2; // FIXME add minimum number of bytes per slice
2511                 } else {
2512                     ret = mpeg_decode_slice(s2, mb_y, &buf_ptr, input_size);
2513                     emms_c();
2514
2515                     if (ret < 0) {
2516                         if (avctx->err_recognition & AV_EF_EXPLODE)
2517                             return ret;
2518                         if (s2->resync_mb_x >= 0 && s2->resync_mb_y >= 0)
2519                             ff_er_add_slice(s2, s2->resync_mb_x, s2->resync_mb_y, s2->mb_x, s2->mb_y, ER_AC_ERROR | ER_DC_ERROR | ER_MV_ERROR);
2520                     } else {
2521                         ff_er_add_slice(s2, s2->resync_mb_x, s2->resync_mb_y, s2->mb_x-1, s2->mb_y, ER_AC_END | ER_DC_END | ER_MV_END);
2522                     }
2523                 }
2524             }
2525             break;
2526         }
2527     }
2528 }
2529
2530 static void flush(AVCodecContext *avctx)
2531 {
2532     Mpeg1Context *s = avctx->priv_data;
2533
2534     s->sync=0;
2535
2536     ff_mpeg_flush(avctx);
2537 }
2538
2539 static int mpeg_decode_end(AVCodecContext *avctx)
2540 {
2541     Mpeg1Context *s = avctx->priv_data;
2542
2543     if (s->mpeg_enc_ctx_allocated)
2544         MPV_common_end(&s->mpeg_enc_ctx);
2545     return 0;
2546 }
2547
2548 static const AVProfile mpeg2_video_profiles[] = {
2549     { FF_PROFILE_MPEG2_422,          "4:2:2"              },
2550     { FF_PROFILE_MPEG2_HIGH,         "High"               },
2551     { FF_PROFILE_MPEG2_SS,           "Spatially Scalable" },
2552     { FF_PROFILE_MPEG2_SNR_SCALABLE, "SNR Scalable"       },
2553     { FF_PROFILE_MPEG2_MAIN,         "Main"               },
2554     { FF_PROFILE_MPEG2_SIMPLE,       "Simple"             },
2555     { FF_PROFILE_RESERVED,           "Reserved"           },
2556     { FF_PROFILE_RESERVED,           "Reserved"           },
2557     { FF_PROFILE_UNKNOWN },
2558 };
2559
2560
2561 AVCodec ff_mpeg1video_decoder = {
2562     .name           = "mpeg1video",
2563     .type           = AVMEDIA_TYPE_VIDEO,
2564     .id             = CODEC_ID_MPEG1VIDEO,
2565     .priv_data_size = sizeof(Mpeg1Context),
2566     .init           = mpeg_decode_init,
2567     .close          = mpeg_decode_end,
2568     .decode         = mpeg_decode_frame,
2569     .capabilities   = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY | CODEC_CAP_SLICE_THREADS,
2570     .flush          = flush,
2571     .max_lowres     = 3,
2572     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-1 video"),
2573     .update_thread_context = ONLY_IF_THREADS_ENABLED(mpeg_decode_update_thread_context)
2574 };
2575
2576 AVCodec ff_mpeg2video_decoder = {
2577     .name           = "mpeg2video",
2578     .type           = AVMEDIA_TYPE_VIDEO,
2579     .id             = CODEC_ID_MPEG2VIDEO,
2580     .priv_data_size = sizeof(Mpeg1Context),
2581     .init           = mpeg_decode_init,
2582     .close          = mpeg_decode_end,
2583     .decode         = mpeg_decode_frame,
2584     .capabilities   = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY | CODEC_CAP_SLICE_THREADS,
2585     .flush          = flush,
2586     .max_lowres     = 3,
2587     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-2 video"),
2588     .profiles       = NULL_IF_CONFIG_SMALL(mpeg2_video_profiles),
2589 };
2590
2591 //legacy decoder
2592 AVCodec ff_mpegvideo_decoder = {
2593     .name           = "mpegvideo",
2594     .type           = AVMEDIA_TYPE_VIDEO,
2595     .id             = CODEC_ID_MPEG2VIDEO,
2596     .priv_data_size = sizeof(Mpeg1Context),
2597     .init           = mpeg_decode_init,
2598     .close          = mpeg_decode_end,
2599     .decode         = mpeg_decode_frame,
2600     .capabilities   = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY | CODEC_CAP_SLICE_THREADS,
2601     .flush          = flush,
2602     .max_lowres     = 3,
2603     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-1 video"),
2604 };
2605
2606 #if CONFIG_MPEG_XVMC_DECODER
2607 static av_cold int mpeg_mc_decode_init(AVCodecContext *avctx)
2608 {
2609     if (avctx->active_thread_type & FF_THREAD_SLICE)
2610         return -1;
2611     if (!(avctx->slice_flags & SLICE_FLAG_CODED_ORDER))
2612         return -1;
2613     if (!(avctx->slice_flags & SLICE_FLAG_ALLOW_FIELD)) {
2614         av_dlog(avctx, "mpeg12.c: XvMC decoder will work better if SLICE_FLAG_ALLOW_FIELD is set\n");
2615     }
2616     mpeg_decode_init(avctx);
2617
2618     avctx->pix_fmt           = PIX_FMT_XVMC_MPEG2_IDCT;
2619     avctx->xvmc_acceleration = 2; // 2 - the blocks are packed!
2620
2621     return 0;
2622 }
2623
2624 AVCodec ff_mpeg_xvmc_decoder = {
2625     .name           = "mpegvideo_xvmc",
2626     .type           = AVMEDIA_TYPE_VIDEO,
2627     .id             = CODEC_ID_MPEG2VIDEO_XVMC,
2628     .priv_data_size = sizeof(Mpeg1Context),
2629     .init           = mpeg_mc_decode_init,
2630     .close          = mpeg_decode_end,
2631     .decode         = mpeg_decode_frame,
2632     .capabilities   = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED| CODEC_CAP_HWACCEL | CODEC_CAP_DELAY,
2633     .flush          = flush,
2634     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-1/2 video XvMC (X-Video Motion Compensation)"),
2635 };
2636
2637 #endif
2638
2639 #if CONFIG_MPEG_VDPAU_DECODER
2640 AVCodec ff_mpeg_vdpau_decoder = {
2641     .name           = "mpegvideo_vdpau",
2642     .type           = AVMEDIA_TYPE_VIDEO,
2643     .id             = CODEC_ID_MPEG2VIDEO,
2644     .priv_data_size = sizeof(Mpeg1Context),
2645     .init           = mpeg_decode_init,
2646     .close          = mpeg_decode_end,
2647     .decode         = mpeg_decode_frame,
2648     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_HWACCEL_VDPAU | CODEC_CAP_DELAY,
2649     .flush          = flush,
2650     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-1/2 video (VDPAU acceleration)"),
2651 };
2652 #endif
2653
2654 #if CONFIG_MPEG1_VDPAU_DECODER
2655 AVCodec ff_mpeg1_vdpau_decoder = {
2656     .name           = "mpeg1video_vdpau",
2657     .type           = AVMEDIA_TYPE_VIDEO,
2658     .id             = CODEC_ID_MPEG1VIDEO,
2659     .priv_data_size = sizeof(Mpeg1Context),
2660     .init           = mpeg_decode_init,
2661     .close          = mpeg_decode_end,
2662     .decode         = mpeg_decode_frame,
2663     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_HWACCEL_VDPAU | CODEC_CAP_DELAY,
2664     .flush          = flush,
2665     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-1 video (VDPAU acceleration)"),
2666 };
2667 #endif