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