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