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