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