]> git.sesse.net Git - ffmpeg/blob - libavcodec/mpeg12.c
cavsdec: Fix assertion failure.
[ffmpeg] / libavcodec / mpeg12.c
1 /*
2  * MPEG-1/2 decoder
3  * Copyright (c) 2000, 2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * MPEG-1/2 decoder
26  */
27
28 #define UNCHECKED_BITSTREAM_READER 1
29
30 //#define DEBUG
31 #include "internal.h"
32 #include "avcodec.h"
33 #include "dsputil.h"
34 #include "mpegvideo.h"
35 #include "libavutil/avassert.h"
36 #include "libavutil/timecode.h"
37
38 #include "mpeg12.h"
39 #include "mpeg12data.h"
40 #include "mpeg12decdata.h"
41 #include "bytestream.h"
42 #include "vdpau_internal.h"
43 #include "xvmc_internal.h"
44 #include "thread.h"
45
46
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         ff_init_rl(&ff_rl_mpeg1, ff_mpeg12_static_rl_table_store[0]);
698         ff_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(MpegEncContext *s, DCTELEM block[12][64])
739 {
740     int i, j, k, cbp, val, mb_type, motion_type;
741     const int mb_block_count = 4 + (1 << s->chroma_format);
742
743     av_dlog(s->avctx, "decode_mb: x=%d y=%d\n", s->mb_x, s->mb_y);
744
745     av_assert2(s->mb_skipped == 0);
746
747     if (s->mb_skip_run-- != 0) {
748         if (s->pict_type == AV_PICTURE_TYPE_P) {
749             s->mb_skipped = 1;
750             s->current_picture.f.mb_type[s->mb_x + s->mb_y * s->mb_stride] = MB_TYPE_SKIP | MB_TYPE_L0 | MB_TYPE_16x16;
751         } else {
752             int mb_type;
753
754             if (s->mb_x)
755                 mb_type = s->current_picture.f.mb_type[s->mb_x + s->mb_y * s->mb_stride - 1];
756             else
757                 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
758             if (IS_INTRA(mb_type))
759                 return -1;
760             s->current_picture.f.mb_type[s->mb_x + s->mb_y*s->mb_stride] =
761                 mb_type | MB_TYPE_SKIP;
762 //            av_assert2(s->current_picture.f.mb_type[s->mb_x + s->mb_y * s->mb_stride - 1] & (MB_TYPE_16x16 | MB_TYPE_16x8));
763
764             if ((s->mv[0][0][0] | s->mv[0][0][1] | s->mv[1][0][0] | s->mv[1][0][1]) == 0)
765                 s->mb_skipped = 1;
766         }
767
768         return 0;
769     }
770
771     switch (s->pict_type) {
772     default:
773     case AV_PICTURE_TYPE_I:
774         if (get_bits1(&s->gb) == 0) {
775             if (get_bits1(&s->gb) == 0) {
776                 av_log(s->avctx, AV_LOG_ERROR, "invalid mb type in I Frame at %d %d\n", s->mb_x, s->mb_y);
777                 return -1;
778             }
779             mb_type = MB_TYPE_QUANT | MB_TYPE_INTRA;
780         } else {
781             mb_type = MB_TYPE_INTRA;
782         }
783         break;
784     case AV_PICTURE_TYPE_P:
785         mb_type = get_vlc2(&s->gb, mb_ptype_vlc.table, MB_PTYPE_VLC_BITS, 1);
786         if (mb_type < 0) {
787             av_log(s->avctx, AV_LOG_ERROR, "invalid mb type in P Frame at %d %d\n", s->mb_x, s->mb_y);
788             return -1;
789         }
790         mb_type = ptype2mb_type[mb_type];
791         break;
792     case AV_PICTURE_TYPE_B:
793         mb_type = get_vlc2(&s->gb, mb_btype_vlc.table, MB_BTYPE_VLC_BITS, 1);
794         if (mb_type < 0) {
795             av_log(s->avctx, AV_LOG_ERROR, "invalid mb type in B Frame at %d %d\n", s->mb_x, s->mb_y);
796             return -1;
797         }
798         mb_type = btype2mb_type[mb_type];
799         break;
800     }
801     av_dlog(s->avctx, "mb_type=%x\n", mb_type);
802 //    motion_type = 0; /* avoid warning */
803     if (IS_INTRA(mb_type)) {
804         s->dsp.clear_blocks(s->block[0]);
805
806         if (!s->chroma_y_shift) {
807             s->dsp.clear_blocks(s->block[6]);
808         }
809
810         /* compute DCT type */
811         if (s->picture_structure == PICT_FRAME && // FIXME add an interlaced_dct coded var?
812             !s->frame_pred_frame_dct) {
813             s->interlaced_dct = get_bits1(&s->gb);
814         }
815
816         if (IS_QUANT(mb_type))
817             s->qscale = get_qscale(s);
818
819         if (s->concealment_motion_vectors) {
820             /* just parse them */
821             if (s->picture_structure != PICT_FRAME)
822                 skip_bits1(&s->gb); /* field select */
823
824             s->mv[0][0][0]= s->last_mv[0][0][0]= s->last_mv[0][1][0] =
825                 mpeg_decode_motion(s, s->mpeg_f_code[0][0], s->last_mv[0][0][0]);
826             s->mv[0][0][1]= s->last_mv[0][0][1]= s->last_mv[0][1][1] =
827                 mpeg_decode_motion(s, s->mpeg_f_code[0][1], s->last_mv[0][0][1]);
828
829             skip_bits1(&s->gb); /* marker */
830         } else
831             memset(s->last_mv, 0, sizeof(s->last_mv)); /* reset mv prediction */
832         s->mb_intra = 1;
833         // if 1, we memcpy blocks in xvmcvideo
834         if (CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration > 1) {
835             ff_xvmc_pack_pblocks(s, -1); // inter are always full blocks
836             if (s->swap_uv) {
837                 exchange_uv(s);
838             }
839         }
840
841         if (s->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
842             if (s->flags2 & CODEC_FLAG2_FAST) {
843                 for (i = 0; i < 6; i++) {
844                     mpeg2_fast_decode_block_intra(s, *s->pblocks[i], i);
845                 }
846             } else {
847                 for (i = 0; i < mb_block_count; i++) {
848                     if (mpeg2_decode_block_intra(s, *s->pblocks[i], i) < 0)
849                         return -1;
850                 }
851             }
852         } else {
853             for (i = 0; i < 6; i++) {
854                 if (mpeg1_decode_block_intra(s, *s->pblocks[i], i) < 0)
855                     return -1;
856             }
857         }
858     } else {
859         if (mb_type & MB_TYPE_ZERO_MV) {
860             av_assert2(mb_type & MB_TYPE_CBP);
861
862             s->mv_dir = MV_DIR_FORWARD;
863             if (s->picture_structure == PICT_FRAME) {
864                 if (!s->frame_pred_frame_dct)
865                     s->interlaced_dct = get_bits1(&s->gb);
866                 s->mv_type = MV_TYPE_16X16;
867             } else {
868                 s->mv_type = MV_TYPE_FIELD;
869                 mb_type |= MB_TYPE_INTERLACED;
870                 s->field_select[0][0] = s->picture_structure - 1;
871             }
872
873             if (IS_QUANT(mb_type))
874                 s->qscale = get_qscale(s);
875
876             s->last_mv[0][0][0] = 0;
877             s->last_mv[0][0][1] = 0;
878             s->last_mv[0][1][0] = 0;
879             s->last_mv[0][1][1] = 0;
880             s->mv[0][0][0] = 0;
881             s->mv[0][0][1] = 0;
882         } else {
883             av_assert2(mb_type & MB_TYPE_L0L1);
884             // FIXME decide if MBs in field pictures are MB_TYPE_INTERLACED
885             /* get additional motion vector type */
886             if (s->frame_pred_frame_dct)
887                 motion_type = MT_FRAME;
888             else {
889                 motion_type = get_bits(&s->gb, 2);
890                 if (s->picture_structure == PICT_FRAME && HAS_CBP(mb_type))
891                     s->interlaced_dct = get_bits1(&s->gb);
892             }
893
894             if (IS_QUANT(mb_type))
895                 s->qscale = get_qscale(s);
896
897             /* motion vectors */
898             s->mv_dir = (mb_type >> 13) & 3;
899             av_dlog(s->avctx, "motion_type=%d\n", motion_type);
900             switch (motion_type) {
901             case MT_FRAME: /* or MT_16X8 */
902                 if (s->picture_structure == PICT_FRAME) {
903                     mb_type |= MB_TYPE_16x16;
904                     s->mv_type = MV_TYPE_16X16;
905                     for (i = 0; i < 2; i++) {
906                         if (USES_LIST(mb_type, i)) {
907                             /* MT_FRAME */
908                             s->mv[i][0][0]= s->last_mv[i][0][0]= s->last_mv[i][1][0] =
909                                 mpeg_decode_motion(s, s->mpeg_f_code[i][0], s->last_mv[i][0][0]);
910                             s->mv[i][0][1]= s->last_mv[i][0][1]= s->last_mv[i][1][1] =
911                                 mpeg_decode_motion(s, s->mpeg_f_code[i][1], s->last_mv[i][0][1]);
912                             /* full_pel: only for MPEG-1 */
913                             if (s->full_pel[i]) {
914                                 s->mv[i][0][0] <<= 1;
915                                 s->mv[i][0][1] <<= 1;
916                             }
917                         }
918                     }
919                 } else {
920                     mb_type |= MB_TYPE_16x8 | MB_TYPE_INTERLACED;
921                     s->mv_type = MV_TYPE_16X8;
922                     for (i = 0; i < 2; i++) {
923                         if (USES_LIST(mb_type, i)) {
924                             /* MT_16X8 */
925                             for (j = 0; j < 2; j++) {
926                                 s->field_select[i][j] = get_bits1(&s->gb);
927                                 for (k = 0; k < 2; k++) {
928                                     val = mpeg_decode_motion(s, s->mpeg_f_code[i][k],
929                                                              s->last_mv[i][j][k]);
930                                     s->last_mv[i][j][k] = val;
931                                     s->mv[i][j][k]      = val;
932                                 }
933                             }
934                         }
935                     }
936                 }
937                 break;
938             case MT_FIELD:
939                 s->mv_type = MV_TYPE_FIELD;
940                 if (s->picture_structure == PICT_FRAME) {
941                     mb_type |= MB_TYPE_16x8 | MB_TYPE_INTERLACED;
942                     for (i = 0; i < 2; i++) {
943                         if (USES_LIST(mb_type, i)) {
944                             for (j = 0; j < 2; j++) {
945                                 s->field_select[i][j] = get_bits1(&s->gb);
946                                 val = mpeg_decode_motion(s, s->mpeg_f_code[i][0],
947                                                          s->last_mv[i][j][0]);
948                                 s->last_mv[i][j][0] = val;
949                                 s->mv[i][j][0]      = val;
950                                 av_dlog(s->avctx, "fmx=%d\n", val);
951                                 val = mpeg_decode_motion(s, s->mpeg_f_code[i][1],
952                                                          s->last_mv[i][j][1] >> 1);
953                                 s->last_mv[i][j][1] = val << 1;
954                                 s->mv[i][j][1]      = val;
955                                 av_dlog(s->avctx, "fmy=%d\n", val);
956                             }
957                         }
958                     }
959                 } else {
960                     av_assert0(!s->progressive_sequence);
961                     mb_type |= MB_TYPE_16x16 | MB_TYPE_INTERLACED;
962                     for (i = 0; i < 2; i++) {
963                         if (USES_LIST(mb_type, i)) {
964                             s->field_select[i][0] = get_bits1(&s->gb);
965                             for (k = 0; k < 2; k++) {
966                                 val = mpeg_decode_motion(s, s->mpeg_f_code[i][k],
967                                                          s->last_mv[i][0][k]);
968                                 s->last_mv[i][0][k] = val;
969                                 s->last_mv[i][1][k] = val;
970                                 s->mv[i][0][k]      = val;
971                             }
972                         }
973                     }
974                 }
975                 break;
976             case MT_DMV:
977                 if(s->progressive_sequence){
978                     av_log(s->avctx, AV_LOG_ERROR, "MT_DMV in progressive_sequence\n");
979                     return -1;
980                 }
981                 s->mv_type = MV_TYPE_DMV;
982                 for (i = 0; i < 2; i++) {
983                     if (USES_LIST(mb_type, i)) {
984                         int dmx, dmy, mx, my, m;
985                         const int my_shift = s->picture_structure == PICT_FRAME;
986
987                         mx = mpeg_decode_motion(s, s->mpeg_f_code[i][0],
988                                                 s->last_mv[i][0][0]);
989                         s->last_mv[i][0][0] = mx;
990                         s->last_mv[i][1][0] = mx;
991                         dmx = get_dmv(s);
992                         my  = mpeg_decode_motion(s, s->mpeg_f_code[i][1],
993                                                  s->last_mv[i][0][1] >> my_shift);
994                         dmy = get_dmv(s);
995
996
997                         s->last_mv[i][0][1] = my << my_shift;
998                         s->last_mv[i][1][1] = my << my_shift;
999
1000                         s->mv[i][0][0] = mx;
1001                         s->mv[i][0][1] = my;
1002                         s->mv[i][1][0] = mx; // not used
1003                         s->mv[i][1][1] = my; // not used
1004
1005                         if (s->picture_structure == PICT_FRAME) {
1006                             mb_type |= MB_TYPE_16x16 | MB_TYPE_INTERLACED;
1007
1008                             // m = 1 + 2 * s->top_field_first;
1009                             m = s->top_field_first ? 1 : 3;
1010
1011                             /* top -> top pred */
1012                             s->mv[i][2][0] = ((mx * m + (mx > 0)) >> 1) + dmx;
1013                             s->mv[i][2][1] = ((my * m + (my > 0)) >> 1) + dmy - 1;
1014                             m = 4 - m;
1015                             s->mv[i][3][0] = ((mx * m + (mx > 0)) >> 1) + dmx;
1016                             s->mv[i][3][1] = ((my * m + (my > 0)) >> 1) + dmy + 1;
1017                         } else {
1018                             mb_type |= MB_TYPE_16x16;
1019
1020                             s->mv[i][2][0] = ((mx + (mx > 0)) >> 1) + dmx;
1021                             s->mv[i][2][1] = ((my + (my > 0)) >> 1) + dmy;
1022                             if (s->picture_structure == PICT_TOP_FIELD)
1023                                 s->mv[i][2][1]--;
1024                             else
1025                                 s->mv[i][2][1]++;
1026                         }
1027                     }
1028                 }
1029                 break;
1030             default:
1031                 av_log(s->avctx, AV_LOG_ERROR, "00 motion_type at %d %d\n", s->mb_x, s->mb_y);
1032                 return -1;
1033             }
1034         }
1035
1036         s->mb_intra = 0;
1037         if (HAS_CBP(mb_type)) {
1038             s->dsp.clear_blocks(s->block[0]);
1039
1040             cbp = get_vlc2(&s->gb, mb_pat_vlc.table, MB_PAT_VLC_BITS, 1);
1041             if (mb_block_count > 6) {
1042                  cbp <<= mb_block_count - 6;
1043                  cbp  |= get_bits(&s->gb, mb_block_count - 6);
1044                  s->dsp.clear_blocks(s->block[6]);
1045             }
1046             if (cbp <= 0) {
1047                 av_log(s->avctx, AV_LOG_ERROR, "invalid cbp at %d %d\n", s->mb_x, s->mb_y);
1048                 return -1;
1049             }
1050
1051             //if 1, we memcpy blocks in xvmcvideo
1052             if (CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration > 1) {
1053                 ff_xvmc_pack_pblocks(s, cbp);
1054                 if (s->swap_uv) {
1055                     exchange_uv(s);
1056                 }
1057             }
1058
1059             if (s->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
1060                 if (s->flags2 & CODEC_FLAG2_FAST) {
1061                     for (i = 0; i < 6; i++) {
1062                         if (cbp & 32) {
1063                             mpeg2_fast_decode_block_non_intra(s, *s->pblocks[i], i);
1064                         } else {
1065                             s->block_last_index[i] = -1;
1066                         }
1067                         cbp += cbp;
1068                     }
1069                 } else {
1070                     cbp <<= 12-mb_block_count;
1071
1072                     for (i = 0; i < mb_block_count; i++) {
1073                         if (cbp & (1 << 11)) {
1074                             if (mpeg2_decode_block_non_intra(s, *s->pblocks[i], i) < 0)
1075                                 return -1;
1076                         } else {
1077                             s->block_last_index[i] = -1;
1078                         }
1079                         cbp += cbp;
1080                     }
1081                 }
1082             } else {
1083                 if (s->flags2 & CODEC_FLAG2_FAST) {
1084                     for (i = 0; i < 6; i++) {
1085                         if (cbp & 32) {
1086                             mpeg1_fast_decode_block_inter(s, *s->pblocks[i], i);
1087                         } else {
1088                             s->block_last_index[i] = -1;
1089                         }
1090                         cbp += cbp;
1091                     }
1092                 } else {
1093                     for (i = 0; i < 6; i++) {
1094                         if (cbp & 32) {
1095                             if (mpeg1_decode_block_inter(s, *s->pblocks[i], i) < 0)
1096                                 return -1;
1097                         } else {
1098                             s->block_last_index[i] = -1;
1099                         }
1100                         cbp += cbp;
1101                     }
1102                 }
1103             }
1104         } else {
1105             for (i = 0; i < 12; i++)
1106                 s->block_last_index[i] = -1;
1107         }
1108     }
1109
1110     s->current_picture.f.mb_type[s->mb_x + s->mb_y * s->mb_stride] = mb_type;
1111
1112     return 0;
1113 }
1114
1115 static av_cold int mpeg_decode_init(AVCodecContext *avctx)
1116 {
1117     Mpeg1Context *s = avctx->priv_data;
1118     MpegEncContext *s2 = &s->mpeg_enc_ctx;
1119     int i;
1120
1121     /* we need some permutation to store matrices,
1122      * until MPV_common_init() sets the real permutation. */
1123     for (i = 0; i < 64; i++)
1124        s2->dsp.idct_permutation[i]=i;
1125
1126     ff_MPV_decode_defaults(s2);
1127
1128     s->mpeg_enc_ctx.avctx  = avctx;
1129     s->mpeg_enc_ctx.flags  = avctx->flags;
1130     s->mpeg_enc_ctx.flags2 = avctx->flags2;
1131     ff_mpeg12_common_init(&s->mpeg_enc_ctx);
1132     ff_mpeg12_init_vlcs();
1133
1134     s->mpeg_enc_ctx_allocated      = 0;
1135     s->mpeg_enc_ctx.picture_number = 0;
1136     s->repeat_field                = 0;
1137     s->mpeg_enc_ctx.codec_id       = avctx->codec->id;
1138     avctx->color_range = AVCOL_RANGE_MPEG;
1139     if (avctx->codec->id == AV_CODEC_ID_MPEG1VIDEO)
1140         avctx->chroma_sample_location = AVCHROMA_LOC_CENTER;
1141     else
1142         avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
1143     return 0;
1144 }
1145
1146 static int mpeg_decode_update_thread_context(AVCodecContext *avctx, const AVCodecContext *avctx_from)
1147 {
1148     Mpeg1Context *ctx = avctx->priv_data, *ctx_from = avctx_from->priv_data;
1149     MpegEncContext *s = &ctx->mpeg_enc_ctx, *s1 = &ctx_from->mpeg_enc_ctx;
1150     int err;
1151
1152     if (avctx == avctx_from || !ctx_from->mpeg_enc_ctx_allocated || !s1->context_initialized)
1153         return 0;
1154
1155     err = ff_mpeg_update_thread_context(avctx, avctx_from);
1156     if (err) return err;
1157
1158     if (!ctx->mpeg_enc_ctx_allocated)
1159         memcpy(s + 1, s1 + 1, sizeof(Mpeg1Context) - sizeof(MpegEncContext));
1160
1161     if (!(s->pict_type == AV_PICTURE_TYPE_B || s->low_delay))
1162         s->picture_number++;
1163
1164     return 0;
1165 }
1166
1167 static void quant_matrix_rebuild(uint16_t *matrix, const uint8_t *old_perm,
1168                                  const uint8_t *new_perm)
1169 {
1170     uint16_t temp_matrix[64];
1171     int i;
1172
1173     memcpy(temp_matrix, matrix, 64 * sizeof(uint16_t));
1174
1175     for (i = 0; i < 64; i++) {
1176         matrix[new_perm[i]] = temp_matrix[old_perm[i]];
1177     }
1178 }
1179
1180 static const enum PixelFormat mpeg1_hwaccel_pixfmt_list_420[] = {
1181 #if CONFIG_MPEG_XVMC_DECODER
1182     PIX_FMT_XVMC_MPEG2_IDCT,
1183     PIX_FMT_XVMC_MPEG2_MC,
1184 #endif
1185 #if CONFIG_MPEG1_VDPAU_HWACCEL
1186     PIX_FMT_VDPAU_MPEG1,
1187 #endif
1188     PIX_FMT_YUV420P,
1189     PIX_FMT_NONE
1190 };
1191
1192 static const enum PixelFormat mpeg2_hwaccel_pixfmt_list_420[] = {
1193 #if CONFIG_MPEG_XVMC_DECODER
1194     PIX_FMT_XVMC_MPEG2_IDCT,
1195     PIX_FMT_XVMC_MPEG2_MC,
1196 #endif
1197 #if CONFIG_MPEG2_VDPAU_HWACCEL
1198     PIX_FMT_VDPAU_MPEG2,
1199 #endif
1200 #if CONFIG_MPEG2_DXVA2_HWACCEL
1201     PIX_FMT_DXVA2_VLD,
1202 #endif
1203 #if CONFIG_MPEG2_VAAPI_HWACCEL
1204     PIX_FMT_VAAPI_VLD,
1205 #endif
1206     PIX_FMT_YUV420P,
1207     PIX_FMT_NONE
1208 };
1209
1210 static inline int uses_vdpau(AVCodecContext *avctx) {
1211     return avctx->pix_fmt == PIX_FMT_VDPAU_MPEG1 || avctx->pix_fmt == PIX_FMT_VDPAU_MPEG2;
1212 }
1213
1214 static enum PixelFormat mpeg_get_pixelformat(AVCodecContext *avctx)
1215 {
1216     Mpeg1Context *s1 = avctx->priv_data;
1217     MpegEncContext *s = &s1->mpeg_enc_ctx;
1218
1219     if(s->chroma_format < 2) {
1220         enum PixelFormat res;
1221         res = avctx->get_format(avctx,
1222                                 avctx->codec_id == AV_CODEC_ID_MPEG1VIDEO ?
1223                                 mpeg1_hwaccel_pixfmt_list_420 :
1224                                 mpeg2_hwaccel_pixfmt_list_420);
1225         if (res != PIX_FMT_XVMC_MPEG2_IDCT && res != PIX_FMT_XVMC_MPEG2_MC) {
1226             avctx->xvmc_acceleration = 0;
1227         } else if (!avctx->xvmc_acceleration) {
1228             avctx->xvmc_acceleration = 2;
1229         }
1230         return res;
1231     } else if(s->chroma_format == 2)
1232         return PIX_FMT_YUV422P;
1233     else
1234         return PIX_FMT_YUV444P;
1235 }
1236
1237 /* Call this function when we know all parameters.
1238  * It may be called in different places for MPEG-1 and MPEG-2. */
1239 static int mpeg_decode_postinit(AVCodecContext *avctx)
1240 {
1241     Mpeg1Context *s1 = avctx->priv_data;
1242     MpegEncContext *s = &s1->mpeg_enc_ctx;
1243     uint8_t old_permutation[64];
1244
1245     if ((s1->mpeg_enc_ctx_allocated == 0) ||
1246         avctx->coded_width  != s->width   ||
1247         avctx->coded_height != s->height  ||
1248         s1->save_width           != s->width                ||
1249         s1->save_height          != s->height               ||
1250         s1->save_aspect_info     != s->aspect_ratio_info    ||
1251         s1->save_progressive_seq != s->progressive_sequence ||
1252         0)
1253     {
1254
1255         if (s1->mpeg_enc_ctx_allocated) {
1256             ParseContext pc = s->parse_context;
1257             s->parse_context.buffer = 0;
1258             ff_MPV_common_end(s);
1259             s->parse_context = pc;
1260         }
1261
1262         if ((s->width == 0) || (s->height == 0))
1263             return -2;
1264
1265         avcodec_set_dimensions(avctx, s->width, s->height);
1266         avctx->bit_rate          = s->bit_rate;
1267         s1->save_aspect_info     = s->aspect_ratio_info;
1268         s1->save_width           = s->width;
1269         s1->save_height          = s->height;
1270         s1->save_progressive_seq = s->progressive_sequence;
1271
1272         /* low_delay may be forced, in this case we will have B-frames
1273          * that behave like P-frames. */
1274         avctx->has_b_frames = !s->low_delay;
1275
1276         if (avctx->codec_id == AV_CODEC_ID_MPEG1VIDEO) {
1277             //MPEG-1 fps
1278             avctx->time_base.den = avpriv_frame_rate_tab[s->frame_rate_index].num;
1279             avctx->time_base.num = avpriv_frame_rate_tab[s->frame_rate_index].den;
1280             //MPEG-1 aspect
1281             avctx->sample_aspect_ratio = av_d2q(1.0/ff_mpeg1_aspect[s->aspect_ratio_info], 255);
1282             avctx->ticks_per_frame=1;
1283         } else {//MPEG-2
1284         //MPEG-2 fps
1285             av_reduce(&s->avctx->time_base.den,
1286                       &s->avctx->time_base.num,
1287                       avpriv_frame_rate_tab[s->frame_rate_index].num * s1->frame_rate_ext.num*2,
1288                       avpriv_frame_rate_tab[s->frame_rate_index].den * s1->frame_rate_ext.den,
1289                       1 << 30);
1290             avctx->ticks_per_frame = 2;
1291             //MPEG-2 aspect
1292             if (s->aspect_ratio_info > 1) {
1293                 AVRational dar =
1294                     av_mul_q(av_div_q(ff_mpeg2_aspect[s->aspect_ratio_info],
1295                                       (AVRational) {s1->pan_scan.width, s1->pan_scan.height}),
1296                              (AVRational) {s->width, s->height});
1297
1298                 // we ignore the spec here and guess a bit as reality does not match the spec, see for example
1299                 // res_change_ffmpeg_aspect.ts and sequence-display-aspect.mpg
1300                 // issue1613, 621, 562
1301                 if ((s1->pan_scan.width == 0) || (s1->pan_scan.height == 0) ||
1302                    (av_cmp_q(dar, (AVRational) {4, 3}) && av_cmp_q(dar, (AVRational) {16, 9}))) {
1303                     s->avctx->sample_aspect_ratio =
1304                         av_div_q(ff_mpeg2_aspect[s->aspect_ratio_info],
1305                                  (AVRational) {s->width, s->height});
1306                 } else {
1307                     s->avctx->sample_aspect_ratio =
1308                         av_div_q(ff_mpeg2_aspect[s->aspect_ratio_info],
1309                                  (AVRational) {s1->pan_scan.width, s1->pan_scan.height});
1310 //issue1613 4/3 16/9 -> 16/9
1311 //res_change_ffmpeg_aspect.ts 4/3 225/44 ->4/3
1312 //widescreen-issue562.mpg 4/3 16/9 -> 16/9
1313 //                    s->avctx->sample_aspect_ratio = av_mul_q(s->avctx->sample_aspect_ratio, (AVRational) {s->width, s->height});
1314 //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);
1315 //av_log(NULL, AV_LOG_ERROR, "B %d/%d\n", s->avctx->sample_aspect_ratio.num, s->avctx->sample_aspect_ratio.den);
1316                 }
1317             } else {
1318                 s->avctx->sample_aspect_ratio =
1319                     ff_mpeg2_aspect[s->aspect_ratio_info];
1320             }
1321         } // MPEG-2
1322
1323         avctx->pix_fmt = mpeg_get_pixelformat(avctx);
1324         avctx->hwaccel = ff_find_hwaccel(avctx->codec->id, avctx->pix_fmt);
1325         // until then pix_fmt may be changed right after codec init
1326         if (avctx->pix_fmt == PIX_FMT_XVMC_MPEG2_IDCT ||
1327             avctx->hwaccel )
1328             if (avctx->idct_algo == FF_IDCT_AUTO)
1329                 avctx->idct_algo = FF_IDCT_SIMPLE;
1330
1331         /* Quantization matrices may need reordering
1332          * if DCT permutation is changed. */
1333         memcpy(old_permutation, s->dsp.idct_permutation, 64 * sizeof(uint8_t));
1334
1335         if (ff_MPV_common_init(s) < 0)
1336             return -2;
1337
1338         quant_matrix_rebuild(s->intra_matrix,        old_permutation, s->dsp.idct_permutation);
1339         quant_matrix_rebuild(s->inter_matrix,        old_permutation, s->dsp.idct_permutation);
1340         quant_matrix_rebuild(s->chroma_intra_matrix, old_permutation, s->dsp.idct_permutation);
1341         quant_matrix_rebuild(s->chroma_inter_matrix, old_permutation, s->dsp.idct_permutation);
1342
1343         s1->mpeg_enc_ctx_allocated = 1;
1344     }
1345     return 0;
1346 }
1347
1348 static int mpeg1_decode_picture(AVCodecContext *avctx,
1349                                 const uint8_t *buf, int buf_size)
1350 {
1351     Mpeg1Context *s1 = avctx->priv_data;
1352     MpegEncContext *s = &s1->mpeg_enc_ctx;
1353     int ref, f_code, vbv_delay;
1354
1355     init_get_bits(&s->gb, buf, buf_size*8);
1356
1357     ref = get_bits(&s->gb, 10); /* temporal ref */
1358     s->pict_type = get_bits(&s->gb, 3);
1359     if (s->pict_type == 0 || s->pict_type > 3)
1360         return -1;
1361
1362     vbv_delay = get_bits(&s->gb, 16);
1363     if (s->pict_type == AV_PICTURE_TYPE_P || s->pict_type == AV_PICTURE_TYPE_B) {
1364         s->full_pel[0] = get_bits1(&s->gb);
1365         f_code = get_bits(&s->gb, 3);
1366         if (f_code == 0 && (avctx->err_recognition & (AV_EF_BITSTREAM|AV_EF_COMPLIANT)))
1367             return -1;
1368         f_code += !f_code;
1369         s->mpeg_f_code[0][0] = f_code;
1370         s->mpeg_f_code[0][1] = f_code;
1371     }
1372     if (s->pict_type == AV_PICTURE_TYPE_B) {
1373         s->full_pel[1] = get_bits1(&s->gb);
1374         f_code = get_bits(&s->gb, 3);
1375         if (f_code == 0 && (avctx->err_recognition & (AV_EF_BITSTREAM|AV_EF_COMPLIANT)))
1376             return -1;
1377         f_code += !f_code;
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 = AV_CODEC_ID_MPEG2VIDEO;
1421
1422     if (s->avctx->debug & FF_DEBUG_PICT_INFO)
1423         av_log(s->avctx, AV_LOG_DEBUG, "profile: %d, level: %d vbv buffer: %d, bitrate:%d\n",
1424                s->avctx->profile, s->avctx->level, s->avctx->rc_buffer_size, s->bit_rate);
1425
1426 }
1427
1428 static void mpeg_decode_sequence_display_extension(Mpeg1Context *s1)
1429 {
1430     MpegEncContext *s = &s1->mpeg_enc_ctx;
1431     int color_description, w, h;
1432
1433     skip_bits(&s->gb, 3); /* video format */
1434     color_description = get_bits1(&s->gb);
1435     if (color_description) {
1436         s->avctx->color_primaries = get_bits(&s->gb, 8);
1437         s->avctx->color_trc       = get_bits(&s->gb, 8);
1438         s->avctx->colorspace      = get_bits(&s->gb, 8);
1439     }
1440     w = get_bits(&s->gb, 14);
1441     skip_bits(&s->gb, 1); //marker
1442     h = get_bits(&s->gb, 14);
1443     // remaining 3 bits are zero padding
1444
1445     s1->pan_scan.width  = 16 * w;
1446     s1->pan_scan.height = 16 * h;
1447
1448     if (s->avctx->debug & FF_DEBUG_PICT_INFO)
1449         av_log(s->avctx, AV_LOG_DEBUG, "sde w:%d, h:%d\n", w, h);
1450 }
1451
1452 static void mpeg_decode_picture_display_extension(Mpeg1Context *s1)
1453 {
1454     MpegEncContext *s = &s1->mpeg_enc_ctx;
1455     int i, nofco;
1456
1457     nofco = 1;
1458     if (s->progressive_sequence) {
1459         if (s->repeat_first_field) {
1460             nofco++;
1461             if (s->top_field_first)
1462                 nofco++;
1463         }
1464     } else {
1465         if (s->picture_structure == PICT_FRAME) {
1466             nofco++;
1467             if (s->repeat_first_field)
1468                 nofco++;
1469         }
1470     }
1471     for (i = 0; i < nofco; i++) {
1472         s1->pan_scan.position[i][0] = get_sbits(&s->gb, 16);
1473         skip_bits(&s->gb, 1); // marker
1474         s1->pan_scan.position[i][1] = get_sbits(&s->gb, 16);
1475         skip_bits(&s->gb, 1); // marker
1476     }
1477
1478     if (s->avctx->debug & FF_DEBUG_PICT_INFO)
1479         av_log(s->avctx, AV_LOG_DEBUG, "pde (%d,%d) (%d,%d) (%d,%d)\n",
1480                s1->pan_scan.position[0][0], s1->pan_scan.position[0][1],
1481                s1->pan_scan.position[1][0], s1->pan_scan.position[1][1],
1482                s1->pan_scan.position[2][0], s1->pan_scan.position[2][1]);
1483 }
1484
1485 static int load_matrix(MpegEncContext *s, uint16_t matrix0[64], uint16_t matrix1[64], int intra)
1486 {
1487     int i;
1488
1489     for (i = 0; i < 64; i++) {
1490         int j = s->dsp.idct_permutation[ff_zigzag_direct[i]];
1491         int v = get_bits(&s->gb, 8);
1492         if (v == 0) {
1493             av_log(s->avctx, AV_LOG_ERROR, "matrix damaged\n");
1494             return -1;
1495         }
1496         if (intra && i == 0 && v != 8) {
1497             av_log(s->avctx, AV_LOG_DEBUG, "intra matrix specifies invalid DC quantizer %d, ignoring\n", v);
1498             v = 8; // needed by pink.mpg / issue1046
1499         }
1500         matrix0[j] = v;
1501         if (matrix1)
1502             matrix1[j] = v;
1503     }
1504     return 0;
1505 }
1506
1507 static void mpeg_decode_quant_matrix_extension(MpegEncContext *s)
1508 {
1509     av_dlog(s->avctx, "matrix extension\n");
1510
1511     if (get_bits1(&s->gb)) load_matrix(s, s->chroma_intra_matrix, s->intra_matrix, 1);
1512     if (get_bits1(&s->gb)) load_matrix(s, s->chroma_inter_matrix, s->inter_matrix, 0);
1513     if (get_bits1(&s->gb)) load_matrix(s, s->chroma_intra_matrix, NULL           , 1);
1514     if (get_bits1(&s->gb)) load_matrix(s, s->chroma_inter_matrix, NULL           , 0);
1515 }
1516
1517 static void mpeg_decode_picture_coding_extension(Mpeg1Context *s1)
1518 {
1519     MpegEncContext *s = &s1->mpeg_enc_ctx;
1520
1521     s->full_pel[0] = s->full_pel[1] = 0;
1522     s->mpeg_f_code[0][0] = get_bits(&s->gb, 4);
1523     s->mpeg_f_code[0][1] = get_bits(&s->gb, 4);
1524     s->mpeg_f_code[1][0] = get_bits(&s->gb, 4);
1525     s->mpeg_f_code[1][1] = get_bits(&s->gb, 4);
1526     if (!s->pict_type && s1->mpeg_enc_ctx_allocated) {
1527         av_log(s->avctx, AV_LOG_ERROR, "Missing picture start code, guessing missing values\n");
1528         if (s->mpeg_f_code[1][0] == 15 && s->mpeg_f_code[1][1] == 15) {
1529             if (s->mpeg_f_code[0][0] == 15 && s->mpeg_f_code[0][1] == 15)
1530                 s->pict_type = AV_PICTURE_TYPE_I;
1531             else
1532                 s->pict_type = AV_PICTURE_TYPE_P;
1533         } else
1534             s->pict_type = AV_PICTURE_TYPE_B;
1535         s->current_picture.f.pict_type = s->pict_type;
1536         s->current_picture.f.key_frame = s->pict_type == AV_PICTURE_TYPE_I;
1537     }
1538     s->mpeg_f_code[0][0] += !s->mpeg_f_code[0][0];
1539     s->mpeg_f_code[0][1] += !s->mpeg_f_code[0][1];
1540     s->mpeg_f_code[1][0] += !s->mpeg_f_code[1][0];
1541     s->mpeg_f_code[1][1] += !s->mpeg_f_code[1][1];
1542
1543     s->intra_dc_precision         = get_bits(&s->gb, 2);
1544     s->picture_structure          = get_bits(&s->gb, 2);
1545     s->top_field_first            = get_bits1(&s->gb);
1546     s->frame_pred_frame_dct       = get_bits1(&s->gb);
1547     s->concealment_motion_vectors = get_bits1(&s->gb);
1548     s->q_scale_type               = get_bits1(&s->gb);
1549     s->intra_vlc_format           = get_bits1(&s->gb);
1550     s->alternate_scan             = get_bits1(&s->gb);
1551     s->repeat_first_field         = get_bits1(&s->gb);
1552     s->chroma_420_type            = get_bits1(&s->gb);
1553     s->progressive_frame          = get_bits1(&s->gb);
1554
1555
1556     if (s->alternate_scan) {
1557         ff_init_scantable(s->dsp.idct_permutation, &s->inter_scantable, ff_alternate_vertical_scan);
1558         ff_init_scantable(s->dsp.idct_permutation, &s->intra_scantable, ff_alternate_vertical_scan);
1559     } else {
1560         ff_init_scantable(s->dsp.idct_permutation, &s->inter_scantable, ff_zigzag_direct);
1561         ff_init_scantable(s->dsp.idct_permutation, &s->intra_scantable, ff_zigzag_direct);
1562     }
1563
1564     /* composite display not parsed */
1565     av_dlog(s->avctx, "intra_dc_precision=%d\n", s->intra_dc_precision);
1566     av_dlog(s->avctx, "picture_structure=%d\n", s->picture_structure);
1567     av_dlog(s->avctx, "top field first=%d\n", s->top_field_first);
1568     av_dlog(s->avctx, "repeat first field=%d\n", s->repeat_first_field);
1569     av_dlog(s->avctx, "conceal=%d\n", s->concealment_motion_vectors);
1570     av_dlog(s->avctx, "intra_vlc_format=%d\n", s->intra_vlc_format);
1571     av_dlog(s->avctx, "alternate_scan=%d\n", s->alternate_scan);
1572     av_dlog(s->avctx, "frame_pred_frame_dct=%d\n", s->frame_pred_frame_dct);
1573     av_dlog(s->avctx, "progressive_frame=%d\n", s->progressive_frame);
1574 }
1575
1576 static int mpeg_field_start(MpegEncContext *s, const uint8_t *buf, int buf_size)
1577 {
1578     AVCodecContext *avctx = s->avctx;
1579     Mpeg1Context *s1 = (Mpeg1Context*)s;
1580
1581     /* start frame decoding */
1582     if (s->first_field || s->picture_structure == PICT_FRAME) {
1583         if (ff_MPV_frame_start(s, avctx) < 0)
1584             return -1;
1585
1586         ff_er_frame_start(s);
1587
1588         /* first check if we must repeat the frame */
1589         s->current_picture_ptr->f.repeat_pict = 0;
1590         if (s->repeat_first_field) {
1591             if (s->progressive_sequence) {
1592                 if (s->top_field_first)
1593                     s->current_picture_ptr->f.repeat_pict = 4;
1594                 else
1595                     s->current_picture_ptr->f.repeat_pict = 2;
1596             } else if (s->progressive_frame) {
1597                 s->current_picture_ptr->f.repeat_pict = 1;
1598             }
1599         }
1600
1601         *s->current_picture_ptr->f.pan_scan = s1->pan_scan;
1602
1603         if (HAVE_THREADS && (avctx->active_thread_type & FF_THREAD_FRAME))
1604             ff_thread_finish_setup(avctx);
1605     } else { // second field
1606         int i;
1607
1608         if (!s->current_picture_ptr) {
1609             av_log(s->avctx, AV_LOG_ERROR, "first field missing\n");
1610             return -1;
1611         }
1612
1613         if (s->avctx->hwaccel &&
1614             (s->avctx->slice_flags & SLICE_FLAG_ALLOW_FIELD)) {
1615             if (s->avctx->hwaccel->end_frame(s->avctx) < 0)
1616                 av_log(avctx, AV_LOG_ERROR, "hardware accelerator failed to decode first field\n");
1617         }
1618
1619         for (i = 0; i < 4; i++) {
1620             s->current_picture.f.data[i] = s->current_picture_ptr->f.data[i];
1621             if (s->picture_structure == PICT_BOTTOM_FIELD) {
1622                 s->current_picture.f.data[i] += s->current_picture_ptr->f.linesize[i];
1623             }
1624         }
1625     }
1626
1627     if (avctx->hwaccel) {
1628         if (avctx->hwaccel->start_frame(avctx, buf, buf_size) < 0)
1629             return -1;
1630     }
1631
1632 // MPV_frame_start will call this function too,
1633 // but we need to call it on every field
1634     if (CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration)
1635         if (ff_xvmc_field_start(s, avctx) < 0)
1636             return -1;
1637
1638     return 0;
1639 }
1640
1641 #define DECODE_SLICE_ERROR -1
1642 #define DECODE_SLICE_OK     0
1643
1644 /**
1645  * Decode a slice.
1646  * MpegEncContext.mb_y must be set to the MB row from the startcode.
1647  * @return DECODE_SLICE_ERROR if the slice is damaged,
1648  *         DECODE_SLICE_OK if this slice is OK
1649  */
1650 static int mpeg_decode_slice(MpegEncContext *s, int mb_y,
1651                              const uint8_t **buf, int buf_size)
1652 {
1653     AVCodecContext *avctx = s->avctx;
1654     const int lowres      = s->avctx->lowres;
1655     const int field_pic   = s->picture_structure != PICT_FRAME;
1656
1657     s->resync_mb_x =
1658     s->resync_mb_y = -1;
1659
1660     av_assert0(mb_y < s->mb_height);
1661
1662     init_get_bits(&s->gb, *buf, buf_size * 8);
1663     if(s->codec_id != AV_CODEC_ID_MPEG1VIDEO && s->mb_height > 2800/16)
1664         skip_bits(&s->gb, 3);
1665
1666     ff_mpeg1_clean_buffers(s);
1667     s->interlaced_dct = 0;
1668
1669     s->qscale = get_qscale(s);
1670
1671     if (s->qscale == 0) {
1672         av_log(s->avctx, AV_LOG_ERROR, "qscale == 0\n");
1673         return -1;
1674     }
1675
1676     /* extra slice info */
1677     while (get_bits1(&s->gb) != 0) {
1678         skip_bits(&s->gb, 8);
1679     }
1680
1681     s->mb_x = 0;
1682
1683     if (mb_y == 0 && s->codec_tag == AV_RL32("SLIF")) {
1684         skip_bits1(&s->gb);
1685     } else {
1686         while (get_bits_left(&s->gb) > 0) {
1687             int code = get_vlc2(&s->gb, mbincr_vlc.table, MBINCR_VLC_BITS, 2);
1688             if (code < 0) {
1689                 av_log(s->avctx, AV_LOG_ERROR, "first mb_incr damaged\n");
1690                 return -1;
1691             }
1692             if (code >= 33) {
1693                 if (code == 33) {
1694                     s->mb_x += 33;
1695                 }
1696                 /* otherwise, stuffing, nothing to do */
1697             } else {
1698                 s->mb_x += code;
1699                 break;
1700             }
1701         }
1702     }
1703
1704     if (s->mb_x >= (unsigned)s->mb_width) {
1705         av_log(s->avctx, AV_LOG_ERROR, "initial skip overflow\n");
1706         return -1;
1707     }
1708
1709     if (avctx->hwaccel) {
1710         const uint8_t *buf_end, *buf_start = *buf - 4; /* include start_code */
1711         int start_code = -1;
1712         buf_end = avpriv_mpv_find_start_code(buf_start + 2, *buf + buf_size, &start_code);
1713         if (buf_end < *buf + buf_size)
1714             buf_end -= 4;
1715         s->mb_y = mb_y;
1716         if (avctx->hwaccel->decode_slice(avctx, buf_start, buf_end - buf_start) < 0)
1717             return DECODE_SLICE_ERROR;
1718         *buf = buf_end;
1719         return DECODE_SLICE_OK;
1720     }
1721
1722     s->resync_mb_x = s->mb_x;
1723     s->resync_mb_y = s->mb_y = mb_y;
1724     s->mb_skip_run = 0;
1725     ff_init_block_index(s);
1726
1727     if (s->mb_y == 0 && s->mb_x == 0 && (s->first_field || s->picture_structure == PICT_FRAME)) {
1728         if (s->avctx->debug & FF_DEBUG_PICT_INFO) {
1729              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",
1730                     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],
1731                     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")),
1732                     s->progressive_sequence ? "ps" :"", s->progressive_frame ? "pf" : "", s->alternate_scan ? "alt" :"", s->top_field_first ? "top" :"",
1733                     s->intra_dc_precision, s->picture_structure, s->frame_pred_frame_dct, s->concealment_motion_vectors,
1734                     s->q_scale_type, s->intra_vlc_format, s->repeat_first_field, s->chroma_420_type ? "420" :"");
1735         }
1736     }
1737
1738     for (;;) {
1739         // If 1, we memcpy blocks in xvmcvideo.
1740         if (CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration > 1)
1741             ff_xvmc_init_block(s); // set s->block
1742
1743         if (mpeg_decode_mb(s, s->block) < 0)
1744             return -1;
1745
1746         if (s->current_picture.f.motion_val[0] && !s->encoding) { // note motion_val is normally NULL unless we want to extract the MVs
1747             const int wrap = s->b8_stride;
1748             int xy         = s->mb_x * 2 + s->mb_y * 2 * wrap;
1749             int b8_xy      = 4 * (s->mb_x + s->mb_y * s->mb_stride);
1750             int motion_x, motion_y, dir, i;
1751
1752             for (i = 0; i < 2; i++) {
1753                 for (dir = 0; dir < 2; dir++) {
1754                     if (s->mb_intra || (dir == 1 && s->pict_type != AV_PICTURE_TYPE_B)) {
1755                         motion_x = motion_y = 0;
1756                     } else if (s->mv_type == MV_TYPE_16X16 || (s->mv_type == MV_TYPE_FIELD && field_pic)) {
1757                         motion_x = s->mv[dir][0][0];
1758                         motion_y = s->mv[dir][0][1];
1759                     } else /*if ((s->mv_type == MV_TYPE_FIELD) || (s->mv_type == MV_TYPE_16X8))*/ {
1760                         motion_x = s->mv[dir][i][0];
1761                         motion_y = s->mv[dir][i][1];
1762                     }
1763
1764                     s->current_picture.f.motion_val[dir][xy    ][0] = motion_x;
1765                     s->current_picture.f.motion_val[dir][xy    ][1] = motion_y;
1766                     s->current_picture.f.motion_val[dir][xy + 1][0] = motion_x;
1767                     s->current_picture.f.motion_val[dir][xy + 1][1] = motion_y;
1768                     s->current_picture.f.ref_index [dir][b8_xy    ] =
1769                     s->current_picture.f.ref_index [dir][b8_xy + 1] = s->field_select[dir][i];
1770                     av_assert2(s->field_select[dir][i] == 0 || s->field_select[dir][i] == 1);
1771                 }
1772                 xy += wrap;
1773                 b8_xy +=2;
1774             }
1775         }
1776
1777         s->dest[0] += 16 >> lowres;
1778         s->dest[1] +=(16 >> lowres) >> s->chroma_x_shift;
1779         s->dest[2] +=(16 >> lowres) >> s->chroma_x_shift;
1780
1781         ff_MPV_decode_mb(s, s->block);
1782
1783         if (++s->mb_x >= s->mb_width) {
1784             const int mb_size = 16 >> s->avctx->lowres;
1785
1786             ff_draw_horiz_band(s, mb_size*(s->mb_y >> field_pic), mb_size);
1787             ff_MPV_report_decode_progress(s);
1788
1789             s->mb_x = 0;
1790             s->mb_y += 1 << field_pic;
1791
1792             if (s->mb_y >= s->mb_height) {
1793                 int left   = get_bits_left(&s->gb);
1794                 int is_d10 = s->chroma_format == 2 && s->pict_type == AV_PICTURE_TYPE_I && avctx->profile == 0 && avctx->level == 5
1795                              && s->intra_dc_precision == 2 && s->q_scale_type == 1 && s->alternate_scan == 0
1796                              && s->progressive_frame == 0 /* vbv_delay == 0xBBB || 0xE10*/;
1797
1798                 if (left < 0 || (left && show_bits(&s->gb, FFMIN(left, 23)) && !is_d10)
1799                     || ((avctx->err_recognition & (AV_EF_BITSTREAM | AV_EF_AGGRESSIVE)) && left > 8)) {
1800                     av_log(avctx, AV_LOG_ERROR, "end mismatch left=%d %0X\n", left, show_bits(&s->gb, FFMIN(left, 23)));
1801                     return -1;
1802                 } else
1803                     goto eos;
1804             }
1805
1806             ff_init_block_index(s);
1807         }
1808
1809         /* skip mb handling */
1810         if (s->mb_skip_run == -1) {
1811             /* read increment again */
1812             s->mb_skip_run = 0;
1813             for (;;) {
1814                 int code = get_vlc2(&s->gb, mbincr_vlc.table, MBINCR_VLC_BITS, 2);
1815                 if (code < 0) {
1816                     av_log(s->avctx, AV_LOG_ERROR, "mb incr damaged\n");
1817                     return -1;
1818                 }
1819                 if (code >= 33) {
1820                     if (code == 33) {
1821                         s->mb_skip_run += 33;
1822                     } else if (code == 35) {
1823                         if (s->mb_skip_run != 0 || show_bits(&s->gb, 15) != 0) {
1824                             av_log(s->avctx, AV_LOG_ERROR, "slice mismatch\n");
1825                             return -1;
1826                         }
1827                         goto eos; /* end of slice */
1828                     }
1829                     /* otherwise, stuffing, nothing to do */
1830                 } else {
1831                     s->mb_skip_run += code;
1832                     break;
1833                 }
1834             }
1835             if (s->mb_skip_run) {
1836                 int i;
1837                 if (s->pict_type == AV_PICTURE_TYPE_I) {
1838                     av_log(s->avctx, AV_LOG_ERROR, "skipped MB in I frame at %d %d\n", s->mb_x, s->mb_y);
1839                     return -1;
1840                 }
1841
1842                 /* skip mb */
1843                 s->mb_intra = 0;
1844                 for (i = 0; i < 12; i++)
1845                     s->block_last_index[i] = -1;
1846                 if (s->picture_structure == PICT_FRAME)
1847                     s->mv_type = MV_TYPE_16X16;
1848                 else
1849                     s->mv_type = MV_TYPE_FIELD;
1850                 if (s->pict_type == AV_PICTURE_TYPE_P) {
1851                     /* if P type, zero motion vector is implied */
1852                     s->mv_dir             = MV_DIR_FORWARD;
1853                     s->mv[0][0][0]        = s->mv[0][0][1]      = 0;
1854                     s->last_mv[0][0][0]   = s->last_mv[0][0][1] = 0;
1855                     s->last_mv[0][1][0]   = s->last_mv[0][1][1] = 0;
1856                     s->field_select[0][0] = (s->picture_structure - 1) & 1;
1857                 } else {
1858                     /* if B type, reuse previous vectors and directions */
1859                     s->mv[0][0][0] = s->last_mv[0][0][0];
1860                     s->mv[0][0][1] = s->last_mv[0][0][1];
1861                     s->mv[1][0][0] = s->last_mv[1][0][0];
1862                     s->mv[1][0][1] = s->last_mv[1][0][1];
1863                 }
1864             }
1865         }
1866     }
1867 eos: // end of slice
1868     *buf += (get_bits_count(&s->gb)-1)/8;
1869 //printf("y %d %d %d %d\n", s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y);
1870     return 0;
1871 }
1872
1873 static int slice_decode_thread(AVCodecContext *c, void *arg)
1874 {
1875     MpegEncContext *s   = *(void**)arg;
1876     const uint8_t *buf  = s->gb.buffer;
1877     int mb_y            = s->start_mb_y;
1878     const int field_pic = s->picture_structure != PICT_FRAME;
1879
1880     s->error_count = (3 * (s->end_mb_y - s->start_mb_y) * s->mb_width) >> field_pic;
1881
1882     for (;;) {
1883         uint32_t start_code;
1884         int ret;
1885
1886         ret = mpeg_decode_slice(s, mb_y, &buf, s->gb.buffer_end - buf);
1887         emms_c();
1888 //av_log(c, AV_LOG_DEBUG, "ret:%d resync:%d/%d mb:%d/%d ts:%d/%d ec:%d\n",
1889 //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);
1890         if (ret < 0) {
1891             if (c->err_recognition & AV_EF_EXPLODE)
1892                 return ret;
1893             if (s->resync_mb_x >= 0 && s->resync_mb_y >= 0)
1894                 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, ER_AC_ERROR | ER_DC_ERROR | ER_MV_ERROR);
1895         } else {
1896             ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, ER_AC_END | ER_DC_END | ER_MV_END);
1897         }
1898
1899         if (s->mb_y == s->end_mb_y)
1900             return 0;
1901
1902         start_code = -1;
1903         buf = avpriv_mpv_find_start_code(buf, s->gb.buffer_end, &start_code);
1904         mb_y= start_code - SLICE_MIN_START_CODE;
1905         if(s->codec_id != AV_CODEC_ID_MPEG1VIDEO && s->mb_height > 2800/16)
1906             mb_y += (*buf&0xE0)<<2;
1907         mb_y <<= field_pic;
1908         if (s->picture_structure == PICT_BOTTOM_FIELD)
1909             mb_y++;
1910         if (mb_y < 0 || mb_y >= s->end_mb_y)
1911             return -1;
1912     }
1913 }
1914
1915 /**
1916  * Handle slice ends.
1917  * @return 1 if it seems to be the last slice
1918  */
1919 static int slice_end(AVCodecContext *avctx, AVFrame *pict)
1920 {
1921     Mpeg1Context *s1 = avctx->priv_data;
1922     MpegEncContext *s = &s1->mpeg_enc_ctx;
1923
1924     if (!s1->mpeg_enc_ctx_allocated || !s->current_picture_ptr)
1925         return 0;
1926
1927     if (s->avctx->hwaccel) {
1928         if (s->avctx->hwaccel->end_frame(s->avctx) < 0)
1929             av_log(avctx, AV_LOG_ERROR, "hardware accelerator failed to decode picture\n");
1930     }
1931
1932     if (CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration)
1933         ff_xvmc_field_end(s);
1934
1935     /* end of slice reached */
1936     if (/*s->mb_y << field_pic == s->mb_height &&*/ !s->first_field && !s->first_slice) {
1937         /* end of image */
1938
1939         s->current_picture_ptr->f.qscale_type = FF_QSCALE_TYPE_MPEG2;
1940
1941         ff_er_frame_end(s);
1942
1943         ff_MPV_frame_end(s);
1944
1945         if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
1946             *pict = s->current_picture_ptr->f;
1947             ff_print_debug_info(s, pict);
1948         } else {
1949             if (avctx->active_thread_type & FF_THREAD_FRAME)
1950                 s->picture_number++;
1951             /* latency of 1 frame for I- and P-frames */
1952             /* XXX: use another variable than picture_number */
1953             if (s->last_picture_ptr != NULL) {
1954                 *pict = s->last_picture_ptr->f;
1955                  ff_print_debug_info(s, pict);
1956             }
1957         }
1958
1959         return 1;
1960     } else {
1961         return 0;
1962     }
1963 }
1964
1965 static int mpeg1_decode_sequence(AVCodecContext *avctx,
1966                                  const uint8_t *buf, int buf_size)
1967 {
1968     Mpeg1Context *s1 = avctx->priv_data;
1969     MpegEncContext *s = &s1->mpeg_enc_ctx;
1970     int width, height;
1971     int i, v, j;
1972
1973     init_get_bits(&s->gb, buf, buf_size*8);
1974
1975     width  = get_bits(&s->gb, 12);
1976     height = get_bits(&s->gb, 12);
1977     if (width <= 0 || height <= 0)
1978         return -1;
1979     s->aspect_ratio_info = get_bits(&s->gb, 4);
1980     if (s->aspect_ratio_info == 0) {
1981         av_log(avctx, AV_LOG_ERROR, "aspect ratio has forbidden 0 value\n");
1982         if (avctx->err_recognition & (AV_EF_BITSTREAM | AV_EF_COMPLIANT))
1983             return -1;
1984     }
1985     s->frame_rate_index = get_bits(&s->gb, 4);
1986     if (s->frame_rate_index == 0 || s->frame_rate_index > 13)
1987         return -1;
1988     s->bit_rate = get_bits(&s->gb, 18) * 400;
1989     if (get_bits1(&s->gb) == 0) /* marker */
1990         return -1;
1991     s->width  = width;
1992     s->height = height;
1993
1994     s->avctx->rc_buffer_size = get_bits(&s->gb, 10) * 1024 * 16;
1995     skip_bits(&s->gb, 1);
1996
1997     /* get matrix */
1998     if (get_bits1(&s->gb)) {
1999         load_matrix(s, s->chroma_intra_matrix, s->intra_matrix, 1);
2000     } else {
2001         for (i = 0; i < 64; i++) {
2002             j = s->dsp.idct_permutation[i];
2003             v = ff_mpeg1_default_intra_matrix[i];
2004             s->intra_matrix[j]        = v;
2005             s->chroma_intra_matrix[j] = v;
2006         }
2007     }
2008     if (get_bits1(&s->gb)) {
2009         load_matrix(s, s->chroma_inter_matrix, s->inter_matrix, 0);
2010     } else {
2011         for (i = 0; i < 64; i++) {
2012             int j = s->dsp.idct_permutation[i];
2013             v = ff_mpeg1_default_non_intra_matrix[i];
2014             s->inter_matrix[j]        = v;
2015             s->chroma_inter_matrix[j] = v;
2016         }
2017     }
2018
2019     if (show_bits(&s->gb, 23) != 0) {
2020         av_log(s->avctx, AV_LOG_ERROR, "sequence header damaged\n");
2021         return -1;
2022     }
2023
2024     /* we set MPEG-2 parameters so that it emulates MPEG-1 */
2025     s->progressive_sequence = 1;
2026     s->progressive_frame    = 1;
2027     s->picture_structure    = PICT_FRAME;
2028     s->first_field          = 0;
2029     s->frame_pred_frame_dct = 1;
2030     s->chroma_format        = 1;
2031     s->codec_id             = s->avctx->codec_id = AV_CODEC_ID_MPEG1VIDEO;
2032     s->out_format           = FMT_MPEG1;
2033     s->swap_uv              = 0; // AFAIK VCR2 does not have SEQ_HEADER
2034     if (s->flags & CODEC_FLAG_LOW_DELAY)
2035         s->low_delay = 1;
2036
2037     if (s->avctx->debug & FF_DEBUG_PICT_INFO)
2038         av_log(s->avctx, AV_LOG_DEBUG, "vbv buffer: %d, bitrate:%d\n",
2039                s->avctx->rc_buffer_size, s->bit_rate);
2040
2041     return 0;
2042 }
2043
2044 static int vcr2_init_sequence(AVCodecContext *avctx)
2045 {
2046     Mpeg1Context *s1 = avctx->priv_data;
2047     MpegEncContext *s = &s1->mpeg_enc_ctx;
2048     int i, v;
2049
2050     /* start new MPEG-1 context decoding */
2051     s->out_format = FMT_MPEG1;
2052     if (s1->mpeg_enc_ctx_allocated) {
2053         ff_MPV_common_end(s);
2054     }
2055     s->width  = avctx->coded_width;
2056     s->height = avctx->coded_height;
2057     avctx->has_b_frames = 0; // true?
2058     s->low_delay = 1;
2059
2060     avctx->pix_fmt = mpeg_get_pixelformat(avctx);
2061     avctx->hwaccel = ff_find_hwaccel(avctx->codec->id, avctx->pix_fmt);
2062
2063     if( avctx->pix_fmt == PIX_FMT_XVMC_MPEG2_IDCT || avctx->hwaccel )
2064         if (avctx->idct_algo == FF_IDCT_AUTO)
2065             avctx->idct_algo = FF_IDCT_SIMPLE;
2066
2067     if (ff_MPV_common_init(s) < 0)
2068         return -1;
2069     s1->mpeg_enc_ctx_allocated = 1;
2070
2071     for (i = 0; i < 64; i++) {
2072         int j = s->dsp.idct_permutation[i];
2073         v = ff_mpeg1_default_intra_matrix[i];
2074         s->intra_matrix[j]        = v;
2075         s->chroma_intra_matrix[j] = v;
2076
2077         v = ff_mpeg1_default_non_intra_matrix[i];
2078         s->inter_matrix[j]        = v;
2079         s->chroma_inter_matrix[j] = v;
2080     }
2081
2082     s->progressive_sequence  = 1;
2083     s->progressive_frame     = 1;
2084     s->picture_structure     = PICT_FRAME;
2085     s->first_field           = 0;
2086     s->frame_pred_frame_dct  = 1;
2087     s->chroma_format         = 1;
2088     if (s->codec_tag == AV_RL32("BW10")) {
2089         s->codec_id              = s->avctx->codec_id = AV_CODEC_ID_MPEG1VIDEO;
2090     } else {
2091         exchange_uv(s); // common init reset pblocks, so we swap them here
2092         s->swap_uv = 1; // in case of xvmc we need to swap uv for each MB
2093         s->codec_id              = s->avctx->codec_id = AV_CODEC_ID_MPEG2VIDEO;
2094     }
2095     s1->save_width           = s->width;
2096     s1->save_height          = s->height;
2097     s1->save_progressive_seq = s->progressive_sequence;
2098     return 0;
2099 }
2100
2101
2102 static void mpeg_decode_user_data(AVCodecContext *avctx,
2103                                   const uint8_t *p, int buf_size)
2104 {
2105     Mpeg1Context *s = avctx->priv_data;
2106     const uint8_t *buf_end = p + buf_size;
2107
2108     if(buf_size > 29){
2109         int i;
2110         for(i=0; i<20; i++)
2111             if(!memcmp(p+i, "\0TMPGEXS\0", 9)){
2112                 s->tmpgexs= 1;
2113             }
2114
2115 /*        for(i=0; !(!p[i-2] && !p[i-1] && p[i]==1) && i<buf_size; i++){
2116             av_log(0,0, "%c", p[i]);
2117         }
2118             av_log(0,0, "\n");*/
2119     }
2120
2121     /* we parse the DTG active format information */
2122     if (buf_end - p >= 5 &&
2123         p[0] == 'D' && p[1] == 'T' && p[2] == 'G' && p[3] == '1') {
2124         int flags = p[4];
2125         p += 5;
2126         if (flags & 0x80) {
2127             /* skip event id */
2128             p += 2;
2129         }
2130         if (flags & 0x40) {
2131             if (buf_end - p < 1)
2132                 return;
2133             avctx->dtg_active_format = p[0] & 0x0f;
2134         }
2135     }
2136 }
2137
2138 static void mpeg_decode_gop(AVCodecContext *avctx,
2139                             const uint8_t *buf, int buf_size)
2140 {
2141     Mpeg1Context *s1  = avctx->priv_data;
2142     MpegEncContext *s = &s1->mpeg_enc_ctx;
2143     int broken_link;
2144     int64_t tc;
2145
2146     init_get_bits(&s->gb, buf, buf_size*8);
2147
2148     tc = avctx->timecode_frame_start = get_bits(&s->gb, 25);
2149
2150     s->closed_gop = get_bits1(&s->gb);
2151     /*broken_link indicate that after editing the
2152       reference frames of the first B-Frames after GOP I-Frame
2153       are missing (open gop)*/
2154     broken_link = get_bits1(&s->gb);
2155
2156     if (s->avctx->debug & FF_DEBUG_PICT_INFO) {
2157         char tcbuf[AV_TIMECODE_STR_SIZE];
2158         av_timecode_make_mpeg_tc_string(tcbuf, tc);
2159         av_log(s->avctx, AV_LOG_DEBUG,
2160                "GOP (%s) closed_gop=%d broken_link=%d\n",
2161                tcbuf, s->closed_gop, broken_link);
2162     }
2163 }
2164 /**
2165  * Find the end of the current frame in the bitstream.
2166  * @return the position of the first byte of the next frame, or -1
2167  */
2168 int ff_mpeg1_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size, AVCodecParserContext *s)
2169 {
2170     int i;
2171     uint32_t state = pc->state;
2172
2173     /* EOF considered as end of frame */
2174     if (buf_size == 0)
2175         return 0;
2176
2177 /*
2178  0  frame start         -> 1/4
2179  1  first_SEQEXT        -> 0/2
2180  2  first field start   -> 3/0
2181  3  second_SEQEXT       -> 2/0
2182  4  searching end
2183 */
2184
2185     for (i = 0; i < buf_size; i++) {
2186         av_assert1(pc->frame_start_found >= 0 && pc->frame_start_found <= 4);
2187         if (pc->frame_start_found & 1) {
2188             if (state == EXT_START_CODE && (buf[i] & 0xF0) != 0x80)
2189                 pc->frame_start_found--;
2190             else if (state == EXT_START_CODE + 2) {
2191                 if ((buf[i] & 3) == 3)
2192                     pc->frame_start_found = 0;
2193                 else
2194                     pc->frame_start_found = (pc->frame_start_found + 1) & 3;
2195             }
2196             state++;
2197         } else {
2198             i = avpriv_mpv_find_start_code(buf + i, buf + buf_size, &state) - buf - 1;
2199             if (pc->frame_start_found == 0 && state >= SLICE_MIN_START_CODE && state <= SLICE_MAX_START_CODE) {
2200                 i++;
2201                 pc->frame_start_found = 4;
2202             }
2203             if (state == SEQ_END_CODE) {
2204                 pc->frame_start_found = 0;
2205                 pc->state=-1;
2206                 return i+1;
2207             }
2208             if (pc->frame_start_found == 2 && state == SEQ_START_CODE)
2209                 pc->frame_start_found = 0;
2210             if (pc->frame_start_found  < 4 && state == EXT_START_CODE)
2211                 pc->frame_start_found++;
2212             if (pc->frame_start_found == 4 && (state & 0xFFFFFF00) == 0x100) {
2213                 if (state < SLICE_MIN_START_CODE || state > SLICE_MAX_START_CODE) {
2214                     pc->frame_start_found = 0;
2215                     pc->state             = -1;
2216                     return i - 3;
2217                 }
2218             }
2219             if (pc->frame_start_found == 0 && s && state == PICTURE_START_CODE) {
2220                 ff_fetch_timestamp(s, i - 3, 1);
2221             }
2222         }
2223     }
2224     pc->state = state;
2225     return END_NOT_FOUND;
2226 }
2227
2228 static int decode_chunks(AVCodecContext *avctx,
2229                          AVFrame *picture, int *data_size,
2230                          const uint8_t *buf, int buf_size);
2231
2232 /* handle buffering and image synchronisation */
2233 static int mpeg_decode_frame(AVCodecContext *avctx,
2234                              void *data, int *data_size,
2235                              AVPacket *avpkt)
2236 {
2237     const uint8_t *buf = avpkt->data;
2238     int buf_size = avpkt->size;
2239     Mpeg1Context *s = avctx->priv_data;
2240     AVFrame *picture = data;
2241     MpegEncContext *s2 = &s->mpeg_enc_ctx;
2242     av_dlog(avctx, "fill_buffer\n");
2243
2244     if (buf_size == 0 || (buf_size == 4 && AV_RB32(buf) == SEQ_END_CODE)) {
2245         /* special case for last picture */
2246         if (s2->low_delay == 0 && s2->next_picture_ptr) {
2247             *picture = s2->next_picture_ptr->f;
2248             s2->next_picture_ptr = NULL;
2249
2250             *data_size = sizeof(AVFrame);
2251         }
2252         return buf_size;
2253     }
2254
2255     if (s2->flags & CODEC_FLAG_TRUNCATED) {
2256         int next = ff_mpeg1_find_frame_end(&s2->parse_context, buf, buf_size, NULL);
2257
2258         if (ff_combine_frame(&s2->parse_context, next, (const uint8_t **)&buf, &buf_size) < 0)
2259             return buf_size;
2260     }
2261
2262     s2->codec_tag = avpriv_toupper4(avctx->codec_tag);
2263     if (s->mpeg_enc_ctx_allocated == 0 && (   s2->codec_tag == AV_RL32("VCR2")
2264                                            || s2->codec_tag == AV_RL32("BW10")
2265                                           ))
2266         vcr2_init_sequence(avctx);
2267
2268     s->slice_count = 0;
2269
2270     if (avctx->extradata && !s->parsed_extra) {
2271         int ret = decode_chunks(avctx, picture, data_size, avctx->extradata, avctx->extradata_size);
2272         if(*data_size) {
2273             av_log(avctx, AV_LOG_ERROR, "picture in extradata\n");
2274             *data_size = 0;
2275         }
2276         s->parsed_extra = 1;
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(s2, 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 == PICTURE_START_CODE) {
2426
2427                 if (s2->progressive_sequence && !s2->progressive_frame) {
2428                     s2->progressive_frame = 1;
2429                     av_log(s2->avctx, AV_LOG_ERROR, "interlaced frame in progressive sequence, ignoring\n");
2430                 }
2431
2432                 if (s2->picture_structure == 0 || (s2->progressive_frame && s2->picture_structure != PICT_FRAME)) {
2433                     av_log(s2->avctx, AV_LOG_ERROR, "picture_structure %d invalid, ignoring\n", s2->picture_structure);
2434                     s2->picture_structure = PICT_FRAME;
2435                 }
2436
2437                 if (s2->progressive_sequence && !s2->frame_pred_frame_dct) {
2438                     av_log(s2->avctx, AV_LOG_WARNING, "invalid frame_pred_frame_dct\n");
2439                 }
2440
2441                 if (s2->picture_structure == PICT_FRAME) {
2442                     s2->first_field = 0;
2443                     s2->v_edge_pos  = 16 * s2->mb_height;
2444                 } else {
2445                     s2->first_field ^= 1;
2446                     s2->v_edge_pos   = 8 * s2->mb_height;
2447                     memset(s2->mbskip_table, 0, s2->mb_stride * s2->mb_height);
2448                 }
2449             }
2450             if (start_code >= SLICE_MIN_START_CODE &&
2451                 start_code <= SLICE_MAX_START_CODE && last_code != 0) {
2452                 const int field_pic = s2->picture_structure != PICT_FRAME;
2453                 int mb_y = start_code - SLICE_MIN_START_CODE;
2454                 last_code = SLICE_MIN_START_CODE;
2455                 if(s2->codec_id != AV_CODEC_ID_MPEG1VIDEO && s2->mb_height > 2800/16)
2456                     mb_y += (*buf_ptr&0xE0)<<2;
2457
2458                 mb_y <<= field_pic;
2459                 if (s2->picture_structure == PICT_BOTTOM_FIELD)
2460                     mb_y++;
2461
2462                 if (mb_y >= s2->mb_height) {
2463                     av_log(s2->avctx, AV_LOG_ERROR, "slice below image (%d >= %d)\n", mb_y, s2->mb_height);
2464                     return -1;
2465                 }
2466
2467                 if (s2->last_picture_ptr == NULL) {
2468                 /* Skip B-frames if we do not have reference frames and gop is not closed */
2469                     if (s2->pict_type == AV_PICTURE_TYPE_B) {
2470                         if (!s2->closed_gop)
2471                             break;
2472                     }
2473                 }
2474                 if (s2->pict_type == AV_PICTURE_TYPE_I || (s2->flags2 & CODEC_FLAG2_SHOW_ALL))
2475                     s->sync=1;
2476                 if (s2->next_picture_ptr == NULL) {
2477                 /* Skip P-frames if we do not have a reference frame or we have an invalid header. */
2478                     if (s2->pict_type == AV_PICTURE_TYPE_P && !s->sync) break;
2479                 }
2480                 if ((avctx->skip_frame >= AVDISCARD_NONREF && s2->pict_type == AV_PICTURE_TYPE_B) ||
2481                     (avctx->skip_frame >= AVDISCARD_NONKEY && s2->pict_type != AV_PICTURE_TYPE_I) ||
2482                      avctx->skip_frame >= AVDISCARD_ALL)
2483                     break;
2484
2485                 if (!s->mpeg_enc_ctx_allocated)
2486                     break;
2487
2488                 if (s2->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
2489                     if (mb_y < avctx->skip_top || mb_y >= s2->mb_height - avctx->skip_bottom)
2490                         break;
2491                 }
2492
2493                 if (!s2->pict_type) {
2494                     av_log(avctx, AV_LOG_ERROR, "Missing picture start code\n");
2495                     if (avctx->err_recognition & AV_EF_EXPLODE)
2496                         return AVERROR_INVALIDDATA;
2497                     break;
2498                 }
2499
2500                 if (s2->first_slice) {
2501                     s2->first_slice = 0;
2502                     if (mpeg_field_start(s2, buf, buf_size) < 0)
2503                         return -1;
2504                 }
2505                 if (!s2->current_picture_ptr) {
2506                     av_log(avctx, AV_LOG_ERROR, "current_picture not initialized\n");
2507                     return AVERROR_INVALIDDATA;
2508                 }
2509
2510                 if (uses_vdpau(avctx)) {
2511                     s->slice_count++;
2512                     break;
2513                 }
2514
2515                 if (HAVE_THREADS && (avctx->active_thread_type & FF_THREAD_SLICE)) {
2516                     int threshold = (s2->mb_height * s->slice_count +
2517                                      s2->slice_context_count / 2) /
2518                                     s2->slice_context_count;
2519                     av_assert0(avctx->thread_count > 1);
2520                     if (threshold <= mb_y) {
2521                         MpegEncContext *thread_context = s2->thread_context[s->slice_count];
2522
2523                         thread_context->start_mb_y = mb_y;
2524                         thread_context->end_mb_y   = s2->mb_height;
2525                         if (s->slice_count) {
2526                             s2->thread_context[s->slice_count-1]->end_mb_y = mb_y;
2527                             ff_update_duplicate_context(thread_context, s2);
2528                         }
2529                         init_get_bits(&thread_context->gb, buf_ptr, input_size*8);
2530                         s->slice_count++;
2531                     }
2532                     buf_ptr += 2; // FIXME add minimum number of bytes per slice
2533                 } else {
2534                     ret = mpeg_decode_slice(s2, mb_y, &buf_ptr, input_size);
2535                     emms_c();
2536
2537                     if (ret < 0) {
2538                         if (avctx->err_recognition & AV_EF_EXPLODE)
2539                             return ret;
2540                         if (s2->resync_mb_x >= 0 && s2->resync_mb_y >= 0)
2541                             ff_er_add_slice(s2, s2->resync_mb_x, s2->resync_mb_y, s2->mb_x, s2->mb_y, ER_AC_ERROR | ER_DC_ERROR | ER_MV_ERROR);
2542                     } else {
2543                         ff_er_add_slice(s2, s2->resync_mb_x, s2->resync_mb_y, s2->mb_x-1, s2->mb_y, ER_AC_END | ER_DC_END | ER_MV_END);
2544                     }
2545                 }
2546             }
2547             break;
2548         }
2549     }
2550 }
2551
2552 static void flush(AVCodecContext *avctx)
2553 {
2554     Mpeg1Context *s = avctx->priv_data;
2555
2556     s->sync=0;
2557
2558     ff_mpeg_flush(avctx);
2559 }
2560
2561 static int mpeg_decode_end(AVCodecContext *avctx)
2562 {
2563     Mpeg1Context *s = avctx->priv_data;
2564
2565     if (s->mpeg_enc_ctx_allocated)
2566         ff_MPV_common_end(&s->mpeg_enc_ctx);
2567     return 0;
2568 }
2569
2570 static const AVProfile mpeg2_video_profiles[] = {
2571     { FF_PROFILE_MPEG2_422,          "4:2:2"              },
2572     { FF_PROFILE_MPEG2_HIGH,         "High"               },
2573     { FF_PROFILE_MPEG2_SS,           "Spatially Scalable" },
2574     { FF_PROFILE_MPEG2_SNR_SCALABLE, "SNR Scalable"       },
2575     { FF_PROFILE_MPEG2_MAIN,         "Main"               },
2576     { FF_PROFILE_MPEG2_SIMPLE,       "Simple"             },
2577     { FF_PROFILE_RESERVED,           "Reserved"           },
2578     { FF_PROFILE_RESERVED,           "Reserved"           },
2579     { FF_PROFILE_UNKNOWN },
2580 };
2581
2582
2583 AVCodec ff_mpeg1video_decoder = {
2584     .name                  = "mpeg1video",
2585     .type                  = AVMEDIA_TYPE_VIDEO,
2586     .id                    = AV_CODEC_ID_MPEG1VIDEO,
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 |
2592                              CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY |
2593                              CODEC_CAP_SLICE_THREADS,
2594     .flush                 = flush,
2595     .max_lowres            = 3,
2596     .long_name             = NULL_IF_CONFIG_SMALL("MPEG-1 video"),
2597     .update_thread_context = ONLY_IF_THREADS_ENABLED(mpeg_decode_update_thread_context)
2598 };
2599
2600 AVCodec ff_mpeg2video_decoder = {
2601     .name           = "mpeg2video",
2602     .type           = AVMEDIA_TYPE_VIDEO,
2603     .id             = AV_CODEC_ID_MPEG2VIDEO,
2604     .priv_data_size = sizeof(Mpeg1Context),
2605     .init           = mpeg_decode_init,
2606     .close          = mpeg_decode_end,
2607     .decode         = mpeg_decode_frame,
2608     .capabilities   = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 |
2609                       CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY |
2610                       CODEC_CAP_SLICE_THREADS,
2611     .flush          = flush,
2612     .max_lowres     = 3,
2613     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-2 video"),
2614     .profiles       = NULL_IF_CONFIG_SMALL(mpeg2_video_profiles),
2615 };
2616
2617 //legacy decoder
2618 AVCodec ff_mpegvideo_decoder = {
2619     .name           = "mpegvideo",
2620     .type           = AVMEDIA_TYPE_VIDEO,
2621     .id             = AV_CODEC_ID_MPEG2VIDEO,
2622     .priv_data_size = sizeof(Mpeg1Context),
2623     .init           = mpeg_decode_init,
2624     .close          = mpeg_decode_end,
2625     .decode         = mpeg_decode_frame,
2626     .capabilities   = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY | CODEC_CAP_SLICE_THREADS,
2627     .flush          = flush,
2628     .max_lowres     = 3,
2629     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-1 video"),
2630 };
2631
2632 #if CONFIG_MPEG_XVMC_DECODER
2633 static av_cold int mpeg_mc_decode_init(AVCodecContext *avctx)
2634 {
2635     if (avctx->active_thread_type & FF_THREAD_SLICE)
2636         return -1;
2637     if (!(avctx->slice_flags & SLICE_FLAG_CODED_ORDER))
2638         return -1;
2639     if (!(avctx->slice_flags & SLICE_FLAG_ALLOW_FIELD)) {
2640         av_dlog(avctx, "mpeg12.c: XvMC decoder will work better if SLICE_FLAG_ALLOW_FIELD is set\n");
2641     }
2642     mpeg_decode_init(avctx);
2643
2644     avctx->pix_fmt           = PIX_FMT_XVMC_MPEG2_IDCT;
2645     avctx->xvmc_acceleration = 2; // 2 - the blocks are packed!
2646
2647     return 0;
2648 }
2649
2650 AVCodec ff_mpeg_xvmc_decoder = {
2651     .name           = "mpegvideo_xvmc",
2652     .type           = AVMEDIA_TYPE_VIDEO,
2653     .id             = AV_CODEC_ID_MPEG2VIDEO_XVMC,
2654     .priv_data_size = sizeof(Mpeg1Context),
2655     .init           = mpeg_mc_decode_init,
2656     .close          = mpeg_decode_end,
2657     .decode         = mpeg_decode_frame,
2658     .capabilities   = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 |
2659                       CODEC_CAP_TRUNCATED| CODEC_CAP_HWACCEL | CODEC_CAP_DELAY,
2660     .flush          = flush,
2661     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-1/2 video XvMC (X-Video Motion Compensation)"),
2662 };
2663
2664 #endif
2665
2666 #if CONFIG_MPEG_VDPAU_DECODER
2667 AVCodec ff_mpeg_vdpau_decoder = {
2668     .name           = "mpegvideo_vdpau",
2669     .type           = AVMEDIA_TYPE_VIDEO,
2670     .id             = AV_CODEC_ID_MPEG2VIDEO,
2671     .priv_data_size = sizeof(Mpeg1Context),
2672     .init           = mpeg_decode_init,
2673     .close          = mpeg_decode_end,
2674     .decode         = mpeg_decode_frame,
2675     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED |
2676                       CODEC_CAP_HWACCEL_VDPAU | CODEC_CAP_DELAY,
2677     .flush          = flush,
2678     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-1/2 video (VDPAU acceleration)"),
2679 };
2680 #endif
2681
2682 #if CONFIG_MPEG1_VDPAU_DECODER
2683 AVCodec ff_mpeg1_vdpau_decoder = {
2684     .name           = "mpeg1video_vdpau",
2685     .type           = AVMEDIA_TYPE_VIDEO,
2686     .id             = AV_CODEC_ID_MPEG1VIDEO,
2687     .priv_data_size = sizeof(Mpeg1Context),
2688     .init           = mpeg_decode_init,
2689     .close          = mpeg_decode_end,
2690     .decode         = mpeg_decode_frame,
2691     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED |
2692                       CODEC_CAP_HWACCEL_VDPAU | CODEC_CAP_DELAY,
2693     .flush          = flush,
2694     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-1 video (VDPAU acceleration)"),
2695 };
2696 #endif