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