]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264.c
fae8440a1e2cb624487683e815459d8251d862e6
[ffmpeg] / libavcodec / h264.c
1 /*
2  * H.26L/H.264/AVC/JVT/14496-10/... decoder
3  * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * H.264 / AVC / MPEG4 part10 codec.
25  * @author Michael Niedermayer <michaelni@gmx.at>
26  */
27
28 #include "libavutil/imgutils.h"
29 #include "internal.h"
30 #include "cabac.h"
31 #include "cabac_functions.h"
32 #include "dsputil.h"
33 #include "avcodec.h"
34 #include "mpegvideo.h"
35 #include "h264.h"
36 #include "h264data.h"
37 #include "h264_mvpred.h"
38 #include "golomb.h"
39 #include "mathops.h"
40 #include "rectangle.h"
41 #include "thread.h"
42 #include "vdpau_internal.h"
43 #include "libavutil/avassert.h"
44
45 // #undef NDEBUG
46 #include <assert.h>
47
48 const uint16_t ff_h264_mb_sizes[4] = { 256, 384, 512, 768 };
49
50 static const uint8_t rem6[QP_MAX_NUM + 1] = {
51     0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2,
52     3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5,
53     0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3,
54 };
55
56 static const uint8_t div6[QP_MAX_NUM + 1] = {
57     0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3,  3,  3,
58     3, 3, 3, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6,  6,  6,
59     7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10,
60 };
61
62 static const enum AVPixelFormat hwaccel_pixfmt_list_h264_jpeg_420[] = {
63     AV_PIX_FMT_DXVA2_VLD,
64     AV_PIX_FMT_VAAPI_VLD,
65     AV_PIX_FMT_VDA_VLD,
66     AV_PIX_FMT_YUVJ420P,
67     AV_PIX_FMT_NONE
68 };
69
70 /**
71  * Check if the top & left blocks are available if needed and
72  * change the dc mode so it only uses the available blocks.
73  */
74 int ff_h264_check_intra4x4_pred_mode(H264Context *h)
75 {
76     MpegEncContext *const s     = &h->s;
77     static const int8_t top[12] = {
78         -1, 0, LEFT_DC_PRED, -1, -1, -1, -1, -1, 0
79     };
80     static const int8_t left[12] = {
81         0, -1, TOP_DC_PRED, 0, -1, -1, -1, 0, -1, DC_128_PRED
82     };
83     int i;
84
85     if (!(h->top_samples_available & 0x8000)) {
86         for (i = 0; i < 4; i++) {
87             int status = top[h->intra4x4_pred_mode_cache[scan8[0] + i]];
88             if (status < 0) {
89                 av_log(h->s.avctx, AV_LOG_ERROR,
90                        "top block unavailable for requested intra4x4 mode %d at %d %d\n",
91                        status, s->mb_x, s->mb_y);
92                 return -1;
93             } else if (status) {
94                 h->intra4x4_pred_mode_cache[scan8[0] + i] = status;
95             }
96         }
97     }
98
99     if ((h->left_samples_available & 0x8888) != 0x8888) {
100         static const int mask[4] = { 0x8000, 0x2000, 0x80, 0x20 };
101         for (i = 0; i < 4; i++)
102             if (!(h->left_samples_available & mask[i])) {
103                 int status = left[h->intra4x4_pred_mode_cache[scan8[0] + 8 * i]];
104                 if (status < 0) {
105                     av_log(h->s.avctx, AV_LOG_ERROR,
106                            "left block unavailable for requested intra4x4 mode %d at %d %d\n",
107                            status, s->mb_x, s->mb_y);
108                     return -1;
109                 } else if (status) {
110                     h->intra4x4_pred_mode_cache[scan8[0] + 8 * i] = status;
111                 }
112             }
113     }
114
115     return 0;
116 } // FIXME cleanup like ff_h264_check_intra_pred_mode
117
118 /**
119  * Check if the top & left blocks are available if needed and
120  * change the dc mode so it only uses the available blocks.
121  */
122 int ff_h264_check_intra_pred_mode(H264Context *h, int mode, int is_chroma)
123 {
124     MpegEncContext *const s     = &h->s;
125     static const int8_t top[7]  = { LEFT_DC_PRED8x8, 1, -1, -1 };
126     static const int8_t left[7] = { TOP_DC_PRED8x8, -1, 2, -1, DC_128_PRED8x8 };
127
128     if (mode > 6U) {
129         av_log(h->s.avctx, AV_LOG_ERROR,
130                "out of range intra chroma pred mode at %d %d\n",
131                s->mb_x, s->mb_y);
132         return -1;
133     }
134
135     if (!(h->top_samples_available & 0x8000)) {
136         mode = top[mode];
137         if (mode < 0) {
138             av_log(h->s.avctx, AV_LOG_ERROR,
139                    "top block unavailable for requested intra mode at %d %d\n",
140                    s->mb_x, s->mb_y);
141             return -1;
142         }
143     }
144
145     if ((h->left_samples_available & 0x8080) != 0x8080) {
146         mode = left[mode];
147         if (is_chroma && (h->left_samples_available & 0x8080)) {
148             // mad cow disease mode, aka MBAFF + constrained_intra_pred
149             mode = ALZHEIMER_DC_L0T_PRED8x8 +
150                    (!(h->left_samples_available & 0x8000)) +
151                    2 * (mode == DC_128_PRED8x8);
152         }
153         if (mode < 0) {
154             av_log(h->s.avctx, AV_LOG_ERROR,
155                    "left block unavailable for requested intra mode at %d %d\n",
156                    s->mb_x, s->mb_y);
157             return -1;
158         }
159     }
160
161     return mode;
162 }
163
164 const uint8_t *ff_h264_decode_nal(H264Context *h, const uint8_t *src,
165                                   int *dst_length, int *consumed, int length)
166 {
167     int i, si, di;
168     uint8_t *dst;
169     int bufidx;
170
171     // src[0]&0x80; // forbidden bit
172     h->nal_ref_idc   = src[0] >> 5;
173     h->nal_unit_type = src[0] & 0x1F;
174
175     src++;
176     length--;
177
178 #define STARTCODE_TEST                                                  \
179         if (i + 2 < length && src[i + 1] == 0 && src[i + 2] <= 3) {     \
180             if (src[i + 2] != 3) {                                      \
181                 /* startcode, so we must be past the end */             \
182                 length = i;                                             \
183             }                                                           \
184             break;                                                      \
185         }
186 #if HAVE_FAST_UNALIGNED
187 #define FIND_FIRST_ZERO                                                 \
188         if (i > 0 && !src[i])                                           \
189             i--;                                                        \
190         while (src[i])                                                  \
191             i++
192 #if HAVE_FAST_64BIT
193     for (i = 0; i + 1 < length; i += 9) {
194         if (!((~AV_RN64A(src + i) &
195                (AV_RN64A(src + i) - 0x0100010001000101ULL)) &
196               0x8000800080008080ULL))
197             continue;
198         FIND_FIRST_ZERO;
199         STARTCODE_TEST;
200         i -= 7;
201     }
202 #else
203     for (i = 0; i + 1 < length; i += 5) {
204         if (!((~AV_RN32A(src + i) &
205                (AV_RN32A(src + i) - 0x01000101U)) &
206               0x80008080U))
207             continue;
208         FIND_FIRST_ZERO;
209         STARTCODE_TEST;
210         i -= 3;
211     }
212 #endif
213 #else
214     for (i = 0; i + 1 < length; i += 2) {
215         if (src[i])
216             continue;
217         if (i > 0 && src[i - 1] == 0)
218             i--;
219         STARTCODE_TEST;
220     }
221 #endif
222
223     if (i >= length - 1) { // no escaped 0
224         *dst_length = length;
225         *consumed   = length + 1; // +1 for the header
226         return src;
227     }
228
229     // use second escape buffer for inter data
230     bufidx = h->nal_unit_type == NAL_DPC ? 1 : 0;
231     av_fast_malloc(&h->rbsp_buffer[bufidx], &h->rbsp_buffer_size[bufidx],
232                    length + FF_INPUT_BUFFER_PADDING_SIZE);
233     dst = h->rbsp_buffer[bufidx];
234
235     if (dst == NULL)
236         return NULL;
237
238     memcpy(dst, src, i);
239     si = di = i;
240     while (si + 2 < length) {
241         // remove escapes (very rare 1:2^22)
242         if (src[si + 2] > 3) {
243             dst[di++] = src[si++];
244             dst[di++] = src[si++];
245         } else if (src[si] == 0 && src[si + 1] == 0) {
246             if (src[si + 2] == 3) { // escape
247                 dst[di++]  = 0;
248                 dst[di++]  = 0;
249                 si        += 3;
250                 continue;
251             } else // next start code
252                 goto nsc;
253         }
254
255         dst[di++] = src[si++];
256     }
257     while (si < length)
258         dst[di++] = src[si++];
259 nsc:
260
261     memset(dst + di, 0, FF_INPUT_BUFFER_PADDING_SIZE);
262
263     *dst_length = di;
264     *consumed   = si + 1; // +1 for the header
265     /* FIXME store exact number of bits in the getbitcontext
266      * (it is needed for decoding) */
267     return dst;
268 }
269
270 /**
271  * Identify the exact end of the bitstream
272  * @return the length of the trailing, or 0 if damaged
273  */
274 static int decode_rbsp_trailing(H264Context *h, const uint8_t *src)
275 {
276     int v = *src;
277     int r;
278
279     tprintf(h->s.avctx, "rbsp trailing %X\n", v);
280
281     for (r = 1; r < 9; r++) {
282         if (v & 1)
283             return r;
284         v >>= 1;
285     }
286     return 0;
287 }
288
289 static inline int get_lowest_part_list_y(H264Context *h, Picture *pic, int n,
290                                          int height, int y_offset, int list)
291 {
292     int raw_my        = h->mv_cache[list][scan8[n]][1];
293     int filter_height = (raw_my & 3) ? 2 : 0;
294     int full_my       = (raw_my >> 2) + y_offset;
295     int top           = full_my - filter_height;
296     int bottom        = full_my + filter_height + height;
297
298     return FFMAX(abs(top), bottom);
299 }
300
301 static inline void get_lowest_part_y(H264Context *h, int refs[2][48], int n,
302                                      int height, int y_offset, int list0,
303                                      int list1, int *nrefs)
304 {
305     MpegEncContext *const s = &h->s;
306     int my;
307
308     y_offset += 16 * (s->mb_y >> MB_FIELD);
309
310     if (list0) {
311         int ref_n    = h->ref_cache[0][scan8[n]];
312         Picture *ref = &h->ref_list[0][ref_n];
313
314         // Error resilience puts the current picture in the ref list.
315         // Don't try to wait on these as it will cause a deadlock.
316         // Fields can wait on each other, though.
317         if (ref->f.thread_opaque   != s->current_picture.f.thread_opaque ||
318             (ref->f.reference & 3) != s->picture_structure) {
319             my = get_lowest_part_list_y(h, ref, n, height, y_offset, 0);
320             if (refs[0][ref_n] < 0)
321                 nrefs[0] += 1;
322             refs[0][ref_n] = FFMAX(refs[0][ref_n], my);
323         }
324     }
325
326     if (list1) {
327         int ref_n    = h->ref_cache[1][scan8[n]];
328         Picture *ref = &h->ref_list[1][ref_n];
329
330         if (ref->f.thread_opaque   != s->current_picture.f.thread_opaque ||
331             (ref->f.reference & 3) != s->picture_structure) {
332             my = get_lowest_part_list_y(h, ref, n, height, y_offset, 1);
333             if (refs[1][ref_n] < 0)
334                 nrefs[1] += 1;
335             refs[1][ref_n] = FFMAX(refs[1][ref_n], my);
336         }
337     }
338 }
339
340 /**
341  * Wait until all reference frames are available for MC operations.
342  *
343  * @param h the H264 context
344  */
345 static void await_references(H264Context *h)
346 {
347     MpegEncContext *const s = &h->s;
348     const int mb_xy   = h->mb_xy;
349     const int mb_type = s->current_picture.f.mb_type[mb_xy];
350     int refs[2][48];
351     int nrefs[2] = { 0 };
352     int ref, list;
353
354     memset(refs, -1, sizeof(refs));
355
356     if (IS_16X16(mb_type)) {
357         get_lowest_part_y(h, refs, 0, 16, 0,
358                           IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1), nrefs);
359     } else if (IS_16X8(mb_type)) {
360         get_lowest_part_y(h, refs, 0, 8, 0,
361                           IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1), nrefs);
362         get_lowest_part_y(h, refs, 8, 8, 8,
363                           IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1), nrefs);
364     } else if (IS_8X16(mb_type)) {
365         get_lowest_part_y(h, refs, 0, 16, 0,
366                           IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1), nrefs);
367         get_lowest_part_y(h, refs, 4, 16, 0,
368                           IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1), nrefs);
369     } else {
370         int i;
371
372         assert(IS_8X8(mb_type));
373
374         for (i = 0; i < 4; i++) {
375             const int sub_mb_type = h->sub_mb_type[i];
376             const int n           = 4 * i;
377             int y_offset          = (i & 2) << 2;
378
379             if (IS_SUB_8X8(sub_mb_type)) {
380                 get_lowest_part_y(h, refs, n, 8, y_offset,
381                                   IS_DIR(sub_mb_type, 0, 0),
382                                   IS_DIR(sub_mb_type, 0, 1),
383                                   nrefs);
384             } else if (IS_SUB_8X4(sub_mb_type)) {
385                 get_lowest_part_y(h, refs, n, 4, y_offset,
386                                   IS_DIR(sub_mb_type, 0, 0),
387                                   IS_DIR(sub_mb_type, 0, 1),
388                                   nrefs);
389                 get_lowest_part_y(h, refs, n + 2, 4, y_offset + 4,
390                                   IS_DIR(sub_mb_type, 0, 0),
391                                   IS_DIR(sub_mb_type, 0, 1),
392                                   nrefs);
393             } else if (IS_SUB_4X8(sub_mb_type)) {
394                 get_lowest_part_y(h, refs, n, 8, y_offset,
395                                   IS_DIR(sub_mb_type, 0, 0),
396                                   IS_DIR(sub_mb_type, 0, 1),
397                                   nrefs);
398                 get_lowest_part_y(h, refs, n + 1, 8, y_offset,
399                                   IS_DIR(sub_mb_type, 0, 0),
400                                   IS_DIR(sub_mb_type, 0, 1),
401                                   nrefs);
402             } else {
403                 int j;
404                 assert(IS_SUB_4X4(sub_mb_type));
405                 for (j = 0; j < 4; j++) {
406                     int sub_y_offset = y_offset + 2 * (j & 2);
407                     get_lowest_part_y(h, refs, n + j, 4, sub_y_offset,
408                                       IS_DIR(sub_mb_type, 0, 0),
409                                       IS_DIR(sub_mb_type, 0, 1),
410                                       nrefs);
411                 }
412             }
413         }
414     }
415
416     for (list = h->list_count - 1; list >= 0; list--)
417         for (ref = 0; ref < 48 && nrefs[list]; ref++) {
418             int row = refs[list][ref];
419             if (row >= 0) {
420                 Picture *ref_pic      = &h->ref_list[list][ref];
421                 int ref_field         = ref_pic->f.reference - 1;
422                 int ref_field_picture = ref_pic->field_picture;
423                 int pic_height        = 16 * s->mb_height >> ref_field_picture;
424
425                 row <<= MB_MBAFF;
426                 nrefs[list]--;
427
428                 if (!FIELD_PICTURE && ref_field_picture) { // frame referencing two fields
429                     ff_thread_await_progress(&ref_pic->f,
430                                              FFMIN((row >> 1) - !(row & 1),
431                                                    pic_height - 1),
432                                              1);
433                     ff_thread_await_progress(&ref_pic->f,
434                                              FFMIN((row >> 1), pic_height - 1),
435                                              0);
436                 } else if (FIELD_PICTURE && !ref_field_picture) { // field referencing one field of a frame
437                     ff_thread_await_progress(&ref_pic->f,
438                                              FFMIN(row * 2 + ref_field,
439                                                    pic_height - 1),
440                                              0);
441                 } else if (FIELD_PICTURE) {
442                     ff_thread_await_progress(&ref_pic->f,
443                                              FFMIN(row, pic_height - 1),
444                                              ref_field);
445                 } else {
446                     ff_thread_await_progress(&ref_pic->f,
447                                              FFMIN(row, pic_height - 1),
448                                              0);
449                 }
450             }
451         }
452 }
453
454 static av_always_inline void mc_dir_part(H264Context *h, Picture *pic,
455                                          int n, int square, int height,
456                                          int delta, int list,
457                                          uint8_t *dest_y, uint8_t *dest_cb,
458                                          uint8_t *dest_cr,
459                                          int src_x_offset, int src_y_offset,
460                                          qpel_mc_func *qpix_op,
461                                          h264_chroma_mc_func chroma_op,
462                                          int pixel_shift, int chroma_idc)
463 {
464     MpegEncContext *const s = &h->s;
465     const int mx      = h->mv_cache[list][scan8[n]][0] + src_x_offset * 8;
466     int my            = h->mv_cache[list][scan8[n]][1] + src_y_offset * 8;
467     const int luma_xy = (mx & 3) + ((my & 3) << 2);
468     int offset        = ((mx >> 2) << pixel_shift) + (my >> 2) * h->mb_linesize;
469     uint8_t *src_y    = pic->f.data[0] + offset;
470     uint8_t *src_cb, *src_cr;
471     int extra_width  = h->emu_edge_width;
472     int extra_height = h->emu_edge_height;
473     int emu = 0;
474     const int full_mx    = mx >> 2;
475     const int full_my    = my >> 2;
476     const int pic_width  = 16 * s->mb_width;
477     const int pic_height = 16 * s->mb_height >> MB_FIELD;
478     int ysh;
479
480     if (mx & 7)
481         extra_width -= 3;
482     if (my & 7)
483         extra_height -= 3;
484
485     if (full_mx                <          0 - extra_width  ||
486         full_my                <          0 - extra_height ||
487         full_mx + 16 /*FIXME*/ > pic_width  + extra_width  ||
488         full_my + 16 /*FIXME*/ > pic_height + extra_height) {
489         s->vdsp.emulated_edge_mc(s->edge_emu_buffer,
490                                  src_y - (2 << pixel_shift) - 2 * h->mb_linesize,
491                                  h->mb_linesize,
492                                  16 + 5, 16 + 5 /*FIXME*/, full_mx - 2,
493                                  full_my - 2, pic_width, pic_height);
494         src_y = s->edge_emu_buffer + (2 << pixel_shift) + 2 * h->mb_linesize;
495         emu   = 1;
496     }
497
498     qpix_op[luma_xy](dest_y, src_y, h->mb_linesize); // FIXME try variable height perhaps?
499     if (!square)
500         qpix_op[luma_xy](dest_y + delta, src_y + delta, h->mb_linesize);
501
502     if (CONFIG_GRAY && s->flags & CODEC_FLAG_GRAY)
503         return;
504
505     if (chroma_idc == 3 /* yuv444 */) {
506         src_cb = pic->f.data[1] + offset;
507         if (emu) {
508             s->vdsp.emulated_edge_mc(s->edge_emu_buffer,
509                                      src_cb - (2 << pixel_shift) - 2 * h->mb_linesize,
510                                      h->mb_linesize,
511                                      16 + 5, 16 + 5 /*FIXME*/,
512                                      full_mx - 2, full_my - 2,
513                                      pic_width, pic_height);
514             src_cb = s->edge_emu_buffer + (2 << pixel_shift) + 2 * h->mb_linesize;
515         }
516         qpix_op[luma_xy](dest_cb, src_cb, h->mb_linesize); // FIXME try variable height perhaps?
517         if (!square)
518             qpix_op[luma_xy](dest_cb + delta, src_cb + delta, h->mb_linesize);
519
520         src_cr = pic->f.data[2] + offset;
521         if (emu) {
522             s->vdsp.emulated_edge_mc(s->edge_emu_buffer,
523                                      src_cr - (2 << pixel_shift) - 2 * h->mb_linesize,
524                                      h->mb_linesize,
525                                      16 + 5, 16 + 5 /*FIXME*/,
526                                      full_mx - 2, full_my - 2,
527                                      pic_width, pic_height);
528             src_cr = s->edge_emu_buffer + (2 << pixel_shift) + 2 * h->mb_linesize;
529         }
530         qpix_op[luma_xy](dest_cr, src_cr, h->mb_linesize); // FIXME try variable height perhaps?
531         if (!square)
532             qpix_op[luma_xy](dest_cr + delta, src_cr + delta, h->mb_linesize);
533         return;
534     }
535
536     ysh = 3 - (chroma_idc == 2 /* yuv422 */);
537     if (chroma_idc == 1 /* yuv420 */ && MB_FIELD) {
538         // chroma offset when predicting from a field of opposite parity
539         my  += 2 * ((s->mb_y & 1) - (pic->f.reference - 1));
540         emu |= (my >> 3) < 0 || (my >> 3) + 8 >= (pic_height >> 1);
541     }
542
543     src_cb = pic->f.data[1] + ((mx >> 3) << pixel_shift) +
544              (my >> ysh) * h->mb_uvlinesize;
545     src_cr = pic->f.data[2] + ((mx >> 3) << pixel_shift) +
546              (my >> ysh) * h->mb_uvlinesize;
547
548     if (emu) {
549         s->vdsp.emulated_edge_mc(s->edge_emu_buffer, src_cb, h->mb_uvlinesize,
550                                  9, 8 * chroma_idc + 1, (mx >> 3), (my >> ysh),
551                                  pic_width >> 1, pic_height >> (chroma_idc == 1 /* yuv420 */));
552         src_cb = s->edge_emu_buffer;
553     }
554     chroma_op(dest_cb, src_cb, h->mb_uvlinesize,
555               height >> (chroma_idc == 1 /* yuv420 */),
556               mx & 7, (my << (chroma_idc == 2 /* yuv422 */)) & 7);
557
558     if (emu) {
559         s->vdsp.emulated_edge_mc(s->edge_emu_buffer, src_cr, h->mb_uvlinesize,
560                                  9, 8 * chroma_idc + 1, (mx >> 3), (my >> ysh),
561                                  pic_width >> 1, pic_height >> (chroma_idc == 1 /* yuv420 */));
562         src_cr = s->edge_emu_buffer;
563     }
564     chroma_op(dest_cr, src_cr, h->mb_uvlinesize, height >> (chroma_idc == 1 /* yuv420 */),
565               mx & 7, (my << (chroma_idc == 2 /* yuv422 */)) & 7);
566 }
567
568 static av_always_inline void mc_part_std(H264Context *h, int n, int square,
569                                          int height, int delta,
570                                          uint8_t *dest_y, uint8_t *dest_cb,
571                                          uint8_t *dest_cr,
572                                          int x_offset, int y_offset,
573                                          qpel_mc_func *qpix_put,
574                                          h264_chroma_mc_func chroma_put,
575                                          qpel_mc_func *qpix_avg,
576                                          h264_chroma_mc_func chroma_avg,
577                                          int list0, int list1,
578                                          int pixel_shift, int chroma_idc)
579 {
580     MpegEncContext *const s       = &h->s;
581     qpel_mc_func *qpix_op         = qpix_put;
582     h264_chroma_mc_func chroma_op = chroma_put;
583
584     dest_y += (2 * x_offset << pixel_shift) + 2 * y_offset * h->mb_linesize;
585     if (chroma_idc == 3 /* yuv444 */) {
586         dest_cb += (2 * x_offset << pixel_shift) + 2 * y_offset * h->mb_linesize;
587         dest_cr += (2 * x_offset << pixel_shift) + 2 * y_offset * h->mb_linesize;
588     } else if (chroma_idc == 2 /* yuv422 */) {
589         dest_cb += (x_offset << pixel_shift) + 2 * y_offset * h->mb_uvlinesize;
590         dest_cr += (x_offset << pixel_shift) + 2 * y_offset * h->mb_uvlinesize;
591     } else { /* yuv420 */
592         dest_cb += (x_offset << pixel_shift) + y_offset * h->mb_uvlinesize;
593         dest_cr += (x_offset << pixel_shift) + y_offset * h->mb_uvlinesize;
594     }
595     x_offset += 8 * s->mb_x;
596     y_offset += 8 * (s->mb_y >> MB_FIELD);
597
598     if (list0) {
599         Picture *ref = &h->ref_list[0][h->ref_cache[0][scan8[n]]];
600         mc_dir_part(h, ref, n, square, height, delta, 0,
601                     dest_y, dest_cb, dest_cr, x_offset, y_offset,
602                     qpix_op, chroma_op, pixel_shift, chroma_idc);
603
604         qpix_op   = qpix_avg;
605         chroma_op = chroma_avg;
606     }
607
608     if (list1) {
609         Picture *ref = &h->ref_list[1][h->ref_cache[1][scan8[n]]];
610         mc_dir_part(h, ref, n, square, height, delta, 1,
611                     dest_y, dest_cb, dest_cr, x_offset, y_offset,
612                     qpix_op, chroma_op, pixel_shift, chroma_idc);
613     }
614 }
615
616 static av_always_inline void mc_part_weighted(H264Context *h, int n, int square,
617                                               int height, int delta,
618                                               uint8_t *dest_y, uint8_t *dest_cb,
619                                               uint8_t *dest_cr,
620                                               int x_offset, int y_offset,
621                                               qpel_mc_func *qpix_put,
622                                               h264_chroma_mc_func chroma_put,
623                                               h264_weight_func luma_weight_op,
624                                               h264_weight_func chroma_weight_op,
625                                               h264_biweight_func luma_weight_avg,
626                                               h264_biweight_func chroma_weight_avg,
627                                               int list0, int list1,
628                                               int pixel_shift, int chroma_idc)
629 {
630     MpegEncContext *const s = &h->s;
631     int chroma_height;
632
633     dest_y += (2 * x_offset << pixel_shift) + 2 * y_offset * h->mb_linesize;
634     if (chroma_idc == 3 /* yuv444 */) {
635         chroma_height     = height;
636         chroma_weight_avg = luma_weight_avg;
637         chroma_weight_op  = luma_weight_op;
638         dest_cb += (2 * x_offset << pixel_shift) + 2 * y_offset * h->mb_linesize;
639         dest_cr += (2 * x_offset << pixel_shift) + 2 * y_offset * h->mb_linesize;
640     } else if (chroma_idc == 2 /* yuv422 */) {
641         chroma_height = height;
642         dest_cb      += (x_offset << pixel_shift) + 2 * y_offset * h->mb_uvlinesize;
643         dest_cr      += (x_offset << pixel_shift) + 2 * y_offset * h->mb_uvlinesize;
644     } else { /* yuv420 */
645         chroma_height = height >> 1;
646         dest_cb      += (x_offset << pixel_shift) + y_offset * h->mb_uvlinesize;
647         dest_cr      += (x_offset << pixel_shift) + y_offset * h->mb_uvlinesize;
648     }
649     x_offset += 8 * s->mb_x;
650     y_offset += 8 * (s->mb_y >> MB_FIELD);
651
652     if (list0 && list1) {
653         /* don't optimize for luma-only case, since B-frames usually
654          * use implicit weights => chroma too. */
655         uint8_t *tmp_cb = h->bipred_scratchpad;
656         uint8_t *tmp_cr = h->bipred_scratchpad + (16 << pixel_shift);
657         uint8_t *tmp_y  = h->bipred_scratchpad + 16 * h->mb_uvlinesize;
658         int refn0       = h->ref_cache[0][scan8[n]];
659         int refn1       = h->ref_cache[1][scan8[n]];
660
661         mc_dir_part(h, &h->ref_list[0][refn0], n, square, height, delta, 0,
662                     dest_y, dest_cb, dest_cr,
663                     x_offset, y_offset, qpix_put, chroma_put,
664                     pixel_shift, chroma_idc);
665         mc_dir_part(h, &h->ref_list[1][refn1], n, square, height, delta, 1,
666                     tmp_y, tmp_cb, tmp_cr,
667                     x_offset, y_offset, qpix_put, chroma_put,
668                     pixel_shift, chroma_idc);
669
670         if (h->use_weight == 2) {
671             int weight0 = h->implicit_weight[refn0][refn1][s->mb_y & 1];
672             int weight1 = 64 - weight0;
673             luma_weight_avg(dest_y, tmp_y, h->mb_linesize,
674                             height, 5, weight0, weight1, 0);
675             chroma_weight_avg(dest_cb, tmp_cb, h->mb_uvlinesize,
676                               chroma_height, 5, weight0, weight1, 0);
677             chroma_weight_avg(dest_cr, tmp_cr, h->mb_uvlinesize,
678                               chroma_height, 5, weight0, weight1, 0);
679         } else {
680             luma_weight_avg(dest_y, tmp_y, h->mb_linesize, height,
681                             h->luma_log2_weight_denom,
682                             h->luma_weight[refn0][0][0],
683                             h->luma_weight[refn1][1][0],
684                             h->luma_weight[refn0][0][1] +
685                             h->luma_weight[refn1][1][1]);
686             chroma_weight_avg(dest_cb, tmp_cb, h->mb_uvlinesize, chroma_height,
687                               h->chroma_log2_weight_denom,
688                               h->chroma_weight[refn0][0][0][0],
689                               h->chroma_weight[refn1][1][0][0],
690                               h->chroma_weight[refn0][0][0][1] +
691                               h->chroma_weight[refn1][1][0][1]);
692             chroma_weight_avg(dest_cr, tmp_cr, h->mb_uvlinesize, chroma_height,
693                               h->chroma_log2_weight_denom,
694                               h->chroma_weight[refn0][0][1][0],
695                               h->chroma_weight[refn1][1][1][0],
696                               h->chroma_weight[refn0][0][1][1] +
697                               h->chroma_weight[refn1][1][1][1]);
698         }
699     } else {
700         int list     = list1 ? 1 : 0;
701         int refn     = h->ref_cache[list][scan8[n]];
702         Picture *ref = &h->ref_list[list][refn];
703         mc_dir_part(h, ref, n, square, height, delta, list,
704                     dest_y, dest_cb, dest_cr, x_offset, y_offset,
705                     qpix_put, chroma_put, pixel_shift, chroma_idc);
706
707         luma_weight_op(dest_y, h->mb_linesize, height,
708                        h->luma_log2_weight_denom,
709                        h->luma_weight[refn][list][0],
710                        h->luma_weight[refn][list][1]);
711         if (h->use_weight_chroma) {
712             chroma_weight_op(dest_cb, h->mb_uvlinesize, chroma_height,
713                              h->chroma_log2_weight_denom,
714                              h->chroma_weight[refn][list][0][0],
715                              h->chroma_weight[refn][list][0][1]);
716             chroma_weight_op(dest_cr, h->mb_uvlinesize, chroma_height,
717                              h->chroma_log2_weight_denom,
718                              h->chroma_weight[refn][list][1][0],
719                              h->chroma_weight[refn][list][1][1]);
720         }
721     }
722 }
723
724 static av_always_inline void prefetch_motion(H264Context *h, int list,
725                                              int pixel_shift, int chroma_idc)
726 {
727     /* fetch pixels for estimated mv 4 macroblocks ahead
728      * optimized for 64byte cache lines */
729     MpegEncContext *const s = &h->s;
730     const int refn = h->ref_cache[list][scan8[0]];
731     if (refn >= 0) {
732         const int mx  = (h->mv_cache[list][scan8[0]][0] >> 2) + 16 * s->mb_x + 8;
733         const int my  = (h->mv_cache[list][scan8[0]][1] >> 2) + 16 * s->mb_y;
734         uint8_t **src = h->ref_list[list][refn].f.data;
735         int off       = (mx << pixel_shift) +
736                         (my + (s->mb_x & 3) * 4) * h->mb_linesize +
737                         (64 << pixel_shift);
738         s->vdsp.prefetch(src[0] + off, s->linesize, 4);
739         if (chroma_idc == 3 /* yuv444 */) {
740             s->vdsp.prefetch(src[1] + off, s->linesize, 4);
741             s->vdsp.prefetch(src[2] + off, s->linesize, 4);
742         } else {
743             off = ((mx >> 1) << pixel_shift) +
744                   ((my >> 1) + (s->mb_x & 7)) * s->uvlinesize +
745                   (64 << pixel_shift);
746             s->vdsp.prefetch(src[1] + off, src[2] - src[1], 2);
747         }
748     }
749 }
750
751 static void free_tables(H264Context *h, int free_rbsp)
752 {
753     int i;
754     H264Context *hx;
755
756     av_freep(&h->intra4x4_pred_mode);
757     av_freep(&h->chroma_pred_mode_table);
758     av_freep(&h->cbp_table);
759     av_freep(&h->mvd_table[0]);
760     av_freep(&h->mvd_table[1]);
761     av_freep(&h->direct_table);
762     av_freep(&h->non_zero_count);
763     av_freep(&h->slice_table_base);
764     h->slice_table = NULL;
765     av_freep(&h->list_counts);
766
767     av_freep(&h->mb2b_xy);
768     av_freep(&h->mb2br_xy);
769
770     for (i = 0; i < MAX_THREADS; i++) {
771         hx = h->thread_context[i];
772         if (!hx)
773             continue;
774         av_freep(&hx->top_borders[1]);
775         av_freep(&hx->top_borders[0]);
776         av_freep(&hx->bipred_scratchpad);
777         if (free_rbsp) {
778             av_freep(&hx->rbsp_buffer[1]);
779             av_freep(&hx->rbsp_buffer[0]);
780             hx->rbsp_buffer_size[0] = 0;
781             hx->rbsp_buffer_size[1] = 0;
782         }
783         if (i)
784             av_freep(&h->thread_context[i]);
785     }
786 }
787
788 static void init_dequant8_coeff_table(H264Context *h)
789 {
790     int i, j, q, x;
791     const int max_qp = 51 + 6 * (h->sps.bit_depth_luma - 8);
792
793     for (i = 0; i < 6; i++) {
794         h->dequant8_coeff[i] = h->dequant8_buffer[i];
795         for (j = 0; j < i; j++)
796             if (!memcmp(h->pps.scaling_matrix8[j], h->pps.scaling_matrix8[i],
797                         64 * sizeof(uint8_t))) {
798                 h->dequant8_coeff[i] = h->dequant8_buffer[j];
799                 break;
800             }
801         if (j < i)
802             continue;
803
804         for (q = 0; q < max_qp + 1; q++) {
805             int shift = div6[q];
806             int idx   = rem6[q];
807             for (x = 0; x < 64; x++)
808                 h->dequant8_coeff[i][q][(x >> 3) | ((x & 7) << 3)] =
809                     ((uint32_t)dequant8_coeff_init[idx][dequant8_coeff_init_scan[((x >> 1) & 12) | (x & 3)]] *
810                      h->pps.scaling_matrix8[i][x]) << shift;
811         }
812     }
813 }
814
815 static void init_dequant4_coeff_table(H264Context *h)
816 {
817     int i, j, q, x;
818     const int max_qp = 51 + 6 * (h->sps.bit_depth_luma - 8);
819     for (i = 0; i < 6; i++) {
820         h->dequant4_coeff[i] = h->dequant4_buffer[i];
821         for (j = 0; j < i; j++)
822             if (!memcmp(h->pps.scaling_matrix4[j], h->pps.scaling_matrix4[i],
823                         16 * sizeof(uint8_t))) {
824                 h->dequant4_coeff[i] = h->dequant4_buffer[j];
825                 break;
826             }
827         if (j < i)
828             continue;
829
830         for (q = 0; q < max_qp + 1; q++) {
831             int shift = div6[q] + 2;
832             int idx   = rem6[q];
833             for (x = 0; x < 16; x++)
834                 h->dequant4_coeff[i][q][(x >> 2) | ((x << 2) & 0xF)] =
835                     ((uint32_t)dequant4_coeff_init[idx][(x & 1) + ((x >> 2) & 1)] *
836                      h->pps.scaling_matrix4[i][x]) << shift;
837         }
838     }
839 }
840
841 static void init_dequant_tables(H264Context *h)
842 {
843     int i, x;
844     init_dequant4_coeff_table(h);
845     if (h->pps.transform_8x8_mode)
846         init_dequant8_coeff_table(h);
847     if (h->sps.transform_bypass) {
848         for (i = 0; i < 6; i++)
849             for (x = 0; x < 16; x++)
850                 h->dequant4_coeff[i][0][x] = 1 << 6;
851         if (h->pps.transform_8x8_mode)
852             for (i = 0; i < 6; i++)
853                 for (x = 0; x < 64; x++)
854                     h->dequant8_coeff[i][0][x] = 1 << 6;
855     }
856 }
857
858 int ff_h264_alloc_tables(H264Context *h)
859 {
860     MpegEncContext *const s = &h->s;
861     const int big_mb_num    = s->mb_stride * (s->mb_height + 1);
862     const int row_mb_num    = s->mb_stride * 2 * s->avctx->thread_count;
863     int x, y;
864
865     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->intra4x4_pred_mode,
866                       row_mb_num * 8 * sizeof(uint8_t), fail)
867     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->non_zero_count,
868                       big_mb_num * 48 * sizeof(uint8_t), fail)
869     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->slice_table_base,
870                       (big_mb_num + s->mb_stride) * sizeof(*h->slice_table_base), fail)
871     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->cbp_table,
872                       big_mb_num * sizeof(uint16_t), fail)
873     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->chroma_pred_mode_table,
874                       big_mb_num * sizeof(uint8_t), fail)
875     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->mvd_table[0],
876                       16 * row_mb_num * sizeof(uint8_t), fail);
877     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->mvd_table[1],
878                       16 * row_mb_num * sizeof(uint8_t), fail);
879     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->direct_table,
880                       4 * big_mb_num * sizeof(uint8_t), fail);
881     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->list_counts,
882                       big_mb_num * sizeof(uint8_t), fail)
883
884     memset(h->slice_table_base, -1,
885            (big_mb_num + s->mb_stride) * sizeof(*h->slice_table_base));
886     h->slice_table = h->slice_table_base + s->mb_stride * 2 + 1;
887
888     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->mb2b_xy,
889                       big_mb_num * sizeof(uint32_t), fail);
890     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->mb2br_xy,
891                       big_mb_num * sizeof(uint32_t), fail);
892     for (y = 0; y < s->mb_height; y++)
893         for (x = 0; x < s->mb_width; x++) {
894             const int mb_xy = x + y * s->mb_stride;
895             const int b_xy  = 4 * x + 4 * y * h->b_stride;
896
897             h->mb2b_xy[mb_xy]  = b_xy;
898             h->mb2br_xy[mb_xy] = 8 * (FMO ? mb_xy : (mb_xy % (2 * s->mb_stride)));
899         }
900
901     if (!h->dequant4_coeff[0])
902         init_dequant_tables(h);
903
904     return 0;
905
906 fail:
907     free_tables(h, 1);
908     return -1;
909 }
910
911 /**
912  * Mimic alloc_tables(), but for every context thread.
913  */
914 static void clone_tables(H264Context *dst, H264Context *src, int i)
915 {
916     MpegEncContext *const s     = &src->s;
917     dst->intra4x4_pred_mode     = src->intra4x4_pred_mode + i * 8 * 2 * s->mb_stride;
918     dst->non_zero_count         = src->non_zero_count;
919     dst->slice_table            = src->slice_table;
920     dst->cbp_table              = src->cbp_table;
921     dst->mb2b_xy                = src->mb2b_xy;
922     dst->mb2br_xy               = src->mb2br_xy;
923     dst->chroma_pred_mode_table = src->chroma_pred_mode_table;
924     dst->mvd_table[0]           = src->mvd_table[0] + i * 8 * 2 * s->mb_stride;
925     dst->mvd_table[1]           = src->mvd_table[1] + i * 8 * 2 * s->mb_stride;
926     dst->direct_table           = src->direct_table;
927     dst->list_counts            = src->list_counts;
928     dst->bipred_scratchpad      = NULL;
929     ff_h264_pred_init(&dst->hpc, src->s.codec_id, src->sps.bit_depth_luma,
930                       src->sps.chroma_format_idc);
931 }
932
933 /**
934  * Init context
935  * Allocate buffers which are not shared amongst multiple threads.
936  */
937 static int context_init(H264Context *h)
938 {
939     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->top_borders[0],
940                       h->s.mb_width * 16 * 3 * sizeof(uint8_t) * 2, fail)
941     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->top_borders[1],
942                       h->s.mb_width * 16 * 3 * sizeof(uint8_t) * 2, fail)
943
944     h->ref_cache[0][scan8[5]  + 1] =
945     h->ref_cache[0][scan8[7]  + 1] =
946     h->ref_cache[0][scan8[13] + 1] =
947     h->ref_cache[1][scan8[5]  + 1] =
948     h->ref_cache[1][scan8[7]  + 1] =
949     h->ref_cache[1][scan8[13] + 1] = PART_NOT_AVAILABLE;
950
951     return 0;
952
953 fail:
954     return -1; // free_tables will clean up for us
955 }
956
957 static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size,
958                             int parse_extradata);
959
960 static av_cold void common_init(H264Context *h)
961 {
962     MpegEncContext *const s = &h->s;
963
964     s->width    = s->avctx->width;
965     s->height   = s->avctx->height;
966     s->codec_id = s->avctx->codec->id;
967
968     ff_h264dsp_init(&h->h264dsp, 8, 1);
969     ff_h264_pred_init(&h->hpc, s->codec_id, 8, 1);
970
971     h->dequant_coeff_pps = -1;
972     s->unrestricted_mv   = 1;
973
974     /* needed so that IDCT permutation is known early */
975     ff_dsputil_init(&s->dsp, s->avctx);
976     ff_videodsp_init(&s->vdsp, 8);
977
978     memset(h->pps.scaling_matrix4, 16, 6 * 16 * sizeof(uint8_t));
979     memset(h->pps.scaling_matrix8, 16, 2 * 64 * sizeof(uint8_t));
980 }
981
982 int ff_h264_decode_extradata(H264Context *h)
983 {
984     AVCodecContext *avctx = h->s.avctx;
985
986     if (avctx->extradata[0] == 1) {
987         int i, cnt, nalsize;
988         unsigned char *p = avctx->extradata;
989
990         h->is_avc = 1;
991
992         if (avctx->extradata_size < 7) {
993             av_log(avctx, AV_LOG_ERROR, "avcC too short\n");
994             return -1;
995         }
996         /* sps and pps in the avcC always have length coded with 2 bytes,
997          * so put a fake nal_length_size = 2 while parsing them */
998         h->nal_length_size = 2;
999         // Decode sps from avcC
1000         cnt = *(p + 5) & 0x1f; // Number of sps
1001         p  += 6;
1002         for (i = 0; i < cnt; i++) {
1003             nalsize = AV_RB16(p) + 2;
1004             if (p - avctx->extradata + nalsize > avctx->extradata_size)
1005                 return -1;
1006             if (decode_nal_units(h, p, nalsize, 1) < 0) {
1007                 av_log(avctx, AV_LOG_ERROR,
1008                        "Decoding sps %d from avcC failed\n", i);
1009                 return -1;
1010             }
1011             p += nalsize;
1012         }
1013         // Decode pps from avcC
1014         cnt = *(p++); // Number of pps
1015         for (i = 0; i < cnt; i++) {
1016             nalsize = AV_RB16(p) + 2;
1017             if (p - avctx->extradata + nalsize > avctx->extradata_size)
1018                 return -1;
1019             if (decode_nal_units(h, p, nalsize, 1) < 0) {
1020                 av_log(avctx, AV_LOG_ERROR,
1021                        "Decoding pps %d from avcC failed\n", i);
1022                 return -1;
1023             }
1024             p += nalsize;
1025         }
1026         // Now store right nal length size, that will be used to parse all other nals
1027         h->nal_length_size = (avctx->extradata[4] & 0x03) + 1;
1028     } else {
1029         h->is_avc = 0;
1030         if (decode_nal_units(h, avctx->extradata, avctx->extradata_size, 1) < 0)
1031             return -1;
1032     }
1033     return 0;
1034 }
1035
1036 av_cold int ff_h264_decode_init(AVCodecContext *avctx)
1037 {
1038     H264Context *h = avctx->priv_data;
1039     MpegEncContext *const s = &h->s;
1040     int i;
1041
1042     ff_MPV_decode_defaults(s);
1043
1044     s->avctx = avctx;
1045     common_init(h);
1046
1047     s->out_format      = FMT_H264;
1048     s->workaround_bugs = avctx->workaround_bugs;
1049
1050     /* set defaults */
1051     // s->decode_mb = ff_h263_decode_mb;
1052     s->quarter_sample = 1;
1053     if (!avctx->has_b_frames)
1054         s->low_delay = 1;
1055
1056     avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
1057
1058     ff_h264_decode_init_vlc();
1059
1060     h->pixel_shift = 0;
1061     h->sps.bit_depth_luma = avctx->bits_per_raw_sample = 8;
1062
1063     h->thread_context[0] = h;
1064     h->outputed_poc      = h->next_outputed_poc = INT_MIN;
1065     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
1066         h->last_pocs[i] = INT_MIN;
1067     h->prev_poc_msb = 1 << 16;
1068     h->x264_build   = -1;
1069     ff_h264_reset_sei(h);
1070     if (avctx->codec_id == AV_CODEC_ID_H264) {
1071         if (avctx->ticks_per_frame == 1)
1072             s->avctx->time_base.den *= 2;
1073         avctx->ticks_per_frame = 2;
1074     }
1075
1076     if (avctx->extradata_size > 0 && avctx->extradata &&
1077         ff_h264_decode_extradata(h))
1078         return -1;
1079
1080     if (h->sps.bitstream_restriction_flag &&
1081         s->avctx->has_b_frames < h->sps.num_reorder_frames) {
1082         s->avctx->has_b_frames = h->sps.num_reorder_frames;
1083         s->low_delay           = 0;
1084     }
1085
1086     return 0;
1087 }
1088
1089 #define IN_RANGE(a, b, size) (((a) >= (b)) && ((a) < ((b) + (size))))
1090
1091 static void copy_picture_range(Picture **to, Picture **from, int count,
1092                                MpegEncContext *new_base,
1093                                MpegEncContext *old_base)
1094 {
1095     int i;
1096
1097     for (i = 0; i < count; i++) {
1098         assert((IN_RANGE(from[i], old_base, sizeof(*old_base)) ||
1099                 IN_RANGE(from[i], old_base->picture,
1100                          sizeof(Picture) * old_base->picture_count) ||
1101                 !from[i]));
1102         to[i] = REBASE_PICTURE(from[i], new_base, old_base);
1103     }
1104 }
1105
1106 static void copy_parameter_set(void **to, void **from, int count, int size)
1107 {
1108     int i;
1109
1110     for (i = 0; i < count; i++) {
1111         if (to[i] && !from[i])
1112             av_freep(&to[i]);
1113         else if (from[i] && !to[i])
1114             to[i] = av_malloc(size);
1115
1116         if (from[i])
1117             memcpy(to[i], from[i], size);
1118     }
1119 }
1120
1121 static int decode_init_thread_copy(AVCodecContext *avctx)
1122 {
1123     H264Context *h = avctx->priv_data;
1124
1125     if (!avctx->internal->is_copy)
1126         return 0;
1127     memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
1128     memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
1129
1130     h->s.context_initialized = 0;
1131
1132     return 0;
1133 }
1134
1135 #define copy_fields(to, from, start_field, end_field)                   \
1136     memcpy(&to->start_field, &from->start_field,                        \
1137            (char *)&to->end_field - (char *)&to->start_field)
1138
1139 static int h264_slice_header_init(H264Context *, int);
1140
1141 static int h264_set_parameter_from_sps(H264Context *h);
1142
1143 static int decode_update_thread_context(AVCodecContext *dst,
1144                                         const AVCodecContext *src)
1145 {
1146     H264Context *h = dst->priv_data, *h1 = src->priv_data;
1147     MpegEncContext *const s = &h->s, *const s1 = &h1->s;
1148     int inited = s->context_initialized, err;
1149     int i;
1150
1151     if (dst == src || !s1->context_initialized)
1152         return 0;
1153
1154     if (inited &&
1155         (s->width      != s1->width      ||
1156          s->height     != s1->height     ||
1157          s->mb_width   != s1->mb_width   ||
1158          s->mb_height  != s1->mb_height  ||
1159          h->sps.bit_depth_luma    != h1->sps.bit_depth_luma    ||
1160          h->sps.chroma_format_idc != h1->sps.chroma_format_idc ||
1161          h->sps.colorspace        != h1->sps.colorspace)) {
1162
1163         av_freep(&h->bipred_scratchpad);
1164
1165         s->width     = s1->width;
1166         s->height    = s1->height;
1167         s->mb_height = s1->mb_height;
1168         h->b_stride  = h1->b_stride;
1169
1170         if ((err = h264_slice_header_init(h, 1)) < 0) {
1171             av_log(h->s.avctx, AV_LOG_ERROR, "h264_slice_header_init() failed");
1172             return err;
1173         }
1174         h->context_reinitialized = 1;
1175
1176         /* update linesize on resize for h264. The h264 decoder doesn't
1177          * necessarily call ff_MPV_frame_start in the new thread */
1178         s->linesize   = s1->linesize;
1179         s->uvlinesize = s1->uvlinesize;
1180
1181         /* copy block_offset since frame_start may not be called */
1182         memcpy(h->block_offset, h1->block_offset, sizeof(h->block_offset));
1183         h264_set_parameter_from_sps(h);
1184     }
1185
1186     err = ff_mpeg_update_thread_context(dst, src);
1187     if (err)
1188         return err;
1189
1190     if (!inited) {
1191         for (i = 0; i < MAX_SPS_COUNT; i++)
1192             av_freep(h->sps_buffers + i);
1193
1194         for (i = 0; i < MAX_PPS_COUNT; i++)
1195             av_freep(h->pps_buffers + i);
1196
1197         // copy all fields after MpegEnc
1198         memcpy(&h->s + 1, &h1->s + 1,
1199                sizeof(H264Context) - sizeof(MpegEncContext));
1200         memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
1201         memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
1202         if (ff_h264_alloc_tables(h) < 0) {
1203             av_log(dst, AV_LOG_ERROR, "Could not allocate memory for h264\n");
1204             return AVERROR(ENOMEM);
1205         }
1206         context_init(h);
1207
1208         for (i = 0; i < 2; i++) {
1209             h->rbsp_buffer[i]      = NULL;
1210             h->rbsp_buffer_size[i] = 0;
1211         }
1212         h->bipred_scratchpad = NULL;
1213
1214         h->thread_context[0] = h;
1215
1216         s->dsp.clear_blocks(h->mb);
1217         s->dsp.clear_blocks(h->mb + (24 * 16 << h->pixel_shift));
1218     }
1219
1220     /* frame_start may not be called for the next thread (if it's decoding
1221      * a bottom field) so this has to be allocated here */
1222     if (!h->bipred_scratchpad)
1223         h->bipred_scratchpad = av_malloc(16 * 6 * s->linesize);
1224
1225     // extradata/NAL handling
1226     h->is_avc = h1->is_avc;
1227
1228     // SPS/PPS
1229     copy_parameter_set((void **)h->sps_buffers, (void **)h1->sps_buffers,
1230                        MAX_SPS_COUNT, sizeof(SPS));
1231     h->sps = h1->sps;
1232     copy_parameter_set((void **)h->pps_buffers, (void **)h1->pps_buffers,
1233                        MAX_PPS_COUNT, sizeof(PPS));
1234     h->pps = h1->pps;
1235
1236     // Dequantization matrices
1237     // FIXME these are big - can they be only copied when PPS changes?
1238     copy_fields(h, h1, dequant4_buffer, dequant4_coeff);
1239
1240     for (i = 0; i < 6; i++)
1241         h->dequant4_coeff[i] = h->dequant4_buffer[0] +
1242                                (h1->dequant4_coeff[i] - h1->dequant4_buffer[0]);
1243
1244     for (i = 0; i < 6; i++)
1245         h->dequant8_coeff[i] = h->dequant8_buffer[0] +
1246                                (h1->dequant8_coeff[i] - h1->dequant8_buffer[0]);
1247
1248     h->dequant_coeff_pps = h1->dequant_coeff_pps;
1249
1250     // POC timing
1251     copy_fields(h, h1, poc_lsb, redundant_pic_count);
1252
1253     // reference lists
1254     copy_fields(h, h1, ref_count, list_count);
1255     copy_fields(h, h1, ref_list, intra_gb);
1256     copy_fields(h, h1, short_ref, cabac_init_idc);
1257
1258     copy_picture_range(h->short_ref, h1->short_ref, 32, s, s1);
1259     copy_picture_range(h->long_ref, h1->long_ref, 32, s, s1);
1260     copy_picture_range(h->delayed_pic, h1->delayed_pic,
1261                        MAX_DELAYED_PIC_COUNT + 2, s, s1);
1262
1263     h->last_slice_type = h1->last_slice_type;
1264
1265     if (!s->current_picture_ptr)
1266         return 0;
1267
1268     if (!s->droppable) {
1269         err = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
1270         h->prev_poc_msb = h->poc_msb;
1271         h->prev_poc_lsb = h->poc_lsb;
1272     }
1273     h->prev_frame_num_offset = h->frame_num_offset;
1274     h->prev_frame_num        = h->frame_num;
1275     h->outputed_poc          = h->next_outputed_poc;
1276
1277     return err;
1278 }
1279
1280 int ff_h264_frame_start(H264Context *h)
1281 {
1282     MpegEncContext *const s = &h->s;
1283     int i;
1284     const int pixel_shift = h->pixel_shift;
1285
1286     if (ff_MPV_frame_start(s, s->avctx) < 0)
1287         return -1;
1288     ff_er_frame_start(s);
1289     /*
1290      * ff_MPV_frame_start uses pict_type to derive key_frame.
1291      * This is incorrect for H.264; IDR markings must be used.
1292      * Zero here; IDR markings per slice in frame or fields are ORed in later.
1293      * See decode_nal_units().
1294      */
1295     s->current_picture_ptr->f.key_frame = 0;
1296     s->current_picture_ptr->mmco_reset  = 0;
1297
1298     assert(s->linesize && s->uvlinesize);
1299
1300     for (i = 0; i < 16; i++) {
1301         h->block_offset[i]           = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * s->linesize * ((scan8[i] - scan8[0]) >> 3);
1302         h->block_offset[48 + i]      = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * s->linesize * ((scan8[i] - scan8[0]) >> 3);
1303     }
1304     for (i = 0; i < 16; i++) {
1305         h->block_offset[16 + i]      =
1306         h->block_offset[32 + i]      = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * s->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
1307         h->block_offset[48 + 16 + i] =
1308         h->block_offset[48 + 32 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * s->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
1309     }
1310
1311     /* can't be in alloc_tables because linesize isn't known there.
1312      * FIXME: redo bipred weight to not require extra buffer? */
1313     for (i = 0; i < s->slice_context_count; i++)
1314         if (h->thread_context[i] && !h->thread_context[i]->bipred_scratchpad)
1315             h->thread_context[i]->bipred_scratchpad = av_malloc(16 * 6 * s->linesize);
1316
1317     /* Some macroblocks can be accessed before they're available in case
1318      * of lost slices, MBAFF or threading. */
1319     memset(h->slice_table, -1,
1320            (s->mb_height * s->mb_stride - 1) * sizeof(*h->slice_table));
1321
1322     // s->decode = (s->flags & CODEC_FLAG_PSNR) || !s->encoding ||
1323     //             s->current_picture.f.reference /* || h->contains_intra */ || 1;
1324
1325     /* We mark the current picture as non-reference after allocating it, so
1326      * that if we break out due to an error it can be released automatically
1327      * in the next ff_MPV_frame_start().
1328      * SVQ3 as well as most other codecs have only last/next/current and thus
1329      * get released even with set reference, besides SVQ3 and others do not
1330      * mark frames as reference later "naturally". */
1331     if (s->codec_id != AV_CODEC_ID_SVQ3)
1332         s->current_picture_ptr->f.reference = 0;
1333
1334     s->current_picture_ptr->field_poc[0]     =
1335         s->current_picture_ptr->field_poc[1] = INT_MAX;
1336
1337     h->next_output_pic = NULL;
1338
1339     assert(s->current_picture_ptr->long_ref == 0);
1340
1341     return 0;
1342 }
1343
1344 /**
1345  * Run setup operations that must be run after slice header decoding.
1346  * This includes finding the next displayed frame.
1347  *
1348  * @param h h264 master context
1349  * @param setup_finished enough NALs have been read that we can call
1350  * ff_thread_finish_setup()
1351  */
1352 static void decode_postinit(H264Context *h, int setup_finished)
1353 {
1354     MpegEncContext *const s = &h->s;
1355     Picture *out = s->current_picture_ptr;
1356     Picture *cur = s->current_picture_ptr;
1357     int i, pics, out_of_order, out_idx;
1358     int invalid = 0, cnt = 0;
1359
1360     s->current_picture_ptr->f.qscale_type = FF_QSCALE_TYPE_H264;
1361     s->current_picture_ptr->f.pict_type   = s->pict_type;
1362
1363     if (h->next_output_pic)
1364         return;
1365
1366     if (cur->field_poc[0] == INT_MAX || cur->field_poc[1] == INT_MAX) {
1367         /* FIXME: if we have two PAFF fields in one packet, we can't start
1368          * the next thread here. If we have one field per packet, we can.
1369          * The check in decode_nal_units() is not good enough to find this
1370          * yet, so we assume the worst for now. */
1371         // if (setup_finished)
1372         //    ff_thread_finish_setup(s->avctx);
1373         return;
1374     }
1375
1376     cur->f.interlaced_frame = 0;
1377     cur->f.repeat_pict      = 0;
1378
1379     /* Signal interlacing information externally. */
1380     /* Prioritize picture timing SEI information over used
1381      * decoding process if it exists. */
1382
1383     if (h->sps.pic_struct_present_flag) {
1384         switch (h->sei_pic_struct) {
1385         case SEI_PIC_STRUCT_FRAME:
1386             break;
1387         case SEI_PIC_STRUCT_TOP_FIELD:
1388         case SEI_PIC_STRUCT_BOTTOM_FIELD:
1389             cur->f.interlaced_frame = 1;
1390             break;
1391         case SEI_PIC_STRUCT_TOP_BOTTOM:
1392         case SEI_PIC_STRUCT_BOTTOM_TOP:
1393             if (FIELD_OR_MBAFF_PICTURE)
1394                 cur->f.interlaced_frame = 1;
1395             else
1396                 // try to flag soft telecine progressive
1397                 cur->f.interlaced_frame = h->prev_interlaced_frame;
1398             break;
1399         case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
1400         case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
1401             /* Signal the possibility of telecined film externally
1402              * (pic_struct 5,6). From these hints, let the applications
1403              * decide if they apply deinterlacing. */
1404             cur->f.repeat_pict = 1;
1405             break;
1406         case SEI_PIC_STRUCT_FRAME_DOUBLING:
1407             // Force progressive here, doubling interlaced frame is a bad idea.
1408             cur->f.repeat_pict = 2;
1409             break;
1410         case SEI_PIC_STRUCT_FRAME_TRIPLING:
1411             cur->f.repeat_pict = 4;
1412             break;
1413         }
1414
1415         if ((h->sei_ct_type & 3) &&
1416             h->sei_pic_struct <= SEI_PIC_STRUCT_BOTTOM_TOP)
1417             cur->f.interlaced_frame = (h->sei_ct_type & (1 << 1)) != 0;
1418     } else {
1419         /* Derive interlacing flag from used decoding process. */
1420         cur->f.interlaced_frame = FIELD_OR_MBAFF_PICTURE;
1421     }
1422     h->prev_interlaced_frame = cur->f.interlaced_frame;
1423
1424     if (cur->field_poc[0] != cur->field_poc[1]) {
1425         /* Derive top_field_first from field pocs. */
1426         cur->f.top_field_first = cur->field_poc[0] < cur->field_poc[1];
1427     } else {
1428         if (cur->f.interlaced_frame || h->sps.pic_struct_present_flag) {
1429             /* Use picture timing SEI information. Even if it is a
1430              * information of a past frame, better than nothing. */
1431             if (h->sei_pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM ||
1432                 h->sei_pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM_TOP)
1433                 cur->f.top_field_first = 1;
1434             else
1435                 cur->f.top_field_first = 0;
1436         } else {
1437             /* Most likely progressive */
1438             cur->f.top_field_first = 0;
1439         }
1440     }
1441
1442     // FIXME do something with unavailable reference frames
1443
1444     /* Sort B-frames into display order */
1445
1446     if (h->sps.bitstream_restriction_flag &&
1447         s->avctx->has_b_frames < h->sps.num_reorder_frames) {
1448         s->avctx->has_b_frames = h->sps.num_reorder_frames;
1449         s->low_delay           = 0;
1450     }
1451
1452     if (s->avctx->strict_std_compliance >= FF_COMPLIANCE_STRICT &&
1453         !h->sps.bitstream_restriction_flag) {
1454         s->avctx->has_b_frames = MAX_DELAYED_PIC_COUNT - 1;
1455         s->low_delay           = 0;
1456     }
1457
1458     pics = 0;
1459     while (h->delayed_pic[pics])
1460         pics++;
1461
1462     assert(pics <= MAX_DELAYED_PIC_COUNT);
1463
1464     h->delayed_pic[pics++] = cur;
1465     if (cur->f.reference == 0)
1466         cur->f.reference = DELAYED_PIC_REF;
1467
1468     /* Frame reordering. This code takes pictures from coding order and sorts
1469      * them by their incremental POC value into display order. It supports POC
1470      * gaps, MMCO reset codes and random resets.
1471      * A "display group" can start either with a IDR frame (f.key_frame = 1),
1472      * and/or can be closed down with a MMCO reset code. In sequences where
1473      * there is no delay, we can't detect that (since the frame was already
1474      * output to the user), so we also set h->mmco_reset to detect the MMCO
1475      * reset code.
1476      * FIXME: if we detect insufficient delays (as per s->avctx->has_b_frames),
1477      * we increase the delay between input and output. All frames affected by
1478      * the lag (e.g. those that should have been output before another frame
1479      * that we already returned to the user) will be dropped. This is a bug
1480      * that we will fix later. */
1481     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++) {
1482         cnt     += out->poc < h->last_pocs[i];
1483         invalid += out->poc == INT_MIN;
1484     }
1485     if (!h->mmco_reset && !cur->f.key_frame &&
1486         cnt + invalid == MAX_DELAYED_PIC_COUNT && cnt > 0) {
1487         h->mmco_reset = 2;
1488         if (pics > 1)
1489             h->delayed_pic[pics - 2]->mmco_reset = 2;
1490     }
1491     if (h->mmco_reset || cur->f.key_frame) {
1492         for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
1493             h->last_pocs[i] = INT_MIN;
1494         cnt     = 0;
1495         invalid = MAX_DELAYED_PIC_COUNT;
1496     }
1497     out     = h->delayed_pic[0];
1498     out_idx = 0;
1499     for (i = 1; i < MAX_DELAYED_PIC_COUNT &&
1500                 h->delayed_pic[i] &&
1501                 !h->delayed_pic[i - 1]->mmco_reset &&
1502                 !h->delayed_pic[i]->f.key_frame;
1503          i++)
1504         if (h->delayed_pic[i]->poc < out->poc) {
1505             out     = h->delayed_pic[i];
1506             out_idx = i;
1507         }
1508     if (s->avctx->has_b_frames == 0 &&
1509         (h->delayed_pic[0]->f.key_frame || h->mmco_reset))
1510         h->next_outputed_poc = INT_MIN;
1511     out_of_order = !out->f.key_frame && !h->mmco_reset &&
1512                    (out->poc < h->next_outputed_poc);
1513
1514     if (h->sps.bitstream_restriction_flag &&
1515         s->avctx->has_b_frames >= h->sps.num_reorder_frames) {
1516     } else if (out_of_order && pics - 1 == s->avctx->has_b_frames &&
1517                s->avctx->has_b_frames < MAX_DELAYED_PIC_COUNT) {
1518         if (invalid + cnt < MAX_DELAYED_PIC_COUNT) {
1519             s->avctx->has_b_frames = FFMAX(s->avctx->has_b_frames, cnt);
1520         }
1521         s->low_delay = 0;
1522     } else if (s->low_delay &&
1523                ((h->next_outputed_poc != INT_MIN &&
1524                  out->poc > h->next_outputed_poc + 2) ||
1525                 cur->f.pict_type == AV_PICTURE_TYPE_B)) {
1526         s->low_delay = 0;
1527         s->avctx->has_b_frames++;
1528     }
1529
1530     if (pics > s->avctx->has_b_frames) {
1531         out->f.reference &= ~DELAYED_PIC_REF;
1532         // for frame threading, the owner must be the second field's thread or
1533         // else the first thread can release the picture and reuse it unsafely
1534         out->owner2       = s;
1535         for (i = out_idx; h->delayed_pic[i]; i++)
1536             h->delayed_pic[i] = h->delayed_pic[i + 1];
1537     }
1538     memmove(h->last_pocs, &h->last_pocs[1],
1539             sizeof(*h->last_pocs) * (MAX_DELAYED_PIC_COUNT - 1));
1540     h->last_pocs[MAX_DELAYED_PIC_COUNT - 1] = cur->poc;
1541     if (!out_of_order && pics > s->avctx->has_b_frames) {
1542         h->next_output_pic = out;
1543         if (out->mmco_reset) {
1544             if (out_idx > 0) {
1545                 h->next_outputed_poc                    = out->poc;
1546                 h->delayed_pic[out_idx - 1]->mmco_reset = out->mmco_reset;
1547             } else {
1548                 h->next_outputed_poc = INT_MIN;
1549             }
1550         } else {
1551             if (out_idx == 0 && pics > 1 && h->delayed_pic[0]->f.key_frame) {
1552                 h->next_outputed_poc = INT_MIN;
1553             } else {
1554                 h->next_outputed_poc = out->poc;
1555             }
1556         }
1557         h->mmco_reset = 0;
1558     } else {
1559         av_log(s->avctx, AV_LOG_DEBUG, "no picture\n");
1560     }
1561
1562     if (setup_finished)
1563         ff_thread_finish_setup(s->avctx);
1564 }
1565
1566 static av_always_inline void backup_mb_border(H264Context *h, uint8_t *src_y,
1567                                               uint8_t *src_cb, uint8_t *src_cr,
1568                                               int linesize, int uvlinesize,
1569                                               int simple)
1570 {
1571     MpegEncContext *const s = &h->s;
1572     uint8_t *top_border;
1573     int top_idx = 1;
1574     const int pixel_shift = h->pixel_shift;
1575     int chroma444 = CHROMA444;
1576     int chroma422 = CHROMA422;
1577
1578     src_y  -= linesize;
1579     src_cb -= uvlinesize;
1580     src_cr -= uvlinesize;
1581
1582     if (!simple && FRAME_MBAFF) {
1583         if (s->mb_y & 1) {
1584             if (!MB_MBAFF) {
1585                 top_border = h->top_borders[0][s->mb_x];
1586                 AV_COPY128(top_border, src_y + 15 * linesize);
1587                 if (pixel_shift)
1588                     AV_COPY128(top_border + 16, src_y + 15 * linesize + 16);
1589                 if (simple || !CONFIG_GRAY || !(s->flags & CODEC_FLAG_GRAY)) {
1590                     if (chroma444) {
1591                         if (pixel_shift) {
1592                             AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
1593                             AV_COPY128(top_border + 48, src_cb + 15 * uvlinesize + 16);
1594                             AV_COPY128(top_border + 64, src_cr + 15 * uvlinesize);
1595                             AV_COPY128(top_border + 80, src_cr + 15 * uvlinesize + 16);
1596                         } else {
1597                             AV_COPY128(top_border + 16, src_cb + 15 * uvlinesize);
1598                             AV_COPY128(top_border + 32, src_cr + 15 * uvlinesize);
1599                         }
1600                     } else if (chroma422) {
1601                         if (pixel_shift) {
1602                             AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
1603                             AV_COPY128(top_border + 48, src_cr + 15 * uvlinesize);
1604                         } else {
1605                             AV_COPY64(top_border + 16, src_cb + 15 * uvlinesize);
1606                             AV_COPY64(top_border + 24, src_cr + 15 * uvlinesize);
1607                         }
1608                     } else {
1609                         if (pixel_shift) {
1610                             AV_COPY128(top_border + 32, src_cb + 7 * uvlinesize);
1611                             AV_COPY128(top_border + 48, src_cr + 7 * uvlinesize);
1612                         } else {
1613                             AV_COPY64(top_border + 16, src_cb + 7 * uvlinesize);
1614                             AV_COPY64(top_border + 24, src_cr + 7 * uvlinesize);
1615                         }
1616                     }
1617                 }
1618             }
1619         } else if (MB_MBAFF) {
1620             top_idx = 0;
1621         } else
1622             return;
1623     }
1624
1625     top_border = h->top_borders[top_idx][s->mb_x];
1626     /* There are two lines saved, the line above the top macroblock
1627      * of a pair, and the line above the bottom macroblock. */
1628     AV_COPY128(top_border, src_y + 16 * linesize);
1629     if (pixel_shift)
1630         AV_COPY128(top_border + 16, src_y + 16 * linesize + 16);
1631
1632     if (simple || !CONFIG_GRAY || !(s->flags & CODEC_FLAG_GRAY)) {
1633         if (chroma444) {
1634             if (pixel_shift) {
1635                 AV_COPY128(top_border + 32, src_cb + 16 * linesize);
1636                 AV_COPY128(top_border + 48, src_cb + 16 * linesize + 16);
1637                 AV_COPY128(top_border + 64, src_cr + 16 * linesize);
1638                 AV_COPY128(top_border + 80, src_cr + 16 * linesize + 16);
1639             } else {
1640                 AV_COPY128(top_border + 16, src_cb + 16 * linesize);
1641                 AV_COPY128(top_border + 32, src_cr + 16 * linesize);
1642             }
1643         } else if (chroma422) {
1644             if (pixel_shift) {
1645                 AV_COPY128(top_border + 32, src_cb + 16 * uvlinesize);
1646                 AV_COPY128(top_border + 48, src_cr + 16 * uvlinesize);
1647             } else {
1648                 AV_COPY64(top_border + 16, src_cb + 16 * uvlinesize);
1649                 AV_COPY64(top_border + 24, src_cr + 16 * uvlinesize);
1650             }
1651         } else {
1652             if (pixel_shift) {
1653                 AV_COPY128(top_border + 32, src_cb + 8 * uvlinesize);
1654                 AV_COPY128(top_border + 48, src_cr + 8 * uvlinesize);
1655             } else {
1656                 AV_COPY64(top_border + 16, src_cb + 8 * uvlinesize);
1657                 AV_COPY64(top_border + 24, src_cr + 8 * uvlinesize);
1658             }
1659         }
1660     }
1661 }
1662
1663 static av_always_inline void xchg_mb_border(H264Context *h, uint8_t *src_y,
1664                                             uint8_t *src_cb, uint8_t *src_cr,
1665                                             int linesize, int uvlinesize,
1666                                             int xchg, int chroma444,
1667                                             int simple, int pixel_shift)
1668 {
1669     MpegEncContext *const s = &h->s;
1670     int deblock_topleft;
1671     int deblock_top;
1672     int top_idx = 1;
1673     uint8_t *top_border_m1;
1674     uint8_t *top_border;
1675
1676     if (!simple && FRAME_MBAFF) {
1677         if (s->mb_y & 1) {
1678             if (!MB_MBAFF)
1679                 return;
1680         } else {
1681             top_idx = MB_MBAFF ? 0 : 1;
1682         }
1683     }
1684
1685     if (h->deblocking_filter == 2) {
1686         deblock_topleft = h->slice_table[h->mb_xy - 1 - s->mb_stride] == h->slice_num;
1687         deblock_top     = h->top_type;
1688     } else {
1689         deblock_topleft = (s->mb_x > 0);
1690         deblock_top     = (s->mb_y > !!MB_FIELD);
1691     }
1692
1693     src_y  -= linesize   + 1 + pixel_shift;
1694     src_cb -= uvlinesize + 1 + pixel_shift;
1695     src_cr -= uvlinesize + 1 + pixel_shift;
1696
1697     top_border_m1 = h->top_borders[top_idx][s->mb_x - 1];
1698     top_border    = h->top_borders[top_idx][s->mb_x];
1699
1700 #define XCHG(a, b, xchg)                        \
1701     if (pixel_shift) {                          \
1702         if (xchg) {                             \
1703             AV_SWAP64(b + 0, a + 0);            \
1704             AV_SWAP64(b + 8, a + 8);            \
1705         } else {                                \
1706             AV_COPY128(b, a);                   \
1707         }                                       \
1708     } else if (xchg)                            \
1709         AV_SWAP64(b, a);                        \
1710     else                                        \
1711         AV_COPY64(b, a);
1712
1713     if (deblock_top) {
1714         if (deblock_topleft) {
1715             XCHG(top_border_m1 + (8 << pixel_shift),
1716                  src_y - (7 << pixel_shift), 1);
1717         }
1718         XCHG(top_border + (0 << pixel_shift), src_y + (1 << pixel_shift), xchg);
1719         XCHG(top_border + (8 << pixel_shift), src_y + (9 << pixel_shift), 1);
1720         if (s->mb_x + 1 < s->mb_width) {
1721             XCHG(h->top_borders[top_idx][s->mb_x + 1],
1722                  src_y + (17 << pixel_shift), 1);
1723         }
1724     }
1725     if (simple || !CONFIG_GRAY || !(s->flags & CODEC_FLAG_GRAY)) {
1726         if (chroma444) {
1727             if (deblock_topleft) {
1728                 XCHG(top_border_m1 + (24 << pixel_shift), src_cb - (7 << pixel_shift), 1);
1729                 XCHG(top_border_m1 + (40 << pixel_shift), src_cr - (7 << pixel_shift), 1);
1730             }
1731             XCHG(top_border + (16 << pixel_shift), src_cb + (1 << pixel_shift), xchg);
1732             XCHG(top_border + (24 << pixel_shift), src_cb + (9 << pixel_shift), 1);
1733             XCHG(top_border + (32 << pixel_shift), src_cr + (1 << pixel_shift), xchg);
1734             XCHG(top_border + (40 << pixel_shift), src_cr + (9 << pixel_shift), 1);
1735             if (s->mb_x + 1 < s->mb_width) {
1736                 XCHG(h->top_borders[top_idx][s->mb_x + 1] + (16 << pixel_shift), src_cb + (17 << pixel_shift), 1);
1737                 XCHG(h->top_borders[top_idx][s->mb_x + 1] + (32 << pixel_shift), src_cr + (17 << pixel_shift), 1);
1738             }
1739         } else {
1740             if (deblock_top) {
1741                 if (deblock_topleft) {
1742                     XCHG(top_border_m1 + (16 << pixel_shift), src_cb - (7 << pixel_shift), 1);
1743                     XCHG(top_border_m1 + (24 << pixel_shift), src_cr - (7 << pixel_shift), 1);
1744                 }
1745                 XCHG(top_border + (16 << pixel_shift), src_cb + 1 + pixel_shift, 1);
1746                 XCHG(top_border + (24 << pixel_shift), src_cr + 1 + pixel_shift, 1);
1747             }
1748         }
1749     }
1750 }
1751
1752 static av_always_inline int dctcoef_get(DCTELEM *mb, int high_bit_depth,
1753                                         int index)
1754 {
1755     if (high_bit_depth) {
1756         return AV_RN32A(((int32_t *)mb) + index);
1757     } else
1758         return AV_RN16A(mb + index);
1759 }
1760
1761 static av_always_inline void dctcoef_set(DCTELEM *mb, int high_bit_depth,
1762                                          int index, int value)
1763 {
1764     if (high_bit_depth) {
1765         AV_WN32A(((int32_t *)mb) + index, value);
1766     } else
1767         AV_WN16A(mb + index, value);
1768 }
1769
1770 static av_always_inline void hl_decode_mb_predict_luma(H264Context *h,
1771                                                        int mb_type, int is_h264,
1772                                                        int simple,
1773                                                        int transform_bypass,
1774                                                        int pixel_shift,
1775                                                        int *block_offset,
1776                                                        int linesize,
1777                                                        uint8_t *dest_y, int p)
1778 {
1779     MpegEncContext *const s = &h->s;
1780     void (*idct_add)(uint8_t *dst, DCTELEM *block, int stride);
1781     void (*idct_dc_add)(uint8_t *dst, DCTELEM *block, int stride);
1782     int i;
1783     int qscale = p == 0 ? s->qscale : h->chroma_qp[p - 1];
1784     block_offset += 16 * p;
1785     if (IS_INTRA4x4(mb_type)) {
1786         if (simple || !s->encoding) {
1787             if (IS_8x8DCT(mb_type)) {
1788                 if (transform_bypass) {
1789                     idct_dc_add  =
1790                     idct_add     = s->dsp.add_pixels8;
1791                 } else {
1792                     idct_dc_add = h->h264dsp.h264_idct8_dc_add;
1793                     idct_add    = h->h264dsp.h264_idct8_add;
1794                 }
1795                 for (i = 0; i < 16; i += 4) {
1796                     uint8_t *const ptr = dest_y + block_offset[i];
1797                     const int dir      = h->intra4x4_pred_mode_cache[scan8[i]];
1798                     if (transform_bypass && h->sps.profile_idc == 244 && dir <= 1) {
1799                         h->hpc.pred8x8l_add[dir](ptr, h->mb + (i * 16 + p * 256 << pixel_shift), linesize);
1800                     } else {
1801                         const int nnz = h->non_zero_count_cache[scan8[i + p * 16]];
1802                         h->hpc.pred8x8l[dir](ptr, (h->topleft_samples_available << i) & 0x8000,
1803                                              (h->topright_samples_available << i) & 0x4000, linesize);
1804                         if (nnz) {
1805                             if (nnz == 1 && dctcoef_get(h->mb, pixel_shift, i * 16 + p * 256))
1806                                 idct_dc_add(ptr, h->mb + (i * 16 + p * 256 << pixel_shift), linesize);
1807                             else
1808                                 idct_add(ptr, h->mb + (i * 16 + p * 256 << pixel_shift), linesize);
1809                         }
1810                     }
1811                 }
1812             } else {
1813                 if (transform_bypass) {
1814                     idct_dc_add  =
1815                         idct_add = s->dsp.add_pixels4;
1816                 } else {
1817                     idct_dc_add = h->h264dsp.h264_idct_dc_add;
1818                     idct_add    = h->h264dsp.h264_idct_add;
1819                 }
1820                 for (i = 0; i < 16; i++) {
1821                     uint8_t *const ptr = dest_y + block_offset[i];
1822                     const int dir      = h->intra4x4_pred_mode_cache[scan8[i]];
1823
1824                     if (transform_bypass && h->sps.profile_idc == 244 && dir <= 1) {
1825                         h->hpc.pred4x4_add[dir](ptr, h->mb + (i * 16 + p * 256 << pixel_shift), linesize);
1826                     } else {
1827                         uint8_t *topright;
1828                         int nnz, tr;
1829                         uint64_t tr_high;
1830                         if (dir == DIAG_DOWN_LEFT_PRED || dir == VERT_LEFT_PRED) {
1831                             const int topright_avail = (h->topright_samples_available << i) & 0x8000;
1832                             assert(s->mb_y || linesize <= block_offset[i]);
1833                             if (!topright_avail) {
1834                                 if (pixel_shift) {
1835                                     tr_high  = ((uint16_t *)ptr)[3 - linesize / 2] * 0x0001000100010001ULL;
1836                                     topright = (uint8_t *)&tr_high;
1837                                 } else {
1838                                     tr       = ptr[3 - linesize] * 0x01010101u;
1839                                     topright = (uint8_t *)&tr;
1840                                 }
1841                             } else
1842                                 topright = ptr + (4 << pixel_shift) - linesize;
1843                         } else
1844                             topright = NULL;
1845
1846                         h->hpc.pred4x4[dir](ptr, topright, linesize);
1847                         nnz = h->non_zero_count_cache[scan8[i + p * 16]];
1848                         if (nnz) {
1849                             if (is_h264) {
1850                                 if (nnz == 1 && dctcoef_get(h->mb, pixel_shift, i * 16 + p * 256))
1851                                     idct_dc_add(ptr, h->mb + (i * 16 + p * 256 << pixel_shift), linesize);
1852                                 else
1853                                     idct_add(ptr, h->mb + (i * 16 + p * 256 << pixel_shift), linesize);
1854                             } else if (CONFIG_SVQ3_DECODER)
1855                                 ff_svq3_add_idct_c(ptr, h->mb + i * 16 + p * 256, linesize, qscale, 0);
1856                         }
1857                     }
1858                 }
1859             }
1860         }
1861     } else {
1862         h->hpc.pred16x16[h->intra16x16_pred_mode](dest_y, linesize);
1863         if (is_h264) {
1864             if (h->non_zero_count_cache[scan8[LUMA_DC_BLOCK_INDEX + p]]) {
1865                 if (!transform_bypass)
1866                     h->h264dsp.h264_luma_dc_dequant_idct(h->mb + (p * 256 << pixel_shift),
1867                                                          h->mb_luma_dc[p],
1868                                                          h->dequant4_coeff[p][qscale][0]);
1869                 else {
1870                     static const uint8_t dc_mapping[16] = {
1871                          0 * 16,  1 * 16,  4 * 16,  5 * 16,
1872                          2 * 16,  3 * 16,  6 * 16,  7 * 16,
1873                          8 * 16,  9 * 16, 12 * 16, 13 * 16,
1874                         10 * 16, 11 * 16, 14 * 16, 15 * 16 };
1875                     for (i = 0; i < 16; i++)
1876                         dctcoef_set(h->mb + (p * 256 << pixel_shift),
1877                                     pixel_shift, dc_mapping[i],
1878                                     dctcoef_get(h->mb_luma_dc[p],
1879                                                 pixel_shift, i));
1880                 }
1881             }
1882         } else if (CONFIG_SVQ3_DECODER)
1883             ff_svq3_luma_dc_dequant_idct_c(h->mb + p * 256,
1884                                            h->mb_luma_dc[p], qscale);
1885     }
1886 }
1887
1888 static av_always_inline void hl_decode_mb_idct_luma(H264Context *h, int mb_type,
1889                                                     int is_h264, int simple,
1890                                                     int transform_bypass,
1891                                                     int pixel_shift,
1892                                                     int *block_offset,
1893                                                     int linesize,
1894                                                     uint8_t *dest_y, int p)
1895 {
1896     MpegEncContext *const s = &h->s;
1897     void (*idct_add)(uint8_t *dst, DCTELEM *block, int stride);
1898     int i;
1899     block_offset += 16 * p;
1900     if (!IS_INTRA4x4(mb_type)) {
1901         if (is_h264) {
1902             if (IS_INTRA16x16(mb_type)) {
1903                 if (transform_bypass) {
1904                     if (h->sps.profile_idc == 244 &&
1905                         (h->intra16x16_pred_mode == VERT_PRED8x8 ||
1906                          h->intra16x16_pred_mode == HOR_PRED8x8)) {
1907                         h->hpc.pred16x16_add[h->intra16x16_pred_mode](dest_y, block_offset,
1908                                                                       h->mb + (p * 256 << pixel_shift),
1909                                                                       linesize);
1910                     } else {
1911                         for (i = 0; i < 16; i++)
1912                             if (h->non_zero_count_cache[scan8[i + p * 16]] ||
1913                                 dctcoef_get(h->mb, pixel_shift, i * 16 + p * 256))
1914                                 s->dsp.add_pixels4(dest_y + block_offset[i],
1915                                                    h->mb + (i * 16 + p * 256 << pixel_shift),
1916                                                    linesize);
1917                     }
1918                 } else {
1919                     h->h264dsp.h264_idct_add16intra(dest_y, block_offset,
1920                                                     h->mb + (p * 256 << pixel_shift),
1921                                                     linesize,
1922                                                     h->non_zero_count_cache + p * 5 * 8);
1923                 }
1924             } else if (h->cbp & 15) {
1925                 if (transform_bypass) {
1926                     const int di = IS_8x8DCT(mb_type) ? 4 : 1;
1927                     idct_add = IS_8x8DCT(mb_type) ? s->dsp.add_pixels8
1928                                                   : s->dsp.add_pixels4;
1929                     for (i = 0; i < 16; i += di)
1930                         if (h->non_zero_count_cache[scan8[i + p * 16]])
1931                             idct_add(dest_y + block_offset[i],
1932                                      h->mb + (i * 16 + p * 256 << pixel_shift),
1933                                      linesize);
1934                 } else {
1935                     if (IS_8x8DCT(mb_type))
1936                         h->h264dsp.h264_idct8_add4(dest_y, block_offset,
1937                                                    h->mb + (p * 256 << pixel_shift),
1938                                                    linesize,
1939                                                    h->non_zero_count_cache + p * 5 * 8);
1940                     else
1941                         h->h264dsp.h264_idct_add16(dest_y, block_offset,
1942                                                    h->mb + (p * 256 << pixel_shift),
1943                                                    linesize,
1944                                                    h->non_zero_count_cache + p * 5 * 8);
1945                 }
1946             }
1947         } else if (CONFIG_SVQ3_DECODER) {
1948             for (i = 0; i < 16; i++)
1949                 if (h->non_zero_count_cache[scan8[i + p * 16]] || h->mb[i * 16 + p * 256]) {
1950                     // FIXME benchmark weird rule, & below
1951                     uint8_t *const ptr = dest_y + block_offset[i];
1952                     ff_svq3_add_idct_c(ptr, h->mb + i * 16 + p * 256, linesize,
1953                                        s->qscale, IS_INTRA(mb_type) ? 1 : 0);
1954                 }
1955         }
1956     }
1957 }
1958
1959 #define BITS   8
1960 #define SIMPLE 1
1961 #include "h264_mb_template.c"
1962
1963 #undef  BITS
1964 #define BITS   16
1965 #include "h264_mb_template.c"
1966
1967 #undef  SIMPLE
1968 #define SIMPLE 0
1969 #include "h264_mb_template.c"
1970
1971 void ff_h264_hl_decode_mb(H264Context *h)
1972 {
1973     MpegEncContext *const s = &h->s;
1974     const int mb_xy   = h->mb_xy;
1975     const int mb_type = s->current_picture.f.mb_type[mb_xy];
1976     int is_complex    = CONFIG_SMALL || h->is_complex || IS_INTRA_PCM(mb_type) || s->qscale == 0;
1977
1978     if (CHROMA444) {
1979         if (is_complex || h->pixel_shift)
1980             hl_decode_mb_444_complex(h);
1981         else
1982             hl_decode_mb_444_simple_8(h);
1983     } else if (is_complex) {
1984         hl_decode_mb_complex(h);
1985     } else if (h->pixel_shift) {
1986         hl_decode_mb_simple_16(h);
1987     } else
1988         hl_decode_mb_simple_8(h);
1989 }
1990
1991 static int pred_weight_table(H264Context *h)
1992 {
1993     MpegEncContext *const s = &h->s;
1994     int list, i;
1995     int luma_def, chroma_def;
1996
1997     h->use_weight             = 0;
1998     h->use_weight_chroma      = 0;
1999     h->luma_log2_weight_denom = get_ue_golomb(&s->gb);
2000     if (h->sps.chroma_format_idc)
2001         h->chroma_log2_weight_denom = get_ue_golomb(&s->gb);
2002     luma_def   = 1 << h->luma_log2_weight_denom;
2003     chroma_def = 1 << h->chroma_log2_weight_denom;
2004
2005     for (list = 0; list < 2; list++) {
2006         h->luma_weight_flag[list]   = 0;
2007         h->chroma_weight_flag[list] = 0;
2008         for (i = 0; i < h->ref_count[list]; i++) {
2009             int luma_weight_flag, chroma_weight_flag;
2010
2011             luma_weight_flag = get_bits1(&s->gb);
2012             if (luma_weight_flag) {
2013                 h->luma_weight[i][list][0] = get_se_golomb(&s->gb);
2014                 h->luma_weight[i][list][1] = get_se_golomb(&s->gb);
2015                 if (h->luma_weight[i][list][0] != luma_def ||
2016                     h->luma_weight[i][list][1] != 0) {
2017                     h->use_weight             = 1;
2018                     h->luma_weight_flag[list] = 1;
2019                 }
2020             } else {
2021                 h->luma_weight[i][list][0] = luma_def;
2022                 h->luma_weight[i][list][1] = 0;
2023             }
2024
2025             if (h->sps.chroma_format_idc) {
2026                 chroma_weight_flag = get_bits1(&s->gb);
2027                 if (chroma_weight_flag) {
2028                     int j;
2029                     for (j = 0; j < 2; j++) {
2030                         h->chroma_weight[i][list][j][0] = get_se_golomb(&s->gb);
2031                         h->chroma_weight[i][list][j][1] = get_se_golomb(&s->gb);
2032                         if (h->chroma_weight[i][list][j][0] != chroma_def ||
2033                             h->chroma_weight[i][list][j][1] != 0) {
2034                             h->use_weight_chroma = 1;
2035                             h->chroma_weight_flag[list] = 1;
2036                         }
2037                     }
2038                 } else {
2039                     int j;
2040                     for (j = 0; j < 2; j++) {
2041                         h->chroma_weight[i][list][j][0] = chroma_def;
2042                         h->chroma_weight[i][list][j][1] = 0;
2043                     }
2044                 }
2045             }
2046         }
2047         if (h->slice_type_nos != AV_PICTURE_TYPE_B)
2048             break;
2049     }
2050     h->use_weight = h->use_weight || h->use_weight_chroma;
2051     return 0;
2052 }
2053
2054 /**
2055  * Initialize implicit_weight table.
2056  * @param field  0/1 initialize the weight for interlaced MBAFF
2057  *                -1 initializes the rest
2058  */
2059 static void implicit_weight_table(H264Context *h, int field)
2060 {
2061     MpegEncContext *const s = &h->s;
2062     int ref0, ref1, i, cur_poc, ref_start, ref_count0, ref_count1;
2063
2064     for (i = 0; i < 2; i++) {
2065         h->luma_weight_flag[i]   = 0;
2066         h->chroma_weight_flag[i] = 0;
2067     }
2068
2069     if (field < 0) {
2070         if (s->picture_structure == PICT_FRAME) {
2071             cur_poc = s->current_picture_ptr->poc;
2072         } else {
2073             cur_poc = s->current_picture_ptr->field_poc[s->picture_structure - 1];
2074         }
2075         if (h->ref_count[0] == 1 && h->ref_count[1] == 1 && !FRAME_MBAFF &&
2076             h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2 * cur_poc) {
2077             h->use_weight = 0;
2078             h->use_weight_chroma = 0;
2079             return;
2080         }
2081         ref_start  = 0;
2082         ref_count0 = h->ref_count[0];
2083         ref_count1 = h->ref_count[1];
2084     } else {
2085         cur_poc    = s->current_picture_ptr->field_poc[field];
2086         ref_start  = 16;
2087         ref_count0 = 16 + 2 * h->ref_count[0];
2088         ref_count1 = 16 + 2 * h->ref_count[1];
2089     }
2090
2091     h->use_weight               = 2;
2092     h->use_weight_chroma        = 2;
2093     h->luma_log2_weight_denom   = 5;
2094     h->chroma_log2_weight_denom = 5;
2095
2096     for (ref0 = ref_start; ref0 < ref_count0; ref0++) {
2097         int poc0 = h->ref_list[0][ref0].poc;
2098         for (ref1 = ref_start; ref1 < ref_count1; ref1++) {
2099             int w = 32;
2100             if (!h->ref_list[0][ref0].long_ref && !h->ref_list[1][ref1].long_ref) {
2101                 int poc1 = h->ref_list[1][ref1].poc;
2102                 int td   = av_clip(poc1 - poc0, -128, 127);
2103                 if (td) {
2104                     int tb = av_clip(cur_poc - poc0, -128, 127);
2105                     int tx = (16384 + (FFABS(td) >> 1)) / td;
2106                     int dist_scale_factor = (tb * tx + 32) >> 8;
2107                     if (dist_scale_factor >= -64 && dist_scale_factor <= 128)
2108                         w = 64 - dist_scale_factor;
2109                 }
2110             }
2111             if (field < 0) {
2112                 h->implicit_weight[ref0][ref1][0] =
2113                 h->implicit_weight[ref0][ref1][1] = w;
2114             } else {
2115                 h->implicit_weight[ref0][ref1][field] = w;
2116             }
2117         }
2118     }
2119 }
2120
2121 /**
2122  * instantaneous decoder refresh.
2123  */
2124 static void idr(H264Context *h)
2125 {
2126     ff_h264_remove_all_refs(h);
2127     h->prev_frame_num        = 0;
2128     h->prev_frame_num_offset = 0;
2129     h->prev_poc_msb          =
2130     h->prev_poc_lsb          = 0;
2131 }
2132
2133 /* forget old pics after a seek */
2134 static void flush_change(H264Context *h)
2135 {
2136     int i;
2137     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
2138         h->last_pocs[i] = INT_MIN;
2139     h->outputed_poc = h->next_outputed_poc = INT_MIN;
2140     h->prev_interlaced_frame = 1;
2141     idr(h);
2142     if (h->s.current_picture_ptr)
2143         h->s.current_picture_ptr->f.reference = 0;
2144     h->s.first_field = 0;
2145     memset(h->ref_list[0], 0, sizeof(h->ref_list[0]));
2146     memset(h->ref_list[1], 0, sizeof(h->ref_list[1]));
2147     memset(h->default_ref_list[0], 0, sizeof(h->default_ref_list[0]));
2148     memset(h->default_ref_list[1], 0, sizeof(h->default_ref_list[1]));
2149     ff_h264_reset_sei(h);
2150 }
2151
2152 /* forget old pics after a seek */
2153 static void flush_dpb(AVCodecContext *avctx)
2154 {
2155     H264Context *h = avctx->priv_data;
2156     int i;
2157
2158     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++) {
2159         if (h->delayed_pic[i])
2160             h->delayed_pic[i]->f.reference = 0;
2161         h->delayed_pic[i] = NULL;
2162     }
2163
2164     flush_change(h);
2165     ff_mpeg_flush(avctx);
2166 }
2167
2168 static int init_poc(H264Context *h)
2169 {
2170     MpegEncContext *const s = &h->s;
2171     const int max_frame_num = 1 << h->sps.log2_max_frame_num;
2172     int field_poc[2];
2173     Picture *cur = s->current_picture_ptr;
2174
2175     h->frame_num_offset = h->prev_frame_num_offset;
2176     if (h->frame_num < h->prev_frame_num)
2177         h->frame_num_offset += max_frame_num;
2178
2179     if (h->sps.poc_type == 0) {
2180         const int max_poc_lsb = 1 << h->sps.log2_max_poc_lsb;
2181
2182         if (h->poc_lsb < h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb >= max_poc_lsb / 2)
2183             h->poc_msb = h->prev_poc_msb + max_poc_lsb;
2184         else if (h->poc_lsb > h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb < -max_poc_lsb / 2)
2185             h->poc_msb = h->prev_poc_msb - max_poc_lsb;
2186         else
2187             h->poc_msb = h->prev_poc_msb;
2188         field_poc[0] =
2189         field_poc[1] = h->poc_msb + h->poc_lsb;
2190         if (s->picture_structure == PICT_FRAME)
2191             field_poc[1] += h->delta_poc_bottom;
2192     } else if (h->sps.poc_type == 1) {
2193         int abs_frame_num, expected_delta_per_poc_cycle, expectedpoc;
2194         int i;
2195
2196         if (h->sps.poc_cycle_length != 0)
2197             abs_frame_num = h->frame_num_offset + h->frame_num;
2198         else
2199             abs_frame_num = 0;
2200
2201         if (h->nal_ref_idc == 0 && abs_frame_num > 0)
2202             abs_frame_num--;
2203
2204         expected_delta_per_poc_cycle = 0;
2205         for (i = 0; i < h->sps.poc_cycle_length; i++)
2206             // FIXME integrate during sps parse
2207             expected_delta_per_poc_cycle += h->sps.offset_for_ref_frame[i];
2208
2209         if (abs_frame_num > 0) {
2210             int poc_cycle_cnt          = (abs_frame_num - 1) / h->sps.poc_cycle_length;
2211             int frame_num_in_poc_cycle = (abs_frame_num - 1) % h->sps.poc_cycle_length;
2212
2213             expectedpoc = poc_cycle_cnt * expected_delta_per_poc_cycle;
2214             for (i = 0; i <= frame_num_in_poc_cycle; i++)
2215                 expectedpoc = expectedpoc + h->sps.offset_for_ref_frame[i];
2216         } else
2217             expectedpoc = 0;
2218
2219         if (h->nal_ref_idc == 0)
2220             expectedpoc = expectedpoc + h->sps.offset_for_non_ref_pic;
2221
2222         field_poc[0] = expectedpoc + h->delta_poc[0];
2223         field_poc[1] = field_poc[0] + h->sps.offset_for_top_to_bottom_field;
2224
2225         if (s->picture_structure == PICT_FRAME)
2226             field_poc[1] += h->delta_poc[1];
2227     } else {
2228         int poc = 2 * (h->frame_num_offset + h->frame_num);
2229
2230         if (!h->nal_ref_idc)
2231             poc--;
2232
2233         field_poc[0] = poc;
2234         field_poc[1] = poc;
2235     }
2236
2237     if (s->picture_structure != PICT_BOTTOM_FIELD)
2238         s->current_picture_ptr->field_poc[0] = field_poc[0];
2239     if (s->picture_structure != PICT_TOP_FIELD)
2240         s->current_picture_ptr->field_poc[1] = field_poc[1];
2241     cur->poc = FFMIN(cur->field_poc[0], cur->field_poc[1]);
2242
2243     return 0;
2244 }
2245
2246 /**
2247  * initialize scan tables
2248  */
2249 static void init_scan_tables(H264Context *h)
2250 {
2251     int i;
2252     for (i = 0; i < 16; i++) {
2253 #define T(x) (x >> 2) | ((x << 2) & 0xF)
2254         h->zigzag_scan[i] = T(zigzag_scan[i]);
2255         h->field_scan[i]  = T(field_scan[i]);
2256 #undef T
2257     }
2258     for (i = 0; i < 64; i++) {
2259 #define T(x) (x >> 3) | ((x & 7) << 3)
2260         h->zigzag_scan8x8[i]       = T(ff_zigzag_direct[i]);
2261         h->zigzag_scan8x8_cavlc[i] = T(zigzag_scan8x8_cavlc[i]);
2262         h->field_scan8x8[i]        = T(field_scan8x8[i]);
2263         h->field_scan8x8_cavlc[i]  = T(field_scan8x8_cavlc[i]);
2264 #undef T
2265     }
2266     if (h->sps.transform_bypass) { // FIXME same ugly
2267         h->zigzag_scan_q0          = zigzag_scan;
2268         h->zigzag_scan8x8_q0       = ff_zigzag_direct;
2269         h->zigzag_scan8x8_cavlc_q0 = zigzag_scan8x8_cavlc;
2270         h->field_scan_q0           = field_scan;
2271         h->field_scan8x8_q0        = field_scan8x8;
2272         h->field_scan8x8_cavlc_q0  = field_scan8x8_cavlc;
2273     } else {
2274         h->zigzag_scan_q0          = h->zigzag_scan;
2275         h->zigzag_scan8x8_q0       = h->zigzag_scan8x8;
2276         h->zigzag_scan8x8_cavlc_q0 = h->zigzag_scan8x8_cavlc;
2277         h->field_scan_q0           = h->field_scan;
2278         h->field_scan8x8_q0        = h->field_scan8x8;
2279         h->field_scan8x8_cavlc_q0  = h->field_scan8x8_cavlc;
2280     }
2281 }
2282
2283 static int field_end(H264Context *h, int in_setup)
2284 {
2285     MpegEncContext *const s     = &h->s;
2286     AVCodecContext *const avctx = s->avctx;
2287     int err = 0;
2288     s->mb_y = 0;
2289
2290     if (!in_setup && !s->droppable)
2291         ff_thread_report_progress(&s->current_picture_ptr->f, INT_MAX,
2292                                   s->picture_structure == PICT_BOTTOM_FIELD);
2293
2294     if (CONFIG_H264_VDPAU_DECODER &&
2295         s->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
2296         ff_vdpau_h264_set_reference_frames(s);
2297
2298     if (in_setup || !(avctx->active_thread_type & FF_THREAD_FRAME)) {
2299         if (!s->droppable) {
2300             err = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
2301             h->prev_poc_msb = h->poc_msb;
2302             h->prev_poc_lsb = h->poc_lsb;
2303         }
2304         h->prev_frame_num_offset = h->frame_num_offset;
2305         h->prev_frame_num        = h->frame_num;
2306         h->outputed_poc          = h->next_outputed_poc;
2307     }
2308
2309     if (avctx->hwaccel) {
2310         if (avctx->hwaccel->end_frame(avctx) < 0)
2311             av_log(avctx, AV_LOG_ERROR,
2312                    "hardware accelerator failed to decode picture\n");
2313     }
2314
2315     if (CONFIG_H264_VDPAU_DECODER &&
2316         s->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
2317         ff_vdpau_h264_picture_complete(s);
2318
2319     /*
2320      * FIXME: Error handling code does not seem to support interlaced
2321      * when slices span multiple rows
2322      * The ff_er_add_slice calls don't work right for bottom
2323      * fields; they cause massive erroneous error concealing
2324      * Error marking covers both fields (top and bottom).
2325      * This causes a mismatched s->error_count
2326      * and a bad error table. Further, the error count goes to
2327      * INT_MAX when called for bottom field, because mb_y is
2328      * past end by one (callers fault) and resync_mb_y != 0
2329      * causes problems for the first MB line, too.
2330      */
2331     if (!FIELD_PICTURE)
2332         ff_er_frame_end(s);
2333
2334     ff_MPV_frame_end(s);
2335
2336     h->current_slice = 0;
2337
2338     return err;
2339 }
2340
2341 /**
2342  * Replicate H264 "master" context to thread contexts.
2343  */
2344 static int clone_slice(H264Context *dst, H264Context *src)
2345 {
2346     int ret;
2347
2348     memcpy(dst->block_offset, src->block_offset, sizeof(dst->block_offset));
2349     dst->s.current_picture_ptr = src->s.current_picture_ptr;
2350     dst->s.current_picture     = src->s.current_picture;
2351     dst->s.linesize            = src->s.linesize;
2352     dst->s.uvlinesize          = src->s.uvlinesize;
2353     dst->s.first_field         = src->s.first_field;
2354
2355     if (!dst->s.edge_emu_buffer &&
2356         (ret = ff_mpv_frame_size_alloc(&dst->s, dst->s.linesize))) {
2357         av_log(dst->s.avctx, AV_LOG_ERROR,
2358                "Failed to allocate scratch buffers\n");
2359         return ret;
2360     }
2361
2362     dst->prev_poc_msb          = src->prev_poc_msb;
2363     dst->prev_poc_lsb          = src->prev_poc_lsb;
2364     dst->prev_frame_num_offset = src->prev_frame_num_offset;
2365     dst->prev_frame_num        = src->prev_frame_num;
2366     dst->short_ref_count       = src->short_ref_count;
2367
2368     memcpy(dst->short_ref,        src->short_ref,        sizeof(dst->short_ref));
2369     memcpy(dst->long_ref,         src->long_ref,         sizeof(dst->long_ref));
2370     memcpy(dst->default_ref_list, src->default_ref_list, sizeof(dst->default_ref_list));
2371     memcpy(dst->ref_list,         src->ref_list,         sizeof(dst->ref_list));
2372
2373     memcpy(dst->dequant4_coeff,   src->dequant4_coeff,   sizeof(src->dequant4_coeff));
2374     memcpy(dst->dequant8_coeff,   src->dequant8_coeff,   sizeof(src->dequant8_coeff));
2375
2376     return 0;
2377 }
2378
2379 /**
2380  * Compute profile from profile_idc and constraint_set?_flags.
2381  *
2382  * @param sps SPS
2383  *
2384  * @return profile as defined by FF_PROFILE_H264_*
2385  */
2386 int ff_h264_get_profile(SPS *sps)
2387 {
2388     int profile = sps->profile_idc;
2389
2390     switch (sps->profile_idc) {
2391     case FF_PROFILE_H264_BASELINE:
2392         // constraint_set1_flag set to 1
2393         profile |= (sps->constraint_set_flags & 1 << 1) ? FF_PROFILE_H264_CONSTRAINED : 0;
2394         break;
2395     case FF_PROFILE_H264_HIGH_10:
2396     case FF_PROFILE_H264_HIGH_422:
2397     case FF_PROFILE_H264_HIGH_444_PREDICTIVE:
2398         // constraint_set3_flag set to 1
2399         profile |= (sps->constraint_set_flags & 1 << 3) ? FF_PROFILE_H264_INTRA : 0;
2400         break;
2401     }
2402
2403     return profile;
2404 }
2405
2406 static int h264_set_parameter_from_sps(H264Context *h)
2407 {
2408     MpegEncContext *s = &h->s;
2409
2410     if (s->flags & CODEC_FLAG_LOW_DELAY ||
2411         (h->sps.bitstream_restriction_flag &&
2412          !h->sps.num_reorder_frames)) {
2413         if (s->avctx->has_b_frames > 1 || h->delayed_pic[0])
2414             av_log(h->s.avctx, AV_LOG_WARNING, "Delayed frames seen. "
2415                    "Reenabling low delay requires a codec flush.\n");
2416         else
2417             s->low_delay = 1;
2418     }
2419
2420     if (s->avctx->has_b_frames < 2)
2421         s->avctx->has_b_frames = !s->low_delay;
2422
2423     if (s->avctx->bits_per_raw_sample != h->sps.bit_depth_luma ||
2424         h->cur_chroma_format_idc      != h->sps.chroma_format_idc) {
2425         if (s->avctx->codec &&
2426             s->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU &&
2427             (h->sps.bit_depth_luma != 8 || h->sps.chroma_format_idc > 1)) {
2428             av_log(s->avctx, AV_LOG_ERROR,
2429                    "VDPAU decoding does not support video colorspace.\n");
2430             return AVERROR_INVALIDDATA;
2431         }
2432         if (h->sps.bit_depth_luma >= 8 && h->sps.bit_depth_luma <= 10) {
2433             s->avctx->bits_per_raw_sample = h->sps.bit_depth_luma;
2434             h->cur_chroma_format_idc      = h->sps.chroma_format_idc;
2435             h->pixel_shift                = h->sps.bit_depth_luma > 8;
2436
2437             ff_h264dsp_init(&h->h264dsp, h->sps.bit_depth_luma,
2438                             h->sps.chroma_format_idc);
2439             ff_h264_pred_init(&h->hpc, s->codec_id, h->sps.bit_depth_luma,
2440                               h->sps.chroma_format_idc);
2441             s->dsp.dct_bits = h->sps.bit_depth_luma > 8 ? 32 : 16;
2442             ff_dsputil_init(&s->dsp, s->avctx);
2443             ff_videodsp_init(&s->vdsp, h->sps.bit_depth_luma);
2444         } else {
2445             av_log(s->avctx, AV_LOG_ERROR, "Unsupported bit depth: %d\n",
2446                    h->sps.bit_depth_luma);
2447             return AVERROR_INVALIDDATA;
2448         }
2449     }
2450     return 0;
2451 }
2452
2453 static enum PixelFormat get_pixel_format(H264Context *h)
2454 {
2455     MpegEncContext *const s  = &h->s;
2456     switch (h->sps.bit_depth_luma) {
2457     case 9:
2458         if (CHROMA444) {
2459             if (s->avctx->colorspace == AVCOL_SPC_RGB) {
2460                 return AV_PIX_FMT_GBRP9;
2461             } else
2462                 return AV_PIX_FMT_YUV444P9;
2463         } else if (CHROMA422)
2464             return AV_PIX_FMT_YUV422P9;
2465         else
2466             return AV_PIX_FMT_YUV420P9;
2467         break;
2468     case 10:
2469         if (CHROMA444) {
2470             if (s->avctx->colorspace == AVCOL_SPC_RGB) {
2471                 return AV_PIX_FMT_GBRP10;
2472             } else
2473                 return AV_PIX_FMT_YUV444P10;
2474         } else if (CHROMA422)
2475             return AV_PIX_FMT_YUV422P10;
2476         else
2477             return AV_PIX_FMT_YUV420P10;
2478         break;
2479     case 8:
2480         if (CHROMA444) {
2481             if (s->avctx->colorspace == AVCOL_SPC_RGB) {
2482                 return AV_PIX_FMT_GBRP;
2483             } else
2484                 return s->avctx->color_range == AVCOL_RANGE_JPEG ? AV_PIX_FMT_YUVJ444P
2485                                                                  : AV_PIX_FMT_YUV444P;
2486         } else if (CHROMA422) {
2487             return s->avctx->color_range == AVCOL_RANGE_JPEG ? AV_PIX_FMT_YUVJ422P
2488                                                              : AV_PIX_FMT_YUV422P;
2489         } else {
2490             return s->avctx->get_format(s->avctx, s->avctx->codec->pix_fmts ?
2491                                         s->avctx->codec->pix_fmts :
2492                                         s->avctx->color_range == AVCOL_RANGE_JPEG ?
2493                                         hwaccel_pixfmt_list_h264_jpeg_420 :
2494                                         ff_hwaccel_pixfmt_list_420);
2495         }
2496         break;
2497     default:
2498         av_log(s->avctx, AV_LOG_ERROR,
2499                "Unsupported bit depth: %d\n", h->sps.bit_depth_luma);
2500         return AVERROR_INVALIDDATA;
2501     }
2502 }
2503
2504 static int h264_slice_header_init(H264Context *h, int reinit)
2505 {
2506     MpegEncContext *const s  = &h->s;
2507     int i, ret;
2508
2509     avcodec_set_dimensions(s->avctx, s->width, s->height);
2510     s->avctx->sample_aspect_ratio = h->sps.sar;
2511     av_assert0(s->avctx->sample_aspect_ratio.den);
2512
2513     if (h->sps.timing_info_present_flag) {
2514         int64_t den = h->sps.time_scale;
2515         if (h->x264_build < 44U)
2516             den *= 2;
2517         av_reduce(&s->avctx->time_base.num, &s->avctx->time_base.den,
2518                   h->sps.num_units_in_tick, den, 1 << 30);
2519     }
2520
2521     s->avctx->hwaccel = ff_find_hwaccel(s->avctx->codec->id, s->avctx->pix_fmt);
2522
2523     if (reinit) {
2524         free_tables(h, 0);
2525         if ((ret = ff_MPV_common_frame_size_change(s)) < 0) {
2526             av_log(h->s.avctx, AV_LOG_ERROR, "ff_MPV_common_frame_size_change() failed.\n");
2527             return ret;
2528         }
2529     } else {
2530         if ((ret = ff_MPV_common_init(s) < 0)) {
2531             av_log(h->s.avctx, AV_LOG_ERROR, "ff_MPV_common_init() failed.\n");
2532             return ret;
2533         }
2534     }
2535     s->first_field = 0;
2536     h->prev_interlaced_frame = 1;
2537
2538     init_scan_tables(h);
2539     if (ff_h264_alloc_tables(h) < 0) {
2540         av_log(h->s.avctx, AV_LOG_ERROR,
2541                "Could not allocate memory for h264\n");
2542         return AVERROR(ENOMEM);
2543     }
2544
2545     if (!HAVE_THREADS || !(s->avctx->active_thread_type & FF_THREAD_SLICE)) {
2546         if (context_init(h) < 0) {
2547             av_log(h->s.avctx, AV_LOG_ERROR, "context_init() failed.\n");
2548             return -1;
2549         }
2550     } else {
2551         for (i = 1; i < s->slice_context_count; i++) {
2552             H264Context *c;
2553             c = h->thread_context[i] = av_malloc(sizeof(H264Context));
2554             memcpy(c, h->s.thread_context[i], sizeof(MpegEncContext));
2555             memset(&c->s + 1, 0, sizeof(H264Context) - sizeof(MpegEncContext));
2556             c->h264dsp     = h->h264dsp;
2557             c->sps         = h->sps;
2558             c->pps         = h->pps;
2559             c->pixel_shift = h->pixel_shift;
2560             init_scan_tables(c);
2561             clone_tables(c, h, i);
2562         }
2563
2564         for (i = 0; i < s->slice_context_count; i++)
2565             if (context_init(h->thread_context[i]) < 0) {
2566                 av_log(h->s.avctx, AV_LOG_ERROR, "context_init() failed.\n");
2567                 return -1;
2568             }
2569     }
2570
2571     return 0;
2572 }
2573
2574 /**
2575  * Decode a slice header.
2576  * This will also call ff_MPV_common_init() and frame_start() as needed.
2577  *
2578  * @param h h264context
2579  * @param h0 h264 master context (differs from 'h' when doing sliced based
2580  *           parallel decoding)
2581  *
2582  * @return 0 if okay, <0 if an error occurred, 1 if decoding must not be multithreaded
2583  */
2584 static int decode_slice_header(H264Context *h, H264Context *h0)
2585 {
2586     MpegEncContext *const s  = &h->s;
2587     MpegEncContext *const s0 = &h0->s;
2588     unsigned int first_mb_in_slice;
2589     unsigned int pps_id;
2590     int num_ref_idx_active_override_flag, max_refs, ret;
2591     unsigned int slice_type, tmp, i, j;
2592     int default_ref_list_done = 0;
2593     int last_pic_structure, last_pic_droppable;
2594     int needs_reinit = 0;
2595     enum AVPixelFormat pix_fmt;
2596
2597     /* FIXME: 2tap qpel isn't implemented for high bit depth. */
2598     if ((s->avctx->flags2 & CODEC_FLAG2_FAST) &&
2599         !h->nal_ref_idc && !h->pixel_shift) {
2600         s->me.qpel_put = s->dsp.put_2tap_qpel_pixels_tab;
2601         s->me.qpel_avg = s->dsp.avg_2tap_qpel_pixels_tab;
2602     } else {
2603         s->me.qpel_put = s->dsp.put_h264_qpel_pixels_tab;
2604         s->me.qpel_avg = s->dsp.avg_h264_qpel_pixels_tab;
2605     }
2606
2607     first_mb_in_slice = get_ue_golomb(&s->gb);
2608
2609     if (first_mb_in_slice == 0) { // FIXME better field boundary detection
2610         if (h0->current_slice && FIELD_PICTURE) {
2611             field_end(h, 1);
2612         }
2613
2614         h0->current_slice = 0;
2615         if (!s0->first_field) {
2616             if (s->current_picture_ptr && !s->droppable &&
2617                 s->current_picture_ptr->owner2 == s) {
2618                 ff_thread_report_progress(&s->current_picture_ptr->f, INT_MAX,
2619                                           s->picture_structure == PICT_BOTTOM_FIELD);
2620             }
2621             s->current_picture_ptr = NULL;
2622         }
2623     }
2624
2625     slice_type = get_ue_golomb_31(&s->gb);
2626     if (slice_type > 9) {
2627         av_log(h->s.avctx, AV_LOG_ERROR,
2628                "slice type too large (%d) at %d %d\n",
2629                h->slice_type, s->mb_x, s->mb_y);
2630         return -1;
2631     }
2632     if (slice_type > 4) {
2633         slice_type -= 5;
2634         h->slice_type_fixed = 1;
2635     } else
2636         h->slice_type_fixed = 0;
2637
2638     slice_type = golomb_to_pict_type[slice_type];
2639     if (slice_type == AV_PICTURE_TYPE_I ||
2640         (h0->current_slice != 0 && slice_type == h0->last_slice_type)) {
2641         default_ref_list_done = 1;
2642     }
2643     h->slice_type     = slice_type;
2644     h->slice_type_nos = slice_type & 3;
2645
2646     // to make a few old functions happy, it's wrong though
2647     s->pict_type = h->slice_type;
2648
2649     pps_id = get_ue_golomb(&s->gb);
2650     if (pps_id >= MAX_PPS_COUNT) {
2651         av_log(h->s.avctx, AV_LOG_ERROR, "pps_id out of range\n");
2652         return -1;
2653     }
2654     if (!h0->pps_buffers[pps_id]) {
2655         av_log(h->s.avctx, AV_LOG_ERROR,
2656                "non-existing PPS %u referenced\n",
2657                pps_id);
2658         return -1;
2659     }
2660     h->pps = *h0->pps_buffers[pps_id];
2661
2662     if (!h0->sps_buffers[h->pps.sps_id]) {
2663         av_log(h->s.avctx, AV_LOG_ERROR,
2664                "non-existing SPS %u referenced\n",
2665                h->pps.sps_id);
2666         return -1;
2667     }
2668
2669     if (h->pps.sps_id != h->current_sps_id ||
2670         h->context_reinitialized           ||
2671         h0->sps_buffers[h->pps.sps_id]->new) {
2672         h0->sps_buffers[h->pps.sps_id]->new = 0;
2673
2674         h->current_sps_id = h->pps.sps_id;
2675         h->sps            = *h0->sps_buffers[h->pps.sps_id];
2676
2677         if ((ret = h264_set_parameter_from_sps(h)) < 0)
2678             return ret;
2679     }
2680
2681     s->avctx->profile = ff_h264_get_profile(&h->sps);
2682     s->avctx->level   = h->sps.level_idc;
2683     s->avctx->refs    = h->sps.ref_frame_count;
2684
2685     if (s->mb_width  != h->sps.mb_width ||
2686         s->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag))
2687         needs_reinit = 1;
2688
2689     s->mb_width  = h->sps.mb_width;
2690     s->mb_height = h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag);
2691
2692     h->b_stride = s->mb_width * 4;
2693
2694     s->chroma_y_shift = h->sps.chroma_format_idc <= 1; // 400 uses yuv420p
2695
2696     s->width = 16 * s->mb_width - (2 >> CHROMA444) * FFMIN(h->sps.crop_right, (8 << CHROMA444) - 1);
2697     if (h->sps.frame_mbs_only_flag)
2698         s->height = 16 * s->mb_height - (1 << s->chroma_y_shift) * FFMIN(h->sps.crop_bottom, (16 >> s->chroma_y_shift) - 1);
2699     else
2700         s->height = 16 * s->mb_height - (2 << s->chroma_y_shift) * FFMIN(h->sps.crop_bottom, (16 >> s->chroma_y_shift) - 1);
2701
2702     if (FFALIGN(s->avctx->width,  16) == s->width &&
2703         FFALIGN(s->avctx->height, 16) == s->height) {
2704         s->width  = s->avctx->width;
2705         s->height = s->avctx->height;
2706     }
2707
2708     if (h->sps.video_signal_type_present_flag) {
2709         s->avctx->color_range = h->sps.full_range ? AVCOL_RANGE_JPEG
2710                                                   : AVCOL_RANGE_MPEG;
2711         if (h->sps.colour_description_present_flag) {
2712             s->avctx->color_primaries = h->sps.color_primaries;
2713             s->avctx->color_trc       = h->sps.color_trc;
2714             s->avctx->colorspace      = h->sps.colorspace;
2715         }
2716     }
2717
2718     ret = get_pixel_format(h);
2719     if (ret < 0)
2720         return ret;
2721     else
2722         pix_fmt = ret;
2723     if (s->avctx->pix_fmt == PIX_FMT_NONE)
2724         s->avctx->pix_fmt = pix_fmt;
2725
2726     if (s->context_initialized &&
2727         (s->width  != s->avctx->width   ||
2728          s->height != s->avctx->height  ||
2729          pix_fmt   != s->avctx->pix_fmt ||
2730          needs_reinit                   ||
2731          av_cmp_q(h->sps.sar, s->avctx->sample_aspect_ratio))) {
2732
2733         if (h != h0) {
2734             av_log(s->avctx, AV_LOG_ERROR, "changing width/height on "
2735                    "slice %d\n", h0->current_slice + 1);
2736             return AVERROR_INVALIDDATA;
2737         }
2738
2739         av_log(h->s.avctx, AV_LOG_INFO, "Reinit context to %dx%d, "
2740                "pix_fmt: %d\n", s->width, s->height, pix_fmt);
2741
2742         flush_change(h);
2743
2744         s->avctx->pix_fmt = pix_fmt;
2745
2746         if ((ret = h264_slice_header_init(h, 1)) < 0) {
2747             av_log(h->s.avctx, AV_LOG_ERROR,
2748                    "h264_slice_header_init() failed\n");
2749             return ret;
2750         }
2751         h->context_reinitialized = 1;
2752     }
2753     if (!s->context_initialized) {
2754         if (h != h0) {
2755             av_log(h->s.avctx, AV_LOG_ERROR,
2756                    "Cannot (re-)initialize context during parallel decoding.\n");
2757             return -1;
2758         }
2759         if ((ret = h264_slice_header_init(h, 0)) < 0) {
2760             av_log(h->s.avctx, AV_LOG_ERROR,
2761                    "h264_slice_header_init() failed\n");
2762             return ret;
2763         }
2764     }
2765
2766     if (h == h0 && h->dequant_coeff_pps != pps_id) {
2767         h->dequant_coeff_pps = pps_id;
2768         init_dequant_tables(h);
2769     }
2770
2771     h->frame_num = get_bits(&s->gb, h->sps.log2_max_frame_num);
2772
2773     h->mb_mbaff        = 0;
2774     h->mb_aff_frame    = 0;
2775     last_pic_structure = s0->picture_structure;
2776     last_pic_droppable = s0->droppable;
2777     s->droppable       = h->nal_ref_idc == 0;
2778     if (h->sps.frame_mbs_only_flag) {
2779         s->picture_structure = PICT_FRAME;
2780     } else {
2781         if (get_bits1(&s->gb)) { // field_pic_flag
2782             s->picture_structure = PICT_TOP_FIELD + get_bits1(&s->gb); // bottom_field_flag
2783         } else {
2784             s->picture_structure = PICT_FRAME;
2785             h->mb_aff_frame      = h->sps.mb_aff;
2786         }
2787     }
2788     h->mb_field_decoding_flag = s->picture_structure != PICT_FRAME;
2789
2790     if (h0->current_slice != 0) {
2791         if (last_pic_structure != s->picture_structure ||
2792             last_pic_droppable != s->droppable) {
2793             av_log(h->s.avctx, AV_LOG_ERROR,
2794                    "Changing field mode (%d -> %d) between slices is not allowed\n",
2795                    last_pic_structure, s->picture_structure);
2796             s->picture_structure = last_pic_structure;
2797             s->droppable         = last_pic_droppable;
2798             return AVERROR_INVALIDDATA;
2799         } else if (!s0->current_picture_ptr) {
2800             av_log(s->avctx, AV_LOG_ERROR,
2801                    "unset current_picture_ptr on %d. slice\n",
2802                    h0->current_slice + 1);
2803             return AVERROR_INVALIDDATA;
2804         }
2805     } else {
2806         /* Shorten frame num gaps so we don't have to allocate reference
2807          * frames just to throw them away */
2808         if (h->frame_num != h->prev_frame_num) {
2809             int unwrap_prev_frame_num = h->prev_frame_num;
2810             int max_frame_num         = 1 << h->sps.log2_max_frame_num;
2811
2812             if (unwrap_prev_frame_num > h->frame_num)
2813                 unwrap_prev_frame_num -= max_frame_num;
2814
2815             if ((h->frame_num - unwrap_prev_frame_num) > h->sps.ref_frame_count) {
2816                 unwrap_prev_frame_num = (h->frame_num - h->sps.ref_frame_count) - 1;
2817                 if (unwrap_prev_frame_num < 0)
2818                     unwrap_prev_frame_num += max_frame_num;
2819
2820                 h->prev_frame_num = unwrap_prev_frame_num;
2821             }
2822         }
2823
2824         /* See if we have a decoded first field looking for a pair...
2825          * Here, we're using that to see if we should mark previously
2826          * decode frames as "finished".
2827          * We have to do that before the "dummy" in-between frame allocation,
2828          * since that can modify s->current_picture_ptr. */
2829         if (s0->first_field) {
2830             assert(s0->current_picture_ptr);
2831             assert(s0->current_picture_ptr->f.data[0]);
2832             assert(s0->current_picture_ptr->f.reference != DELAYED_PIC_REF);
2833
2834             /* Mark old field/frame as completed */
2835             if (!last_pic_droppable && s0->current_picture_ptr->owner2 == s0) {
2836                 ff_thread_report_progress(&s0->current_picture_ptr->f, INT_MAX,
2837                                           last_pic_structure == PICT_BOTTOM_FIELD);
2838             }
2839
2840             /* figure out if we have a complementary field pair */
2841             if (!FIELD_PICTURE || s->picture_structure == last_pic_structure) {
2842                 /* Previous field is unmatched. Don't display it, but let it
2843                  * remain for reference if marked as such. */
2844                 if (!last_pic_droppable && last_pic_structure != PICT_FRAME) {
2845                     ff_thread_report_progress(&s0->current_picture_ptr->f, INT_MAX,
2846                                               last_pic_structure == PICT_TOP_FIELD);
2847                 }
2848             } else {
2849                 if (s0->current_picture_ptr->frame_num != h->frame_num) {
2850                     /* This and previous field were reference, but had
2851                      * different frame_nums. Consider this field first in
2852                      * pair. Throw away previous field except for reference
2853                      * purposes. */
2854                     if (!last_pic_droppable && last_pic_structure != PICT_FRAME) {
2855                         ff_thread_report_progress(&s0->current_picture_ptr->f, INT_MAX,
2856                                                   last_pic_structure == PICT_TOP_FIELD);
2857                     }
2858                 } else {
2859                     /* Second field in complementary pair */
2860                     if (!((last_pic_structure   == PICT_TOP_FIELD &&
2861                            s->picture_structure == PICT_BOTTOM_FIELD) ||
2862                           (last_pic_structure   == PICT_BOTTOM_FIELD &&
2863                            s->picture_structure == PICT_TOP_FIELD))) {
2864                         av_log(s->avctx, AV_LOG_ERROR,
2865                                "Invalid field mode combination %d/%d\n",
2866                                last_pic_structure, s->picture_structure);
2867                         s->picture_structure = last_pic_structure;
2868                         s->droppable         = last_pic_droppable;
2869                         return AVERROR_INVALIDDATA;
2870                     } else if (last_pic_droppable != s->droppable) {
2871                         av_log(s->avctx, AV_LOG_ERROR,
2872                                "Cannot combine reference and non-reference fields in the same frame\n");
2873                         av_log_ask_for_sample(s->avctx, NULL);
2874                         s->picture_structure = last_pic_structure;
2875                         s->droppable         = last_pic_droppable;
2876                         return AVERROR_PATCHWELCOME;
2877                     }
2878
2879                     /* Take ownership of this buffer. Note that if another thread owned
2880                      * the first field of this buffer, we're not operating on that pointer,
2881                      * so the original thread is still responsible for reporting progress
2882                      * on that first field (or if that was us, we just did that above).
2883                      * By taking ownership, we assign responsibility to ourselves to
2884                      * report progress on the second field. */
2885                     s0->current_picture_ptr->owner2 = s0;
2886                 }
2887             }
2888         }
2889
2890         while (h->frame_num != h->prev_frame_num &&
2891                h->frame_num != (h->prev_frame_num + 1) % (1 << h->sps.log2_max_frame_num)) {
2892             Picture *prev = h->short_ref_count ? h->short_ref[0] : NULL;
2893             av_log(h->s.avctx, AV_LOG_DEBUG, "Frame num gap %d %d\n",
2894                    h->frame_num, h->prev_frame_num);
2895             if (ff_h264_frame_start(h) < 0)
2896                 return -1;
2897             h->prev_frame_num++;
2898             h->prev_frame_num %= 1 << h->sps.log2_max_frame_num;
2899             s->current_picture_ptr->frame_num = h->prev_frame_num;
2900             ff_thread_report_progress(&s->current_picture_ptr->f, INT_MAX, 0);
2901             ff_thread_report_progress(&s->current_picture_ptr->f, INT_MAX, 1);
2902             ff_generate_sliding_window_mmcos(h);
2903             if (ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index) < 0 &&
2904                 (s->avctx->err_recognition & AV_EF_EXPLODE))
2905                 return AVERROR_INVALIDDATA;
2906             /* Error concealment: if a ref is missing, copy the previous ref in its place.
2907              * FIXME: avoiding a memcpy would be nice, but ref handling makes many assumptions
2908              * about there being no actual duplicates.
2909              * FIXME: this doesn't copy padding for out-of-frame motion vectors.  Given we're
2910              * concealing a lost frame, this probably isn't noticeable by comparison, but it should
2911              * be fixed. */
2912             if (h->short_ref_count) {
2913                 if (prev) {
2914                     av_image_copy(h->short_ref[0]->f.data, h->short_ref[0]->f.linesize,
2915                                   (const uint8_t **)prev->f.data, prev->f.linesize,
2916                                   s->avctx->pix_fmt, s->mb_width * 16, s->mb_height * 16);
2917                     h->short_ref[0]->poc = prev->poc + 2;
2918                 }
2919                 h->short_ref[0]->frame_num = h->prev_frame_num;
2920             }
2921         }
2922
2923         /* See if we have a decoded first field looking for a pair...
2924          * We're using that to see whether to continue decoding in that
2925          * frame, or to allocate a new one. */
2926         if (s0->first_field) {
2927             assert(s0->current_picture_ptr);
2928             assert(s0->current_picture_ptr->f.data[0]);
2929             assert(s0->current_picture_ptr->f.reference != DELAYED_PIC_REF);
2930
2931             /* figure out if we have a complementary field pair */
2932             if (!FIELD_PICTURE || s->picture_structure == last_pic_structure) {
2933                 /* Previous field is unmatched. Don't display it, but let it
2934                  * remain for reference if marked as such. */
2935                 s0->current_picture_ptr = NULL;
2936                 s0->first_field         = FIELD_PICTURE;
2937             } else {
2938                 if (s0->current_picture_ptr->frame_num != h->frame_num) {
2939                     /* This and the previous field had different frame_nums.
2940                      * Consider this field first in pair. Throw away previous
2941                      * one except for reference purposes. */
2942                     s0->first_field         = 1;
2943                     s0->current_picture_ptr = NULL;
2944                 } else {
2945                     /* Second field in complementary pair */
2946                     s0->first_field = 0;
2947                 }
2948             }
2949         } else {
2950             /* Frame or first field in a potentially complementary pair */
2951             s0->first_field = FIELD_PICTURE;
2952         }
2953
2954         if (!FIELD_PICTURE || s0->first_field) {
2955             if (ff_h264_frame_start(h) < 0) {
2956                 s0->first_field = 0;
2957                 return -1;
2958             }
2959         } else {
2960             ff_release_unused_pictures(s, 0);
2961         }
2962     }
2963     if (h != h0 && (ret = clone_slice(h, h0)) < 0)
2964         return ret;
2965
2966     s->current_picture_ptr->frame_num = h->frame_num; // FIXME frame_num cleanup
2967
2968     assert(s->mb_num == s->mb_width * s->mb_height);
2969     if (first_mb_in_slice << FIELD_OR_MBAFF_PICTURE >= s->mb_num ||
2970         first_mb_in_slice >= s->mb_num) {
2971         av_log(h->s.avctx, AV_LOG_ERROR, "first_mb_in_slice overflow\n");
2972         return -1;
2973     }
2974     s->resync_mb_x = s->mb_x =  first_mb_in_slice % s->mb_width;
2975     s->resync_mb_y = s->mb_y = (first_mb_in_slice / s->mb_width) << FIELD_OR_MBAFF_PICTURE;
2976     if (s->picture_structure == PICT_BOTTOM_FIELD)
2977         s->resync_mb_y = s->mb_y = s->mb_y + 1;
2978     assert(s->mb_y < s->mb_height);
2979
2980     if (s->picture_structure == PICT_FRAME) {
2981         h->curr_pic_num = h->frame_num;
2982         h->max_pic_num  = 1 << h->sps.log2_max_frame_num;
2983     } else {
2984         h->curr_pic_num = 2 * h->frame_num + 1;
2985         h->max_pic_num  = 1 << (h->sps.log2_max_frame_num + 1);
2986     }
2987
2988     if (h->nal_unit_type == NAL_IDR_SLICE)
2989         get_ue_golomb(&s->gb); /* idr_pic_id */
2990
2991     if (h->sps.poc_type == 0) {
2992         h->poc_lsb = get_bits(&s->gb, h->sps.log2_max_poc_lsb);
2993
2994         if (h->pps.pic_order_present == 1 && s->picture_structure == PICT_FRAME)
2995             h->delta_poc_bottom = get_se_golomb(&s->gb);
2996     }
2997
2998     if (h->sps.poc_type == 1 && !h->sps.delta_pic_order_always_zero_flag) {
2999         h->delta_poc[0] = get_se_golomb(&s->gb);
3000
3001         if (h->pps.pic_order_present == 1 && s->picture_structure == PICT_FRAME)
3002             h->delta_poc[1] = get_se_golomb(&s->gb);
3003     }
3004
3005     init_poc(h);
3006
3007     if (h->pps.redundant_pic_cnt_present)
3008         h->redundant_pic_count = get_ue_golomb(&s->gb);
3009
3010     // set defaults, might be overridden a few lines later
3011     h->ref_count[0] = h->pps.ref_count[0];
3012     h->ref_count[1] = h->pps.ref_count[1];
3013
3014     if (h->slice_type_nos != AV_PICTURE_TYPE_I) {
3015         if (h->slice_type_nos == AV_PICTURE_TYPE_B)
3016             h->direct_spatial_mv_pred = get_bits1(&s->gb);
3017         num_ref_idx_active_override_flag = get_bits1(&s->gb);
3018
3019         if (num_ref_idx_active_override_flag) {
3020             h->ref_count[0] = get_ue_golomb(&s->gb) + 1;
3021             if (h->ref_count[0] < 1)
3022                 return AVERROR_INVALIDDATA;
3023             if (h->slice_type_nos == AV_PICTURE_TYPE_B) {
3024                 h->ref_count[1] = get_ue_golomb(&s->gb) + 1;
3025                 if (h->ref_count[1] < 1)
3026                     return AVERROR_INVALIDDATA;
3027             }
3028         }
3029
3030         if (h->slice_type_nos == AV_PICTURE_TYPE_B)
3031             h->list_count = 2;
3032         else
3033             h->list_count = 1;
3034     } else
3035         h->list_count = 0;
3036
3037     max_refs = s->picture_structure == PICT_FRAME ? 16 : 32;
3038
3039     if (h->ref_count[0] > max_refs || h->ref_count[1] > max_refs) {
3040         av_log(h->s.avctx, AV_LOG_ERROR, "reference overflow\n");
3041         h->ref_count[0] = h->ref_count[1] = 1;
3042         return AVERROR_INVALIDDATA;
3043     }
3044
3045     if (!default_ref_list_done)
3046         ff_h264_fill_default_ref_list(h);
3047
3048     if (h->slice_type_nos != AV_PICTURE_TYPE_I &&
3049         ff_h264_decode_ref_pic_list_reordering(h) < 0) {
3050         h->ref_count[1] = h->ref_count[0] = 0;
3051         return -1;
3052     }
3053
3054     if (h->slice_type_nos != AV_PICTURE_TYPE_I) {
3055         s->last_picture_ptr = &h->ref_list[0][0];
3056         s->last_picture_ptr->owner2 = s;
3057         ff_copy_picture(&s->last_picture, s->last_picture_ptr);
3058     }
3059     if (h->slice_type_nos == AV_PICTURE_TYPE_B) {
3060         s->next_picture_ptr = &h->ref_list[1][0];
3061         s->next_picture_ptr->owner2 = s;
3062         ff_copy_picture(&s->next_picture, s->next_picture_ptr);
3063     }
3064
3065     if ((h->pps.weighted_pred && h->slice_type_nos == AV_PICTURE_TYPE_P) ||
3066         (h->pps.weighted_bipred_idc == 1 &&
3067          h->slice_type_nos == AV_PICTURE_TYPE_B))
3068         pred_weight_table(h);
3069     else if (h->pps.weighted_bipred_idc == 2 &&
3070              h->slice_type_nos == AV_PICTURE_TYPE_B) {
3071         implicit_weight_table(h, -1);
3072     } else {
3073         h->use_weight = 0;
3074         for (i = 0; i < 2; i++) {
3075             h->luma_weight_flag[i]   = 0;
3076             h->chroma_weight_flag[i] = 0;
3077         }
3078     }
3079
3080     if (h->nal_ref_idc && ff_h264_decode_ref_pic_marking(h0, &s->gb) < 0 &&
3081         (s->avctx->err_recognition & AV_EF_EXPLODE))
3082         return AVERROR_INVALIDDATA;
3083
3084     if (FRAME_MBAFF) {
3085         ff_h264_fill_mbaff_ref_list(h);
3086
3087         if (h->pps.weighted_bipred_idc == 2 && h->slice_type_nos == AV_PICTURE_TYPE_B) {
3088             implicit_weight_table(h, 0);
3089             implicit_weight_table(h, 1);
3090         }
3091     }
3092
3093     if (h->slice_type_nos == AV_PICTURE_TYPE_B && !h->direct_spatial_mv_pred)
3094         ff_h264_direct_dist_scale_factor(h);
3095     ff_h264_direct_ref_list_init(h);
3096
3097     if (h->slice_type_nos != AV_PICTURE_TYPE_I && h->pps.cabac) {
3098         tmp = get_ue_golomb_31(&s->gb);
3099         if (tmp > 2) {
3100             av_log(s->avctx, AV_LOG_ERROR, "cabac_init_idc overflow\n");
3101             return -1;
3102         }
3103         h->cabac_init_idc = tmp;
3104     }
3105
3106     h->last_qscale_diff = 0;
3107     tmp = h->pps.init_qp + get_se_golomb(&s->gb);
3108     if (tmp > 51 + 6 * (h->sps.bit_depth_luma - 8)) {
3109         av_log(s->avctx, AV_LOG_ERROR, "QP %u out of range\n", tmp);
3110         return -1;
3111     }
3112     s->qscale       = tmp;
3113     h->chroma_qp[0] = get_chroma_qp(h, 0, s->qscale);
3114     h->chroma_qp[1] = get_chroma_qp(h, 1, s->qscale);
3115     // FIXME qscale / qp ... stuff
3116     if (h->slice_type == AV_PICTURE_TYPE_SP)
3117         get_bits1(&s->gb); /* sp_for_switch_flag */
3118     if (h->slice_type == AV_PICTURE_TYPE_SP ||
3119         h->slice_type == AV_PICTURE_TYPE_SI)
3120         get_se_golomb(&s->gb); /* slice_qs_delta */
3121
3122     h->deblocking_filter     = 1;
3123     h->slice_alpha_c0_offset = 52;
3124     h->slice_beta_offset     = 52;
3125     if (h->pps.deblocking_filter_parameters_present) {
3126         tmp = get_ue_golomb_31(&s->gb);
3127         if (tmp > 2) {
3128             av_log(s->avctx, AV_LOG_ERROR,
3129                    "deblocking_filter_idc %u out of range\n", tmp);
3130             return -1;
3131         }
3132         h->deblocking_filter = tmp;
3133         if (h->deblocking_filter < 2)
3134             h->deblocking_filter ^= 1;  // 1<->0
3135
3136         if (h->deblocking_filter) {
3137             h->slice_alpha_c0_offset += get_se_golomb(&s->gb) << 1;
3138             h->slice_beta_offset     += get_se_golomb(&s->gb) << 1;
3139             if (h->slice_alpha_c0_offset > 104U ||
3140                 h->slice_beta_offset     > 104U) {
3141                 av_log(s->avctx, AV_LOG_ERROR,
3142                        "deblocking filter parameters %d %d out of range\n",
3143                        h->slice_alpha_c0_offset, h->slice_beta_offset);
3144                 return -1;
3145             }
3146         }
3147     }
3148
3149     if (s->avctx->skip_loop_filter >= AVDISCARD_ALL ||
3150         (s->avctx->skip_loop_filter >= AVDISCARD_NONKEY &&
3151          h->slice_type_nos != AV_PICTURE_TYPE_I) ||
3152         (s->avctx->skip_loop_filter >= AVDISCARD_BIDIR  &&
3153          h->slice_type_nos == AV_PICTURE_TYPE_B) ||
3154         (s->avctx->skip_loop_filter >= AVDISCARD_NONREF &&
3155          h->nal_ref_idc == 0))
3156         h->deblocking_filter = 0;
3157
3158     if (h->deblocking_filter == 1 && h0->max_contexts > 1) {
3159         if (s->avctx->flags2 & CODEC_FLAG2_FAST) {
3160             /* Cheat slightly for speed:
3161              * Do not bother to deblock across slices. */
3162             h->deblocking_filter = 2;
3163         } else {
3164             h0->max_contexts = 1;
3165             if (!h0->single_decode_warning) {
3166                 av_log(s->avctx, AV_LOG_INFO,
3167                        "Cannot parallelize deblocking type 1, decoding such frames in sequential order\n");
3168                 h0->single_decode_warning = 1;
3169             }
3170             if (h != h0) {
3171                 av_log(h->s.avctx, AV_LOG_ERROR,
3172                        "Deblocking switched inside frame.\n");
3173                 return 1;
3174             }
3175         }
3176     }
3177     h->qp_thresh = 15 + 52 -
3178                    FFMIN(h->slice_alpha_c0_offset, h->slice_beta_offset) -
3179                    FFMAX3(0,
3180                           h->pps.chroma_qp_index_offset[0],
3181                           h->pps.chroma_qp_index_offset[1]) +
3182                    6 * (h->sps.bit_depth_luma - 8);
3183
3184     h0->last_slice_type = slice_type;
3185     h->slice_num = ++h0->current_slice;
3186     if (h->slice_num >= MAX_SLICES) {
3187         av_log(s->avctx, AV_LOG_ERROR,
3188                "Too many slices, increase MAX_SLICES and recompile\n");
3189     }
3190
3191     for (j = 0; j < 2; j++) {
3192         int id_list[16];
3193         int *ref2frm = h->ref2frm[h->slice_num & (MAX_SLICES - 1)][j];
3194         for (i = 0; i < 16; i++) {
3195             id_list[i] = 60;
3196             if (h->ref_list[j][i].f.data[0]) {
3197                 int k;
3198                 uint8_t *base = h->ref_list[j][i].f.base[0];
3199                 for (k = 0; k < h->short_ref_count; k++)
3200                     if (h->short_ref[k]->f.base[0] == base) {
3201                         id_list[i] = k;
3202                         break;
3203                     }
3204                 for (k = 0; k < h->long_ref_count; k++)
3205                     if (h->long_ref[k] && h->long_ref[k]->f.base[0] == base) {
3206                         id_list[i] = h->short_ref_count + k;
3207                         break;
3208                     }
3209             }
3210         }
3211
3212         ref2frm[0]     =
3213             ref2frm[1] = -1;
3214         for (i = 0; i < 16; i++)
3215             ref2frm[i + 2] = 4 * id_list[i] +
3216                              (h->ref_list[j][i].f.reference & 3);
3217         ref2frm[18 + 0]     =
3218             ref2frm[18 + 1] = -1;
3219         for (i = 16; i < 48; i++)
3220             ref2frm[i + 4] = 4 * id_list[(i - 16) >> 1] +
3221                              (h->ref_list[j][i].f.reference & 3);
3222     }
3223
3224     // FIXME: fix draw_edges + PAFF + frame threads
3225     h->emu_edge_width  = (s->flags & CODEC_FLAG_EMU_EDGE ||
3226                           (!h->sps.frame_mbs_only_flag &&
3227                            s->avctx->active_thread_type))
3228                          ? 0 : 16;
3229     h->emu_edge_height = (FRAME_MBAFF || FIELD_PICTURE) ? 0 : h->emu_edge_width;
3230
3231     if (s->avctx->debug & FF_DEBUG_PICT_INFO) {
3232         av_log(h->s.avctx, AV_LOG_DEBUG,
3233                "slice:%d %s mb:%d %c%s%s pps:%u frame:%d poc:%d/%d ref:%d/%d qp:%d loop:%d:%d:%d weight:%d%s %s\n",
3234                h->slice_num,
3235                (s->picture_structure == PICT_FRAME ? "F" : s->picture_structure == PICT_TOP_FIELD ? "T" : "B"),
3236                first_mb_in_slice,
3237                av_get_picture_type_char(h->slice_type),
3238                h->slice_type_fixed ? " fix" : "",
3239                h->nal_unit_type == NAL_IDR_SLICE ? " IDR" : "",
3240                pps_id, h->frame_num,
3241                s->current_picture_ptr->field_poc[0],
3242                s->current_picture_ptr->field_poc[1],
3243                h->ref_count[0], h->ref_count[1],
3244                s->qscale,
3245                h->deblocking_filter,
3246                h->slice_alpha_c0_offset / 2 - 26, h->slice_beta_offset / 2 - 26,
3247                h->use_weight,
3248                h->use_weight == 1 && h->use_weight_chroma ? "c" : "",
3249                h->slice_type == AV_PICTURE_TYPE_B ? (h->direct_spatial_mv_pred ? "SPAT" : "TEMP") : "");
3250     }
3251
3252     return 0;
3253 }
3254
3255 int ff_h264_get_slice_type(const H264Context *h)
3256 {
3257     switch (h->slice_type) {
3258     case AV_PICTURE_TYPE_P:
3259         return 0;
3260     case AV_PICTURE_TYPE_B:
3261         return 1;
3262     case AV_PICTURE_TYPE_I:
3263         return 2;
3264     case AV_PICTURE_TYPE_SP:
3265         return 3;
3266     case AV_PICTURE_TYPE_SI:
3267         return 4;
3268     default:
3269         return -1;
3270     }
3271 }
3272
3273 static av_always_inline void fill_filter_caches_inter(H264Context *h,
3274                                                       MpegEncContext *const s,
3275                                                       int mb_type, int top_xy,
3276                                                       int left_xy[LEFT_MBS],
3277                                                       int top_type,
3278                                                       int left_type[LEFT_MBS],
3279                                                       int mb_xy, int list)
3280 {
3281     int b_stride = h->b_stride;
3282     int16_t(*mv_dst)[2] = &h->mv_cache[list][scan8[0]];
3283     int8_t *ref_cache = &h->ref_cache[list][scan8[0]];
3284     if (IS_INTER(mb_type) || IS_DIRECT(mb_type)) {
3285         if (USES_LIST(top_type, list)) {
3286             const int b_xy  = h->mb2b_xy[top_xy] + 3 * b_stride;
3287             const int b8_xy = 4 * top_xy + 2;
3288             int (*ref2frm)[64] = h->ref2frm[h->slice_table[top_xy] & (MAX_SLICES - 1)][0] + (MB_MBAFF ? 20 : 2);
3289             AV_COPY128(mv_dst - 1 * 8, s->current_picture.f.motion_val[list][b_xy + 0]);
3290             ref_cache[0 - 1 * 8] =
3291             ref_cache[1 - 1 * 8] = ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 0]];
3292             ref_cache[2 - 1 * 8] =
3293             ref_cache[3 - 1 * 8] = ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 1]];
3294         } else {
3295             AV_ZERO128(mv_dst - 1 * 8);
3296             AV_WN32A(&ref_cache[0 - 1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
3297         }
3298
3299         if (!IS_INTERLACED(mb_type ^ left_type[LTOP])) {
3300             if (USES_LIST(left_type[LTOP], list)) {
3301                 const int b_xy  = h->mb2b_xy[left_xy[LTOP]] + 3;
3302                 const int b8_xy = 4 * left_xy[LTOP] + 1;
3303                 int (*ref2frm)[64] = h->ref2frm[h->slice_table[left_xy[LTOP]] & (MAX_SLICES - 1)][0] + (MB_MBAFF ? 20 : 2);
3304                 AV_COPY32(mv_dst - 1 +  0, s->current_picture.f.motion_val[list][b_xy + b_stride * 0]);
3305                 AV_COPY32(mv_dst - 1 +  8, s->current_picture.f.motion_val[list][b_xy + b_stride * 1]);
3306                 AV_COPY32(mv_dst - 1 + 16, s->current_picture.f.motion_val[list][b_xy + b_stride * 2]);
3307                 AV_COPY32(mv_dst - 1 + 24, s->current_picture.f.motion_val[list][b_xy + b_stride * 3]);
3308                 ref_cache[-1 +  0] =
3309                 ref_cache[-1 +  8] = ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 2 * 0]];
3310                 ref_cache[-1 + 16] =
3311                 ref_cache[-1 + 24] = ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 2 * 1]];
3312             } else {
3313                 AV_ZERO32(mv_dst - 1 +  0);
3314                 AV_ZERO32(mv_dst - 1 +  8);
3315                 AV_ZERO32(mv_dst - 1 + 16);
3316                 AV_ZERO32(mv_dst - 1 + 24);
3317                 ref_cache[-1 +  0] =
3318                 ref_cache[-1 +  8] =
3319                 ref_cache[-1 + 16] =
3320                 ref_cache[-1 + 24] = LIST_NOT_USED;
3321             }
3322         }
3323     }
3324
3325     if (!USES_LIST(mb_type, list)) {
3326         fill_rectangle(mv_dst, 4, 4, 8, pack16to32(0, 0), 4);
3327         AV_WN32A(&ref_cache[0 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
3328         AV_WN32A(&ref_cache[1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
3329         AV_WN32A(&ref_cache[2 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
3330         AV_WN32A(&ref_cache[3 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
3331         return;
3332     }
3333
3334     {
3335         int8_t *ref = &s->current_picture.f.ref_index[list][4 * mb_xy];
3336         int (*ref2frm)[64] = h->ref2frm[h->slice_num & (MAX_SLICES - 1)][0] + (MB_MBAFF ? 20 : 2);
3337         uint32_t ref01 = (pack16to32(ref2frm[list][ref[0]], ref2frm[list][ref[1]]) & 0x00FF00FF) * 0x0101;
3338         uint32_t ref23 = (pack16to32(ref2frm[list][ref[2]], ref2frm[list][ref[3]]) & 0x00FF00FF) * 0x0101;
3339         AV_WN32A(&ref_cache[0 * 8], ref01);
3340         AV_WN32A(&ref_cache[1 * 8], ref01);
3341         AV_WN32A(&ref_cache[2 * 8], ref23);
3342         AV_WN32A(&ref_cache[3 * 8], ref23);
3343     }
3344
3345     {
3346         int16_t(*mv_src)[2] = &s->current_picture.f.motion_val[list][4 * s->mb_x + 4 * s->mb_y * b_stride];
3347         AV_COPY128(mv_dst + 8 * 0, mv_src + 0 * b_stride);
3348         AV_COPY128(mv_dst + 8 * 1, mv_src + 1 * b_stride);
3349         AV_COPY128(mv_dst + 8 * 2, mv_src + 2 * b_stride);
3350         AV_COPY128(mv_dst + 8 * 3, mv_src + 3 * b_stride);
3351     }
3352 }
3353
3354 /**
3355  *
3356  * @return non zero if the loop filter can be skipped
3357  */
3358 static int fill_filter_caches(H264Context *h, int mb_type)
3359 {
3360     MpegEncContext *const s = &h->s;
3361     const int mb_xy = h->mb_xy;
3362     int top_xy, left_xy[LEFT_MBS];
3363     int top_type, left_type[LEFT_MBS];
3364     uint8_t *nnz;
3365     uint8_t *nnz_cache;
3366
3367     top_xy = mb_xy - (s->mb_stride << MB_FIELD);
3368
3369     /* Wow, what a mess, why didn't they simplify the interlacing & intra
3370      * stuff, I can't imagine that these complex rules are worth it. */
3371
3372     left_xy[LBOT] = left_xy[LTOP] = mb_xy - 1;
3373     if (FRAME_MBAFF) {
3374         const int left_mb_field_flag = IS_INTERLACED(s->current_picture.f.mb_type[mb_xy - 1]);
3375         const int curr_mb_field_flag = IS_INTERLACED(mb_type);
3376         if (s->mb_y & 1) {
3377             if (left_mb_field_flag != curr_mb_field_flag)
3378                 left_xy[LTOP] -= s->mb_stride;
3379         } else {
3380             if (curr_mb_field_flag)
3381                 top_xy += s->mb_stride &
3382                     (((s->current_picture.f.mb_type[top_xy] >> 7) & 1) - 1);
3383             if (left_mb_field_flag != curr_mb_field_flag)
3384                 left_xy[LBOT] += s->mb_stride;
3385         }
3386     }
3387
3388     h->top_mb_xy        = top_xy;
3389     h->left_mb_xy[LTOP] = left_xy[LTOP];
3390     h->left_mb_xy[LBOT] = left_xy[LBOT];
3391     {
3392         /* For sufficiently low qp, filtering wouldn't do anything.
3393          * This is a conservative estimate: could also check beta_offset
3394          * and more accurate chroma_qp. */
3395         int qp_thresh = h->qp_thresh; // FIXME strictly we should store qp_thresh for each mb of a slice
3396         int qp        = s->current_picture.f.qscale_table[mb_xy];
3397         if (qp <= qp_thresh &&
3398             (left_xy[LTOP] < 0 ||
3399              ((qp + s->current_picture.f.qscale_table[left_xy[LTOP]] + 1) >> 1) <= qp_thresh) &&
3400             (top_xy < 0 ||
3401              ((qp + s->current_picture.f.qscale_table[top_xy] + 1) >> 1) <= qp_thresh)) {
3402             if (!FRAME_MBAFF)
3403                 return 1;
3404             if ((left_xy[LTOP] < 0 ||
3405                  ((qp + s->current_picture.f.qscale_table[left_xy[LBOT]] + 1) >> 1) <= qp_thresh) &&
3406                 (top_xy < s->mb_stride ||
3407                  ((qp + s->current_picture.f.qscale_table[top_xy - s->mb_stride] + 1) >> 1) <= qp_thresh))
3408                 return 1;
3409         }
3410     }
3411
3412     top_type        = s->current_picture.f.mb_type[top_xy];
3413     left_type[LTOP] = s->current_picture.f.mb_type[left_xy[LTOP]];
3414     left_type[LBOT] = s->current_picture.f.mb_type[left_xy[LBOT]];
3415     if (h->deblocking_filter == 2) {
3416         if (h->slice_table[top_xy] != h->slice_num)
3417             top_type = 0;
3418         if (h->slice_table[left_xy[LBOT]] != h->slice_num)
3419             left_type[LTOP] = left_type[LBOT] = 0;
3420     } else {
3421         if (h->slice_table[top_xy] == 0xFFFF)
3422             top_type = 0;
3423         if (h->slice_table[left_xy[LBOT]] == 0xFFFF)
3424             left_type[LTOP] = left_type[LBOT] = 0;
3425     }
3426     h->top_type        = top_type;
3427     h->left_type[LTOP] = left_type[LTOP];
3428     h->left_type[LBOT] = left_type[LBOT];
3429
3430     if (IS_INTRA(mb_type))
3431         return 0;
3432
3433     fill_filter_caches_inter(h, s, mb_type, top_xy, left_xy,
3434                              top_type, left_type, mb_xy, 0);
3435     if (h->list_count == 2)
3436         fill_filter_caches_inter(h, s, mb_type, top_xy, left_xy,
3437                                  top_type, left_type, mb_xy, 1);
3438
3439     nnz       = h->non_zero_count[mb_xy];
3440     nnz_cache = h->non_zero_count_cache;
3441     AV_COPY32(&nnz_cache[4 + 8 * 1], &nnz[0]);
3442     AV_COPY32(&nnz_cache[4 + 8 * 2], &nnz[4]);
3443     AV_COPY32(&nnz_cache[4 + 8 * 3], &nnz[8]);
3444     AV_COPY32(&nnz_cache[4 + 8 * 4], &nnz[12]);
3445     h->cbp = h->cbp_table[mb_xy];
3446
3447     if (top_type) {
3448         nnz = h->non_zero_count[top_xy];
3449         AV_COPY32(&nnz_cache[4 + 8 * 0], &nnz[3 * 4]);
3450     }
3451
3452     if (left_type[LTOP]) {
3453         nnz = h->non_zero_count[left_xy[LTOP]];
3454         nnz_cache[3 + 8 * 1] = nnz[3 + 0 * 4];
3455         nnz_cache[3 + 8 * 2] = nnz[3 + 1 * 4];
3456         nnz_cache[3 + 8 * 3] = nnz[3 + 2 * 4];
3457         nnz_cache[3 + 8 * 4] = nnz[3 + 3 * 4];
3458     }
3459
3460     /* CAVLC 8x8dct requires NNZ values for residual decoding that differ
3461      * from what the loop filter needs */
3462     if (!CABAC && h->pps.transform_8x8_mode) {
3463         if (IS_8x8DCT(top_type)) {
3464             nnz_cache[4 + 8 * 0]     =
3465                 nnz_cache[5 + 8 * 0] = (h->cbp_table[top_xy] & 0x4000) >> 12;
3466             nnz_cache[6 + 8 * 0]     =
3467                 nnz_cache[7 + 8 * 0] = (h->cbp_table[top_xy] & 0x8000) >> 12;
3468         }
3469         if (IS_8x8DCT(left_type[LTOP])) {
3470             nnz_cache[3 + 8 * 1]     =
3471                 nnz_cache[3 + 8 * 2] = (h->cbp_table[left_xy[LTOP]] & 0x2000) >> 12; // FIXME check MBAFF
3472         }
3473         if (IS_8x8DCT(left_type[LBOT])) {
3474             nnz_cache[3 + 8 * 3]     =
3475                 nnz_cache[3 + 8 * 4] = (h->cbp_table[left_xy[LBOT]] & 0x8000) >> 12; // FIXME check MBAFF
3476         }
3477
3478         if (IS_8x8DCT(mb_type)) {
3479             nnz_cache[scan8[0]] =
3480             nnz_cache[scan8[1]] =
3481             nnz_cache[scan8[2]] =
3482             nnz_cache[scan8[3]] = (h->cbp & 0x1000) >> 12;
3483
3484             nnz_cache[scan8[0 + 4]] =
3485             nnz_cache[scan8[1 + 4]] =
3486             nnz_cache[scan8[2 + 4]] =
3487             nnz_cache[scan8[3 + 4]] = (h->cbp & 0x2000) >> 12;
3488
3489             nnz_cache[scan8[0 + 8]] =
3490             nnz_cache[scan8[1 + 8]] =
3491             nnz_cache[scan8[2 + 8]] =
3492             nnz_cache[scan8[3 + 8]] = (h->cbp & 0x4000) >> 12;
3493
3494             nnz_cache[scan8[0 + 12]] =
3495             nnz_cache[scan8[1 + 12]] =
3496             nnz_cache[scan8[2 + 12]] =
3497             nnz_cache[scan8[3 + 12]] = (h->cbp & 0x8000) >> 12;
3498         }
3499     }
3500
3501     return 0;
3502 }
3503
3504 static void loop_filter(H264Context *h, int start_x, int end_x)
3505 {
3506     MpegEncContext *const s = &h->s;
3507     uint8_t *dest_y, *dest_cb, *dest_cr;
3508     int linesize, uvlinesize, mb_x, mb_y;
3509     const int end_mb_y       = s->mb_y + FRAME_MBAFF;
3510     const int old_slice_type = h->slice_type;
3511     const int pixel_shift    = h->pixel_shift;
3512     const int block_h        = 16 >> s->chroma_y_shift;
3513
3514     if (h->deblocking_filter) {
3515         for (mb_x = start_x; mb_x < end_x; mb_x++)
3516             for (mb_y = end_mb_y - FRAME_MBAFF; mb_y <= end_mb_y; mb_y++) {
3517                 int mb_xy, mb_type;
3518                 mb_xy         = h->mb_xy = mb_x + mb_y * s->mb_stride;
3519                 h->slice_num  = h->slice_table[mb_xy];
3520                 mb_type       = s->current_picture.f.mb_type[mb_xy];
3521                 h->list_count = h->list_counts[mb_xy];
3522
3523                 if (FRAME_MBAFF)
3524                     h->mb_mbaff               =
3525                     h->mb_field_decoding_flag = !!IS_INTERLACED(mb_type);
3526
3527                 s->mb_x = mb_x;
3528                 s->mb_y = mb_y;
3529                 dest_y  = s->current_picture.f.data[0] +
3530                           ((mb_x << pixel_shift) + mb_y * s->linesize) * 16;
3531                 dest_cb = s->current_picture.f.data[1] +
3532                           (mb_x << pixel_shift) * (8 << CHROMA444) +
3533                           mb_y * s->uvlinesize * block_h;
3534                 dest_cr = s->current_picture.f.data[2] +
3535                           (mb_x << pixel_shift) * (8 << CHROMA444) +
3536                           mb_y * s->uvlinesize * block_h;
3537                 // FIXME simplify above
3538
3539                 if (MB_FIELD) {
3540                     linesize   = h->mb_linesize   = s->linesize   * 2;
3541                     uvlinesize = h->mb_uvlinesize = s->uvlinesize * 2;
3542                     if (mb_y & 1) { // FIXME move out of this function?
3543                         dest_y  -= s->linesize   * 15;
3544                         dest_cb -= s->uvlinesize * (block_h - 1);
3545                         dest_cr -= s->uvlinesize * (block_h - 1);
3546                     }
3547                 } else {
3548                     linesize   = h->mb_linesize   = s->linesize;
3549                     uvlinesize = h->mb_uvlinesize = s->uvlinesize;
3550                 }
3551                 backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize,
3552                                  uvlinesize, 0);
3553                 if (fill_filter_caches(h, mb_type))
3554                     continue;
3555                 h->chroma_qp[0] = get_chroma_qp(h, 0, s->current_picture.f.qscale_table[mb_xy]);
3556                 h->chroma_qp[1] = get_chroma_qp(h, 1, s->current_picture.f.qscale_table[mb_xy]);
3557
3558                 if (FRAME_MBAFF) {
3559                     ff_h264_filter_mb(h, mb_x, mb_y, dest_y, dest_cb, dest_cr,
3560                                       linesize, uvlinesize);
3561                 } else {
3562                     ff_h264_filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb,
3563                                            dest_cr, linesize, uvlinesize);
3564                 }
3565             }
3566     }
3567     h->slice_type   = old_slice_type;
3568     s->mb_x         = end_x;
3569     s->mb_y         = end_mb_y - FRAME_MBAFF;
3570     h->chroma_qp[0] = get_chroma_qp(h, 0, s->qscale);
3571     h->chroma_qp[1] = get_chroma_qp(h, 1, s->qscale);
3572 }
3573
3574 static void predict_field_decoding_flag(H264Context *h)
3575 {
3576     MpegEncContext *const s = &h->s;
3577     const int mb_xy = s->mb_x + s->mb_y * s->mb_stride;
3578     int mb_type     = (h->slice_table[mb_xy - 1] == h->slice_num) ?
3579                       s->current_picture.f.mb_type[mb_xy - 1] :
3580                       (h->slice_table[mb_xy - s->mb_stride] == h->slice_num) ?
3581                       s->current_picture.f.mb_type[mb_xy - s->mb_stride] : 0;
3582     h->mb_mbaff     = h->mb_field_decoding_flag = IS_INTERLACED(mb_type) ? 1 : 0;
3583 }
3584
3585 /**
3586  * Draw edges and report progress for the last MB row.
3587  */
3588 static void decode_finish_row(H264Context *h)
3589 {
3590     MpegEncContext *const s = &h->s;
3591     int top            = 16 * (s->mb_y      >> FIELD_PICTURE);
3592     int pic_height     = 16 *  s->mb_height >> FIELD_PICTURE;
3593     int height         =  16      << FRAME_MBAFF;
3594     int deblock_border = (16 + 4) << FRAME_MBAFF;
3595
3596     if (h->deblocking_filter) {
3597         if ((top + height) >= pic_height)
3598             height += deblock_border;
3599         top -= deblock_border;
3600     }
3601
3602     if (top >= pic_height || (top + height) < h->emu_edge_height)
3603         return;
3604
3605     height = FFMIN(height, pic_height - top);
3606     if (top < h->emu_edge_height) {
3607         height = top + height;
3608         top    = 0;
3609     }
3610
3611     ff_draw_horiz_band(s, top, height);
3612
3613     if (s->droppable)
3614         return;
3615
3616     ff_thread_report_progress(&s->current_picture_ptr->f, top + height - 1,
3617                               s->picture_structure == PICT_BOTTOM_FIELD);
3618 }
3619
3620 static int decode_slice(struct AVCodecContext *avctx, void *arg)
3621 {
3622     H264Context *h = *(void **)arg;
3623     MpegEncContext *const s = &h->s;
3624     const int part_mask     = s->partitioned_frame ? (ER_AC_END | ER_AC_ERROR)
3625                                                    : 0x7F;
3626     int lf_x_start = s->mb_x;
3627
3628     s->mb_skip_run = -1;
3629
3630     h->is_complex = FRAME_MBAFF || s->picture_structure != PICT_FRAME ||
3631                     s->codec_id != AV_CODEC_ID_H264 ||
3632                     (CONFIG_GRAY && (s->flags & CODEC_FLAG_GRAY));
3633
3634     if (h->pps.cabac) {
3635         /* realign */
3636         align_get_bits(&s->gb);
3637
3638         /* init cabac */
3639         ff_init_cabac_states(&h->cabac);
3640         ff_init_cabac_decoder(&h->cabac,
3641                               s->gb.buffer + get_bits_count(&s->gb) / 8,
3642                               (get_bits_left(&s->gb) + 7) / 8);
3643
3644         ff_h264_init_cabac_states(h);
3645
3646         for (;;) {
3647             // START_TIMER
3648             int ret = ff_h264_decode_mb_cabac(h);
3649             int eos;
3650             // STOP_TIMER("decode_mb_cabac")
3651
3652             if (ret >= 0)
3653                 ff_h264_hl_decode_mb(h);
3654
3655             // FIXME optimal? or let mb_decode decode 16x32 ?
3656             if (ret >= 0 && FRAME_MBAFF) {
3657                 s->mb_y++;
3658
3659                 ret = ff_h264_decode_mb_cabac(h);
3660
3661                 if (ret >= 0)
3662                     ff_h264_hl_decode_mb(h);
3663                 s->mb_y--;
3664             }
3665             eos = get_cabac_terminate(&h->cabac);
3666
3667             if ((s->workaround_bugs & FF_BUG_TRUNCATED) &&
3668                 h->cabac.bytestream > h->cabac.bytestream_end + 2) {
3669                 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x - 1,
3670                                 s->mb_y, ER_MB_END & part_mask);
3671                 if (s->mb_x >= lf_x_start)
3672                     loop_filter(h, lf_x_start, s->mb_x + 1);
3673                 return 0;
3674             }
3675             if (ret < 0 || h->cabac.bytestream > h->cabac.bytestream_end + 2) {
3676                 av_log(h->s.avctx, AV_LOG_ERROR,
3677                        "error while decoding MB %d %d, bytestream (%td)\n",
3678                        s->mb_x, s->mb_y,
3679                        h->cabac.bytestream_end - h->cabac.bytestream);
3680                 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x,
3681                                 s->mb_y, ER_MB_ERROR & part_mask);
3682                 return -1;
3683             }
3684
3685             if (++s->mb_x >= s->mb_width) {
3686                 loop_filter(h, lf_x_start, s->mb_x);
3687                 s->mb_x = lf_x_start = 0;
3688                 decode_finish_row(h);
3689                 ++s->mb_y;
3690                 if (FIELD_OR_MBAFF_PICTURE) {
3691                     ++s->mb_y;
3692                     if (FRAME_MBAFF && s->mb_y < s->mb_height)
3693                         predict_field_decoding_flag(h);
3694                 }
3695             }
3696
3697             if (eos || s->mb_y >= s->mb_height) {
3698                 tprintf(s->avctx, "slice end %d %d\n",
3699                         get_bits_count(&s->gb), s->gb.size_in_bits);
3700                 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x - 1,
3701                                 s->mb_y, ER_MB_END & part_mask);
3702                 if (s->mb_x > lf_x_start)
3703                     loop_filter(h, lf_x_start, s->mb_x);
3704                 return 0;
3705             }
3706         }
3707     } else {
3708         for (;;) {
3709             int ret = ff_h264_decode_mb_cavlc(h);
3710
3711             if (ret >= 0)
3712                 ff_h264_hl_decode_mb(h);
3713
3714             // FIXME optimal? or let mb_decode decode 16x32 ?
3715             if (ret >= 0 && FRAME_MBAFF) {
3716                 s->mb_y++;
3717                 ret = ff_h264_decode_mb_cavlc(h);
3718
3719                 if (ret >= 0)
3720                     ff_h264_hl_decode_mb(h);
3721                 s->mb_y--;
3722             }
3723
3724             if (ret < 0) {
3725                 av_log(h->s.avctx, AV_LOG_ERROR,
3726                        "error while decoding MB %d %d\n", s->mb_x, s->mb_y);
3727                 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x,
3728                                 s->mb_y, ER_MB_ERROR & part_mask);
3729                 return -1;
3730             }
3731
3732             if (++s->mb_x >= s->mb_width) {
3733                 loop_filter(h, lf_x_start, s->mb_x);
3734                 s->mb_x = lf_x_start = 0;
3735                 decode_finish_row(h);
3736                 ++s->mb_y;
3737                 if (FIELD_OR_MBAFF_PICTURE) {
3738                     ++s->mb_y;
3739                     if (FRAME_MBAFF && s->mb_y < s->mb_height)
3740                         predict_field_decoding_flag(h);
3741                 }
3742                 if (s->mb_y >= s->mb_height) {
3743                     tprintf(s->avctx, "slice end %d %d\n",
3744                             get_bits_count(&s->gb), s->gb.size_in_bits);
3745
3746                     if (get_bits_left(&s->gb) == 0) {
3747                         ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y,
3748                                         s->mb_x - 1, s->mb_y,
3749                                         ER_MB_END & part_mask);
3750
3751                         return 0;
3752                     } else {
3753                         ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y,
3754                                         s->mb_x - 1, s->mb_y,
3755                                         ER_MB_END & part_mask);
3756
3757                         return -1;
3758                     }
3759                 }
3760             }
3761
3762             if (get_bits_left(&s->gb) <= 0 && s->mb_skip_run <= 0) {
3763                 tprintf(s->avctx, "slice end %d %d\n",
3764                         get_bits_count(&s->gb), s->gb.size_in_bits);
3765                 if (get_bits_left(&s->gb) == 0) {
3766                     ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y,
3767                                     s->mb_x - 1, s->mb_y,
3768                                     ER_MB_END & part_mask);
3769                     if (s->mb_x > lf_x_start)
3770                         loop_filter(h, lf_x_start, s->mb_x);
3771
3772                     return 0;
3773                 } else {
3774                     ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x,
3775                                     s->mb_y, ER_MB_ERROR & part_mask);
3776
3777                     return -1;
3778                 }
3779             }
3780         }
3781     }
3782 }
3783
3784 /**
3785  * Call decode_slice() for each context.
3786  *
3787  * @param h h264 master context
3788  * @param context_count number of contexts to execute
3789  */
3790 static int execute_decode_slices(H264Context *h, int context_count)
3791 {
3792     MpegEncContext *const s     = &h->s;
3793     AVCodecContext *const avctx = s->avctx;
3794     H264Context *hx;
3795     int i;
3796
3797     if (s->avctx->hwaccel ||
3798         s->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
3799         return 0;
3800     if (context_count == 1) {
3801         return decode_slice(avctx, &h);
3802     } else {
3803         for (i = 1; i < context_count; i++) {
3804             hx                    = h->thread_context[i];
3805             hx->s.err_recognition = avctx->err_recognition;
3806             hx->s.error_count     = 0;
3807         }
3808
3809         avctx->execute(avctx, decode_slice, h->thread_context,
3810                        NULL, context_count, sizeof(void *));
3811
3812         /* pull back stuff from slices to master context */
3813         hx                   = h->thread_context[context_count - 1];
3814         s->mb_x              = hx->s.mb_x;
3815         s->mb_y              = hx->s.mb_y;
3816         s->droppable         = hx->s.droppable;
3817         s->picture_structure = hx->s.picture_structure;
3818         for (i = 1; i < context_count; i++)
3819             h->s.error_count += h->thread_context[i]->s.error_count;
3820     }
3821
3822     return 0;
3823 }
3824
3825 static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size,
3826                             int parse_extradata)
3827 {
3828     MpegEncContext *const s     = &h->s;
3829     AVCodecContext *const avctx = s->avctx;
3830     H264Context *hx; ///< thread context
3831     int buf_index;
3832     int context_count;
3833     int next_avc;
3834     int pass = !(avctx->active_thread_type & FF_THREAD_FRAME);
3835     int nals_needed = 0; ///< number of NALs that need decoding before the next frame thread starts
3836     int nal_index;
3837
3838     h->max_contexts = s->slice_context_count;
3839     if (!(s->flags2 & CODEC_FLAG2_CHUNKS)) {
3840         h->current_slice = 0;
3841         if (!s->first_field)
3842             s->current_picture_ptr = NULL;
3843         ff_h264_reset_sei(h);
3844     }
3845
3846     for (; pass <= 1; pass++) {
3847         buf_index     = 0;
3848         context_count = 0;
3849         next_avc      = h->is_avc ? 0 : buf_size;
3850         nal_index     = 0;
3851         for (;;) {
3852             int consumed;
3853             int dst_length;
3854             int bit_length;
3855             const uint8_t *ptr;
3856             int i, nalsize = 0;
3857             int err;
3858
3859             if (buf_index >= next_avc) {
3860                 if (buf_index >= buf_size - h->nal_length_size)
3861                     break;
3862                 nalsize = 0;
3863                 for (i = 0; i < h->nal_length_size; i++)
3864                     nalsize = (nalsize << 8) | buf[buf_index++];
3865                 if (nalsize <= 0 || nalsize > buf_size - buf_index) {
3866                     av_log(h->s.avctx, AV_LOG_ERROR,
3867                            "AVC: nal size %d\n", nalsize);
3868                     break;
3869                 }
3870                 next_avc = buf_index + nalsize;
3871             } else {
3872                 // start code prefix search
3873                 for (; buf_index + 3 < next_avc; buf_index++)
3874                     // This should always succeed in the first iteration.
3875                     if (buf[buf_index]     == 0 &&
3876                         buf[buf_index + 1] == 0 &&
3877                         buf[buf_index + 2] == 1)
3878                         break;
3879
3880                 if (buf_index + 3 >= buf_size) {
3881                     buf_index = buf_size;
3882                     break;
3883                 }
3884
3885                 buf_index += 3;
3886                 if (buf_index >= next_avc)
3887                     continue;
3888             }
3889
3890             hx = h->thread_context[context_count];
3891
3892             ptr = ff_h264_decode_nal(hx, buf + buf_index, &dst_length,
3893                                      &consumed, next_avc - buf_index);
3894             if (ptr == NULL || dst_length < 0) {
3895                 buf_index = -1;
3896                 goto end;
3897             }
3898             i = buf_index + consumed;
3899             if ((s->workaround_bugs & FF_BUG_AUTODETECT) && i + 3 < next_avc &&
3900                 buf[i]     == 0x00 && buf[i + 1] == 0x00 &&
3901                 buf[i + 2] == 0x01 && buf[i + 3] == 0xE0)
3902                 s->workaround_bugs |= FF_BUG_TRUNCATED;
3903
3904             if (!(s->workaround_bugs & FF_BUG_TRUNCATED))
3905                 while (ptr[dst_length - 1] == 0 && dst_length > 0)
3906                     dst_length--;
3907             bit_length = !dst_length ? 0
3908                                      : (8 * dst_length -
3909                                         decode_rbsp_trailing(h, ptr + dst_length - 1));
3910
3911             if (s->avctx->debug & FF_DEBUG_STARTCODE)
3912                 av_log(h->s.avctx, AV_LOG_DEBUG,
3913                        "NAL %d at %d/%d length %d\n",
3914                        hx->nal_unit_type, buf_index, buf_size, dst_length);
3915
3916             if (h->is_avc && (nalsize != consumed) && nalsize)
3917                 av_log(h->s.avctx, AV_LOG_DEBUG,
3918                        "AVC: Consumed only %d bytes instead of %d\n",
3919                        consumed, nalsize);
3920
3921             buf_index += consumed;
3922             nal_index++;
3923
3924             if (pass == 0) {
3925                 /* packets can sometimes contain multiple PPS/SPS,
3926                  * e.g. two PAFF field pictures in one packet, or a demuxer
3927                  * which splits NALs strangely if so, when frame threading we
3928                  * can't start the next thread until we've read all of them */
3929                 switch (hx->nal_unit_type) {
3930                 case NAL_SPS:
3931                 case NAL_PPS:
3932                     nals_needed = nal_index;
3933                     break;
3934                 case NAL_DPA:
3935                 case NAL_IDR_SLICE:
3936                 case NAL_SLICE:
3937                     init_get_bits(&hx->s.gb, ptr, bit_length);
3938                     if (!get_ue_golomb(&hx->s.gb))
3939                         nals_needed = nal_index;
3940                 }
3941                 continue;
3942             }
3943
3944             // FIXME do not discard SEI id
3945             if (avctx->skip_frame >= AVDISCARD_NONREF && h->nal_ref_idc == 0)
3946                 continue;
3947
3948 again:
3949             /* Ignore every NAL unit type except PPS and SPS during extradata
3950              * parsing. Decoding slices is not possible in codec init
3951              * with frame-mt */
3952             if (parse_extradata && HAVE_THREADS &&
3953                 (s->avctx->active_thread_type & FF_THREAD_FRAME) &&
3954                 (hx->nal_unit_type != NAL_PPS &&
3955                  hx->nal_unit_type != NAL_SPS)) {
3956                 av_log(avctx, AV_LOG_INFO, "Ignoring NAL unit %d during "
3957                        "extradata parsing\n", hx->nal_unit_type);
3958                 hx->nal_unit_type = NAL_FF_IGNORE;
3959             }
3960             err = 0;
3961             switch (hx->nal_unit_type) {
3962             case NAL_IDR_SLICE:
3963                 if (h->nal_unit_type != NAL_IDR_SLICE) {
3964                     av_log(h->s.avctx, AV_LOG_ERROR,
3965                            "Invalid mix of idr and non-idr slices\n");
3966                     buf_index = -1;
3967                     goto end;
3968                 }
3969                 idr(h); // FIXME ensure we don't lose some frames if there is reordering
3970             case NAL_SLICE:
3971                 init_get_bits(&hx->s.gb, ptr, bit_length);
3972                 hx->intra_gb_ptr        =
3973                     hx->inter_gb_ptr    = &hx->s.gb;
3974                 hx->s.data_partitioning = 0;
3975
3976                 if ((err = decode_slice_header(hx, h)))
3977                     break;
3978
3979                 s->current_picture_ptr->f.key_frame |=
3980                     (hx->nal_unit_type == NAL_IDR_SLICE) ||
3981                     (h->sei_recovery_frame_cnt >= 0);
3982
3983                 if (h->current_slice == 1) {
3984                     if (!(s->flags2 & CODEC_FLAG2_CHUNKS))
3985                         decode_postinit(h, nal_index >= nals_needed);
3986
3987                     if (s->avctx->hwaccel &&
3988                         s->avctx->hwaccel->start_frame(s->avctx, NULL, 0) < 0)
3989                         return -1;
3990                     if (CONFIG_H264_VDPAU_DECODER &&
3991                         s->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
3992                         ff_vdpau_h264_picture_start(s);
3993                 }
3994
3995                 if (hx->redundant_pic_count == 0 &&
3996                     (avctx->skip_frame < AVDISCARD_NONREF ||
3997                      hx->nal_ref_idc) &&
3998                     (avctx->skip_frame < AVDISCARD_BIDIR  ||
3999                      hx->slice_type_nos != AV_PICTURE_TYPE_B) &&
4000                     (avctx->skip_frame < AVDISCARD_NONKEY ||
4001                      hx->slice_type_nos == AV_PICTURE_TYPE_I) &&
4002                     avctx->skip_frame < AVDISCARD_ALL) {
4003                     if (avctx->hwaccel) {
4004                         if (avctx->hwaccel->decode_slice(avctx,
4005                                                          &buf[buf_index - consumed],
4006                                                          consumed) < 0)
4007                             return -1;
4008                     } else if (CONFIG_H264_VDPAU_DECODER &&
4009                                s->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU) {
4010                         static const uint8_t start_code[] = {
4011                             0x00, 0x00, 0x01 };
4012                         ff_vdpau_add_data_chunk(s, start_code,
4013                                                 sizeof(start_code));
4014                         ff_vdpau_add_data_chunk(s, &buf[buf_index - consumed],
4015                                                 consumed);
4016                     } else
4017                         context_count++;
4018                 }
4019                 break;
4020             case NAL_DPA:
4021                 init_get_bits(&hx->s.gb, ptr, bit_length);
4022                 hx->intra_gb_ptr =
4023                 hx->inter_gb_ptr = NULL;
4024
4025                 if ((err = decode_slice_header(hx, h)) < 0)
4026                     break;
4027
4028                 hx->s.data_partitioning = 1;
4029                 break;
4030             case NAL_DPB:
4031                 init_get_bits(&hx->intra_gb, ptr, bit_length);
4032                 hx->intra_gb_ptr = &hx->intra_gb;
4033                 break;
4034             case NAL_DPC:
4035                 init_get_bits(&hx->inter_gb, ptr, bit_length);
4036                 hx->inter_gb_ptr = &hx->inter_gb;
4037
4038                 if (hx->redundant_pic_count == 0 &&
4039                     hx->intra_gb_ptr &&
4040                     hx->s.data_partitioning &&
4041                     s->current_picture_ptr &&
4042                     s->context_initialized &&
4043                     (avctx->skip_frame < AVDISCARD_NONREF || hx->nal_ref_idc) &&
4044                     (avctx->skip_frame < AVDISCARD_BIDIR  ||
4045                      hx->slice_type_nos != AV_PICTURE_TYPE_B) &&
4046                     (avctx->skip_frame < AVDISCARD_NONKEY ||
4047                      hx->slice_type_nos == AV_PICTURE_TYPE_I) &&
4048                     avctx->skip_frame < AVDISCARD_ALL)
4049                     context_count++;
4050                 break;
4051             case NAL_SEI:
4052                 init_get_bits(&s->gb, ptr, bit_length);
4053                 ff_h264_decode_sei(h);
4054                 break;
4055             case NAL_SPS:
4056                 init_get_bits(&s->gb, ptr, bit_length);
4057                 if (ff_h264_decode_seq_parameter_set(h) < 0 &&
4058                     h->is_avc && (nalsize != consumed) && nalsize) {
4059                     av_log(h->s.avctx, AV_LOG_DEBUG,
4060                            "SPS decoding failure, trying again with the complete NAL\n");
4061                     init_get_bits(&s->gb, buf + buf_index + 1 - consumed,
4062                                   8 * (nalsize - 1));
4063                     ff_h264_decode_seq_parameter_set(h);
4064                 }
4065
4066                 if (h264_set_parameter_from_sps(h) < 0) {
4067                     buf_index = -1;
4068                     goto end;
4069                 }
4070                 break;
4071             case NAL_PPS:
4072                 init_get_bits(&s->gb, ptr, bit_length);
4073                 ff_h264_decode_picture_parameter_set(h, bit_length);
4074                 break;
4075             case NAL_AUD:
4076             case NAL_END_SEQUENCE:
4077             case NAL_END_STREAM:
4078             case NAL_FILLER_DATA:
4079             case NAL_SPS_EXT:
4080             case NAL_AUXILIARY_SLICE:
4081                 break;
4082             case NAL_FF_IGNORE:
4083                 break;
4084             default:
4085                 av_log(avctx, AV_LOG_DEBUG, "Unknown NAL code: %d (%d bits)\n",
4086                        hx->nal_unit_type, bit_length);
4087             }
4088
4089             if (context_count == h->max_contexts) {
4090                 execute_decode_slices(h, context_count);
4091                 context_count = 0;
4092             }
4093
4094             if (err < 0)
4095                 av_log(h->s.avctx, AV_LOG_ERROR, "decode_slice_header error\n");
4096             else if (err == 1) {
4097                 /* Slice could not be decoded in parallel mode, copy down
4098                  * NAL unit stuff to context 0 and restart. Note that
4099                  * rbsp_buffer is not transferred, but since we no longer
4100                  * run in parallel mode this should not be an issue. */
4101                 h->nal_unit_type = hx->nal_unit_type;
4102                 h->nal_ref_idc   = hx->nal_ref_idc;
4103                 hx               = h;
4104                 goto again;
4105             }
4106         }
4107     }
4108     if (context_count)
4109         execute_decode_slices(h, context_count);
4110
4111 end:
4112     /* clean up */
4113     if (s->current_picture_ptr && s->current_picture_ptr->owner2 == s &&
4114         !s->droppable) {
4115         ff_thread_report_progress(&s->current_picture_ptr->f, INT_MAX,
4116                                   s->picture_structure == PICT_BOTTOM_FIELD);
4117     }
4118
4119     return buf_index;
4120 }
4121
4122 /**
4123  * Return the number of bytes consumed for building the current frame.
4124  */
4125 static int get_consumed_bytes(MpegEncContext *s, int pos, int buf_size)
4126 {
4127     if (pos == 0)
4128         pos = 1;          // avoid infinite loops (i doubt that is needed but ...)
4129     if (pos + 10 > buf_size)
4130         pos = buf_size;                   // oops ;)
4131
4132     return pos;
4133 }
4134
4135 static int decode_frame(AVCodecContext *avctx, void *data,
4136                         int *got_frame, AVPacket *avpkt)
4137 {
4138     const uint8_t *buf = avpkt->data;
4139     int buf_size       = avpkt->size;
4140     H264Context *h     = avctx->priv_data;
4141     MpegEncContext *s  = &h->s;
4142     AVFrame *pict      = data;
4143     int buf_index      = 0;
4144
4145     s->flags  = avctx->flags;
4146     s->flags2 = avctx->flags2;
4147
4148     /* end of stream, output what is still in the buffers */
4149 out:
4150     if (buf_size == 0) {
4151         Picture *out;
4152         int i, out_idx;
4153
4154         s->current_picture_ptr = NULL;
4155
4156         // FIXME factorize this with the output code below
4157         out     = h->delayed_pic[0];
4158         out_idx = 0;
4159         for (i = 1;
4160              h->delayed_pic[i] &&
4161              !h->delayed_pic[i]->f.key_frame &&
4162              !h->delayed_pic[i]->mmco_reset;
4163              i++)
4164             if (h->delayed_pic[i]->poc < out->poc) {
4165                 out     = h->delayed_pic[i];
4166                 out_idx = i;
4167             }
4168
4169         for (i = out_idx; h->delayed_pic[i]; i++)
4170             h->delayed_pic[i] = h->delayed_pic[i + 1];
4171
4172         if (out) {
4173             *got_frame = 1;
4174             *pict      = out->f;
4175         }
4176
4177         return buf_index;
4178     }
4179
4180     buf_index = decode_nal_units(h, buf, buf_size, 0);
4181     if (buf_index < 0)
4182         return -1;
4183
4184     if (!s->current_picture_ptr && h->nal_unit_type == NAL_END_SEQUENCE) {
4185         buf_size = 0;
4186         goto out;
4187     }
4188
4189     if (!(s->flags2 & CODEC_FLAG2_CHUNKS) && !s->current_picture_ptr) {
4190         if (avctx->skip_frame >= AVDISCARD_NONREF)
4191             return 0;
4192         av_log(avctx, AV_LOG_ERROR, "no frame!\n");
4193         return -1;
4194     }
4195
4196     if (!(s->flags2 & CODEC_FLAG2_CHUNKS) ||
4197         (s->mb_y >= s->mb_height && s->mb_height)) {
4198         if (s->flags2 & CODEC_FLAG2_CHUNKS)
4199             decode_postinit(h, 1);
4200
4201         field_end(h, 0);
4202         h->context_reinitialized = 0;
4203
4204         if (!h->next_output_pic) {
4205             /* Wait for second field. */
4206             *got_frame = 0;
4207         } else {
4208             *got_frame = 1;
4209             *pict      = h->next_output_pic->f;
4210         }
4211     }
4212
4213     assert(pict->data[0] || !*got_frame);
4214     ff_print_debug_info(s, pict);
4215
4216     return get_consumed_bytes(s, buf_index, buf_size);
4217 }
4218
4219 av_cold void ff_h264_free_context(H264Context *h)
4220 {
4221     int i;
4222
4223     free_tables(h, 1); // FIXME cleanup init stuff perhaps
4224
4225     for (i = 0; i < MAX_SPS_COUNT; i++)
4226         av_freep(h->sps_buffers + i);
4227
4228     for (i = 0; i < MAX_PPS_COUNT; i++)
4229         av_freep(h->pps_buffers + i);
4230 }
4231
4232 static av_cold int h264_decode_end(AVCodecContext *avctx)
4233 {
4234     H264Context *h    = avctx->priv_data;
4235     MpegEncContext *s = &h->s;
4236
4237     ff_h264_free_context(h);
4238
4239     ff_MPV_common_end(s);
4240
4241     // memset(h, 0, sizeof(H264Context));
4242
4243     return 0;
4244 }
4245
4246 static const AVProfile profiles[] = {
4247     { FF_PROFILE_H264_BASELINE,             "Baseline"              },
4248     { FF_PROFILE_H264_CONSTRAINED_BASELINE, "Constrained Baseline"  },
4249     { FF_PROFILE_H264_MAIN,                 "Main"                  },
4250     { FF_PROFILE_H264_EXTENDED,             "Extended"              },
4251     { FF_PROFILE_H264_HIGH,                 "High"                  },
4252     { FF_PROFILE_H264_HIGH_10,              "High 10"               },
4253     { FF_PROFILE_H264_HIGH_10_INTRA,        "High 10 Intra"         },
4254     { FF_PROFILE_H264_HIGH_422,             "High 4:2:2"            },
4255     { FF_PROFILE_H264_HIGH_422_INTRA,       "High 4:2:2 Intra"      },
4256     { FF_PROFILE_H264_HIGH_444,             "High 4:4:4"            },
4257     { FF_PROFILE_H264_HIGH_444_PREDICTIVE,  "High 4:4:4 Predictive" },
4258     { FF_PROFILE_H264_HIGH_444_INTRA,       "High 4:4:4 Intra"      },
4259     { FF_PROFILE_H264_CAVLC_444,            "CAVLC 4:4:4"           },
4260     { FF_PROFILE_UNKNOWN },
4261 };
4262
4263 AVCodec ff_h264_decoder = {
4264     .name                  = "h264",
4265     .type                  = AVMEDIA_TYPE_VIDEO,
4266     .id                    = AV_CODEC_ID_H264,
4267     .priv_data_size        = sizeof(H264Context),
4268     .init                  = ff_h264_decode_init,
4269     .close                 = h264_decode_end,
4270     .decode                = decode_frame,
4271     .capabilities          = /*CODEC_CAP_DRAW_HORIZ_BAND |*/ CODEC_CAP_DR1 |
4272                              CODEC_CAP_DELAY | CODEC_CAP_SLICE_THREADS |
4273                              CODEC_CAP_FRAME_THREADS,
4274     .flush                 = flush_dpb,
4275     .long_name             = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
4276     .init_thread_copy      = ONLY_IF_THREADS_ENABLED(decode_init_thread_copy),
4277     .update_thread_context = ONLY_IF_THREADS_ENABLED(decode_update_thread_context),
4278     .profiles              = NULL_IF_CONFIG_SMALL(profiles),
4279 };
4280
4281 #if CONFIG_H264_VDPAU_DECODER
4282 AVCodec ff_h264_vdpau_decoder = {
4283     .name           = "h264_vdpau",
4284     .type           = AVMEDIA_TYPE_VIDEO,
4285     .id             = AV_CODEC_ID_H264,
4286     .priv_data_size = sizeof(H264Context),
4287     .init           = ff_h264_decode_init,
4288     .close          = h264_decode_end,
4289     .decode         = decode_frame,
4290     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_DELAY | CODEC_CAP_HWACCEL_VDPAU,
4291     .flush          = flush_dpb,
4292     .long_name      = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (VDPAU acceleration)"),
4293     .pix_fmts       = (const enum AVPixelFormat[]) { AV_PIX_FMT_VDPAU_H264,
4294                                                    AV_PIX_FMT_NONE},
4295     .profiles       = NULL_IF_CONFIG_SMALL(profiles),
4296 };
4297 #endif