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