]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264.c
Merge commit '7ef760d95c73dfee021b8fdee04f65126eb7edd1'
[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[4]  = { LEFT_DC_PRED8x8, 1, -1, -1 };
482     static const int8_t left[5] = { TOP_DC_PRED8x8, -1, 2, -1, DC_128_PRED8x8 };
483
484     if (mode > 3U) {
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     h->current_sps_id = -1;
1482
1483     /* needed so that IDCT permutation is known early */
1484     if (CONFIG_ERROR_RESILIENCE)
1485         ff_dsputil_init(&h->dsp, h->avctx);
1486     ff_videodsp_init(&h->vdsp, 8);
1487
1488     memset(h->pps.scaling_matrix4, 16, 6 * 16 * sizeof(uint8_t));
1489     memset(h->pps.scaling_matrix8, 16, 2 * 64 * sizeof(uint8_t));
1490
1491     h->picture_structure   = PICT_FRAME;
1492     h->slice_context_count = 1;
1493     h->workaround_bugs     = avctx->workaround_bugs;
1494     h->flags               = avctx->flags;
1495
1496     /* set defaults */
1497     // s->decode_mb = ff_h263_decode_mb;
1498     if (!avctx->has_b_frames)
1499         h->low_delay = 1;
1500
1501     avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
1502
1503     ff_h264_decode_init_vlc();
1504
1505     h->pixel_shift = 0;
1506     h->sps.bit_depth_luma = avctx->bits_per_raw_sample = 8;
1507
1508     h->thread_context[0] = h;
1509     h->outputed_poc      = h->next_outputed_poc = INT_MIN;
1510     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
1511         h->last_pocs[i] = INT_MIN;
1512     h->prev_poc_msb = 1 << 16;
1513     h->prev_frame_num = -1;
1514     h->x264_build   = -1;
1515     h->sei_fpa.frame_packing_arrangement_cancel_flag = -1;
1516     ff_h264_reset_sei(h);
1517     if (avctx->codec_id == AV_CODEC_ID_H264) {
1518         if (avctx->ticks_per_frame == 1) {
1519             if(h->avctx->time_base.den < INT_MAX/2) {
1520                 h->avctx->time_base.den *= 2;
1521             } else
1522                 h->avctx->time_base.num /= 2;
1523         }
1524         avctx->ticks_per_frame = 2;
1525     }
1526
1527     if (avctx->extradata_size > 0 && avctx->extradata &&
1528         ff_h264_decode_extradata(h, avctx->extradata, avctx->extradata_size) < 0) {
1529         ff_h264_free_context(h);
1530         return -1;
1531     }
1532
1533     if (h->sps.bitstream_restriction_flag &&
1534         h->avctx->has_b_frames < h->sps.num_reorder_frames) {
1535         h->avctx->has_b_frames = h->sps.num_reorder_frames;
1536         h->low_delay           = 0;
1537     }
1538
1539     ff_init_cabac_states();
1540     avctx->internal->allocate_progress = 1;
1541
1542     return 0;
1543 }
1544
1545 #define IN_RANGE(a, b, size) (((a) >= (b)) && ((a) < ((b) + (size))))
1546 #undef REBASE_PICTURE
1547 #define REBASE_PICTURE(pic, new_ctx, old_ctx)             \
1548     ((pic && pic >= old_ctx->DPB &&                       \
1549       pic < old_ctx->DPB + MAX_PICTURE_COUNT) ?      \
1550         &new_ctx->DPB[pic - old_ctx->DPB] : NULL)
1551
1552 static void copy_picture_range(Picture **to, Picture **from, int count,
1553                                H264Context *new_base,
1554                                H264Context *old_base)
1555 {
1556     int i;
1557
1558     for (i = 0; i < count; i++) {
1559         assert((IN_RANGE(from[i], old_base, sizeof(*old_base)) ||
1560                 IN_RANGE(from[i], old_base->DPB,
1561                          sizeof(Picture) * MAX_PICTURE_COUNT) ||
1562                 !from[i]));
1563         to[i] = REBASE_PICTURE(from[i], new_base, old_base);
1564     }
1565 }
1566
1567 static void copy_parameter_set(void **to, void **from, int count, int size)
1568 {
1569     int i;
1570
1571     for (i = 0; i < count; i++) {
1572         if (to[i] && !from[i])
1573             av_freep(&to[i]);
1574         else if (from[i] && !to[i])
1575             to[i] = av_malloc(size);
1576
1577         if (from[i])
1578             memcpy(to[i], from[i], size);
1579     }
1580 }
1581
1582 static int decode_init_thread_copy(AVCodecContext *avctx)
1583 {
1584     H264Context *h = avctx->priv_data;
1585
1586     if (!avctx->internal->is_copy)
1587         return 0;
1588     memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
1589     memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
1590
1591     h->context_initialized = 0;
1592
1593     return 0;
1594 }
1595
1596 #define copy_fields(to, from, start_field, end_field)                   \
1597     memcpy(&to->start_field, &from->start_field,                        \
1598            (char *)&to->end_field - (char *)&to->start_field)
1599
1600 static int h264_slice_header_init(H264Context *, int);
1601
1602 static int h264_set_parameter_from_sps(H264Context *h);
1603
1604 static int decode_update_thread_context(AVCodecContext *dst,
1605                                         const AVCodecContext *src)
1606 {
1607     H264Context *h = dst->priv_data, *h1 = src->priv_data;
1608     int inited = h->context_initialized, err = 0;
1609     int context_reinitialized = 0;
1610     int i, ret;
1611
1612     if (dst == src)
1613         return 0;
1614
1615     if (inited &&
1616         (h->width      != h1->width      ||
1617          h->height     != h1->height     ||
1618          h->mb_width   != h1->mb_width   ||
1619          h->mb_height  != h1->mb_height  ||
1620          h->sps.bit_depth_luma    != h1->sps.bit_depth_luma    ||
1621          h->sps.chroma_format_idc != h1->sps.chroma_format_idc ||
1622          h->sps.colorspace        != h1->sps.colorspace)) {
1623
1624         /* set bits_per_raw_sample to the previous value. the check for changed
1625          * bit depth in h264_set_parameter_from_sps() uses it and sets it to
1626          * the current value */
1627         h->avctx->bits_per_raw_sample = h->sps.bit_depth_luma;
1628
1629         av_freep(&h->bipred_scratchpad);
1630
1631         h->width     = h1->width;
1632         h->height    = h1->height;
1633         h->mb_height = h1->mb_height;
1634         h->mb_width  = h1->mb_width;
1635         h->mb_num    = h1->mb_num;
1636         h->mb_stride = h1->mb_stride;
1637         h->b_stride  = h1->b_stride;
1638         // SPS/PPS
1639         copy_parameter_set((void **)h->sps_buffers, (void **)h1->sps_buffers,
1640                         MAX_SPS_COUNT, sizeof(SPS));
1641         h->sps = h1->sps;
1642         copy_parameter_set((void **)h->pps_buffers, (void **)h1->pps_buffers,
1643                         MAX_PPS_COUNT, sizeof(PPS));
1644         h->pps = h1->pps;
1645
1646         if ((err = h264_slice_header_init(h, 1)) < 0) {
1647             av_log(h->avctx, AV_LOG_ERROR, "h264_slice_header_init() failed");
1648             return err;
1649         }
1650         context_reinitialized = 1;
1651
1652 #if 0
1653         h264_set_parameter_from_sps(h);
1654         //Note we set context_reinitialized which will cause h264_set_parameter_from_sps to be reexecuted
1655         h->cur_chroma_format_idc = h1->cur_chroma_format_idc;
1656 #endif
1657     }
1658     /* update linesize on resize for h264. The h264 decoder doesn't
1659      * necessarily call ff_MPV_frame_start in the new thread */
1660     h->linesize   = h1->linesize;
1661     h->uvlinesize = h1->uvlinesize;
1662
1663     /* copy block_offset since frame_start may not be called */
1664     memcpy(h->block_offset, h1->block_offset, sizeof(h->block_offset));
1665
1666     if (!inited) {
1667         for (i = 0; i < MAX_SPS_COUNT; i++)
1668             av_freep(h->sps_buffers + i);
1669
1670         for (i = 0; i < MAX_PPS_COUNT; i++)
1671             av_freep(h->pps_buffers + i);
1672
1673         memcpy(h, h1, offsetof(H264Context, intra_pcm_ptr));
1674         memcpy(&h->cabac, &h1->cabac,
1675                sizeof(H264Context) - offsetof(H264Context, cabac));
1676         av_assert0((void*)&h->cabac == &h->mb_padding + 1);
1677
1678         memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
1679         memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
1680
1681         memset(&h->er, 0, sizeof(h->er));
1682         memset(&h->me, 0, sizeof(h->me));
1683         memset(&h->mb, 0, sizeof(h->mb));
1684         memset(&h->mb_luma_dc, 0, sizeof(h->mb_luma_dc));
1685         memset(&h->mb_padding, 0, sizeof(h->mb_padding));
1686
1687         h->avctx = dst;
1688         h->DPB   = NULL;
1689         h->qscale_table_pool = NULL;
1690         h->mb_type_pool = NULL;
1691         h->ref_index_pool = NULL;
1692         h->motion_val_pool = NULL;
1693
1694         if (h1->context_initialized) {
1695         h->context_initialized = 0;
1696
1697         memset(&h->cur_pic, 0, sizeof(h->cur_pic));
1698         avcodec_get_frame_defaults(&h->cur_pic.f);
1699         h->cur_pic.tf.f = &h->cur_pic.f;
1700
1701         if (ff_h264_alloc_tables(h) < 0) {
1702             av_log(dst, AV_LOG_ERROR, "Could not allocate memory for h264\n");
1703             return AVERROR(ENOMEM);
1704         }
1705         context_init(h);
1706         }
1707
1708         for (i = 0; i < 2; i++) {
1709             h->rbsp_buffer[i]      = NULL;
1710             h->rbsp_buffer_size[i] = 0;
1711         }
1712         h->bipred_scratchpad = NULL;
1713         h->edge_emu_buffer   = NULL;
1714
1715         h->thread_context[0] = h;
1716         h->context_initialized = h1->context_initialized;
1717     }
1718
1719     h->avctx->coded_height  = h1->avctx->coded_height;
1720     h->avctx->coded_width   = h1->avctx->coded_width;
1721     h->avctx->width         = h1->avctx->width;
1722     h->avctx->height        = h1->avctx->height;
1723     h->coded_picture_number = h1->coded_picture_number;
1724     h->first_field          = h1->first_field;
1725     h->picture_structure    = h1->picture_structure;
1726     h->qscale               = h1->qscale;
1727     h->droppable            = h1->droppable;
1728     h->data_partitioning    = h1->data_partitioning;
1729     h->low_delay            = h1->low_delay;
1730
1731     for (i = 0; h->DPB && i < MAX_PICTURE_COUNT; i++) {
1732         unref_picture(h, &h->DPB[i]);
1733         if (h1->DPB[i].f.data[0] &&
1734             (ret = ref_picture(h, &h->DPB[i], &h1->DPB[i])) < 0)
1735             return ret;
1736     }
1737
1738     h->cur_pic_ptr     = REBASE_PICTURE(h1->cur_pic_ptr, h, h1);
1739     unref_picture(h, &h->cur_pic);
1740     if (h1->cur_pic.f.buf[0] && (ret = ref_picture(h, &h->cur_pic, &h1->cur_pic)) < 0)
1741         return ret;
1742
1743     h->workaround_bugs = h1->workaround_bugs;
1744     h->low_delay       = h1->low_delay;
1745     h->droppable       = h1->droppable;
1746
1747     // extradata/NAL handling
1748     h->is_avc = h1->is_avc;
1749
1750     // SPS/PPS
1751     copy_parameter_set((void **)h->sps_buffers, (void **)h1->sps_buffers,
1752                        MAX_SPS_COUNT, sizeof(SPS));
1753     h->sps = h1->sps;
1754     copy_parameter_set((void **)h->pps_buffers, (void **)h1->pps_buffers,
1755                        MAX_PPS_COUNT, sizeof(PPS));
1756     h->pps = h1->pps;
1757
1758     // Dequantization matrices
1759     // FIXME these are big - can they be only copied when PPS changes?
1760     copy_fields(h, h1, dequant4_buffer, dequant4_coeff);
1761
1762     for (i = 0; i < 6; i++)
1763         h->dequant4_coeff[i] = h->dequant4_buffer[0] +
1764                                (h1->dequant4_coeff[i] - h1->dequant4_buffer[0]);
1765
1766     for (i = 0; i < 6; i++)
1767         h->dequant8_coeff[i] = h->dequant8_buffer[0] +
1768                                (h1->dequant8_coeff[i] - h1->dequant8_buffer[0]);
1769
1770     h->dequant_coeff_pps = h1->dequant_coeff_pps;
1771
1772     // POC timing
1773     copy_fields(h, h1, poc_lsb, redundant_pic_count);
1774
1775     // reference lists
1776     copy_fields(h, h1, short_ref, cabac_init_idc);
1777
1778     copy_picture_range(h->short_ref, h1->short_ref, 32, h, h1);
1779     copy_picture_range(h->long_ref, h1->long_ref, 32, h, h1);
1780     copy_picture_range(h->delayed_pic, h1->delayed_pic,
1781                        MAX_DELAYED_PIC_COUNT + 2, h, h1);
1782
1783     h->sync            = h1->sync;
1784
1785     if (context_reinitialized)
1786         h264_set_parameter_from_sps(h);
1787
1788     if (!h->cur_pic_ptr)
1789         return 0;
1790
1791     if (!h->droppable) {
1792         err = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
1793         h->prev_poc_msb = h->poc_msb;
1794         h->prev_poc_lsb = h->poc_lsb;
1795     }
1796     h->prev_frame_num_offset = h->frame_num_offset;
1797     h->prev_frame_num        = h->frame_num;
1798     h->outputed_poc          = h->next_outputed_poc;
1799
1800     return err;
1801 }
1802
1803 static int h264_frame_start(H264Context *h)
1804 {
1805     Picture *pic;
1806     int i, ret;
1807     const int pixel_shift = h->pixel_shift;
1808     int c[4] = {
1809         1<<(h->sps.bit_depth_luma-1),
1810         1<<(h->sps.bit_depth_chroma-1),
1811         1<<(h->sps.bit_depth_chroma-1),
1812         -1
1813     };
1814
1815     if (!ff_thread_can_start_frame(h->avctx)) {
1816         av_log(h->avctx, AV_LOG_ERROR, "Attempt to start a frame outside SETUP state\n");
1817         return -1;
1818     }
1819
1820     release_unused_pictures(h, 1);
1821     h->cur_pic_ptr = NULL;
1822
1823     i = find_unused_picture(h);
1824     if (i < 0) {
1825         av_log(h->avctx, AV_LOG_ERROR, "no frame buffer available\n");
1826         return i;
1827     }
1828     pic = &h->DPB[i];
1829
1830     pic->reference            = h->droppable ? 0 : h->picture_structure;
1831     pic->f.coded_picture_number = h->coded_picture_number++;
1832     pic->field_picture          = h->picture_structure != PICT_FRAME;
1833
1834     /*
1835      * Zero key_frame here; IDR markings per slice in frame or fields are ORed
1836      * in later.
1837      * See decode_nal_units().
1838      */
1839     pic->f.key_frame = 0;
1840     pic->sync        = 0;
1841     pic->mmco_reset  = 0;
1842
1843     if ((ret = alloc_picture(h, pic)) < 0)
1844         return ret;
1845     if(!h->sync && !h->avctx->hwaccel &&
1846        !(h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU))
1847         avpriv_color_frame(&pic->f, c);
1848
1849     h->cur_pic_ptr = pic;
1850     unref_picture(h, &h->cur_pic);
1851     if ((ret = ref_picture(h, &h->cur_pic, h->cur_pic_ptr)) < 0)
1852         return ret;
1853
1854     if (CONFIG_ERROR_RESILIENCE) {
1855         ff_er_frame_start(&h->er);
1856         h->er.last_pic =
1857         h->er.next_pic = NULL;
1858     }
1859
1860     assert(h->linesize && h->uvlinesize);
1861
1862     for (i = 0; i < 16; i++) {
1863         h->block_offset[i]           = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * h->linesize * ((scan8[i] - scan8[0]) >> 3);
1864         h->block_offset[48 + i]      = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * h->linesize * ((scan8[i] - scan8[0]) >> 3);
1865     }
1866     for (i = 0; i < 16; i++) {
1867         h->block_offset[16 + i]      =
1868         h->block_offset[32 + i]      = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * h->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
1869         h->block_offset[48 + 16 + i] =
1870         h->block_offset[48 + 32 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * h->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
1871     }
1872
1873     // s->decode = (h->flags & CODEC_FLAG_PSNR) || !s->encoding ||
1874     //             h->cur_pic.reference /* || h->contains_intra */ || 1;
1875
1876     /* We mark the current picture as non-reference after allocating it, so
1877      * that if we break out due to an error it can be released automatically
1878      * in the next ff_MPV_frame_start().
1879      */
1880     h->cur_pic_ptr->reference = 0;
1881
1882     h->cur_pic_ptr->field_poc[0] = h->cur_pic_ptr->field_poc[1] = INT_MAX;
1883
1884     h->next_output_pic = NULL;
1885
1886     assert(h->cur_pic_ptr->long_ref == 0);
1887
1888     return 0;
1889 }
1890
1891 /**
1892  * Run setup operations that must be run after slice header decoding.
1893  * This includes finding the next displayed frame.
1894  *
1895  * @param h h264 master context
1896  * @param setup_finished enough NALs have been read that we can call
1897  * ff_thread_finish_setup()
1898  */
1899 static void decode_postinit(H264Context *h, int setup_finished)
1900 {
1901     Picture *out = h->cur_pic_ptr;
1902     Picture *cur = h->cur_pic_ptr;
1903     int i, pics, out_of_order, out_idx;
1904
1905     h->cur_pic_ptr->f.pict_type   = h->pict_type;
1906
1907     if (h->next_output_pic)
1908         return;
1909
1910     if (cur->field_poc[0] == INT_MAX || cur->field_poc[1] == INT_MAX) {
1911         /* FIXME: if we have two PAFF fields in one packet, we can't start
1912          * the next thread here. If we have one field per packet, we can.
1913          * The check in decode_nal_units() is not good enough to find this
1914          * yet, so we assume the worst for now. */
1915         // if (setup_finished)
1916         //    ff_thread_finish_setup(h->avctx);
1917         return;
1918     }
1919
1920     cur->f.interlaced_frame = 0;
1921     cur->f.repeat_pict      = 0;
1922
1923     /* Signal interlacing information externally. */
1924     /* Prioritize picture timing SEI information over used
1925      * decoding process if it exists. */
1926
1927     if (h->sps.pic_struct_present_flag) {
1928         switch (h->sei_pic_struct) {
1929         case SEI_PIC_STRUCT_FRAME:
1930             break;
1931         case SEI_PIC_STRUCT_TOP_FIELD:
1932         case SEI_PIC_STRUCT_BOTTOM_FIELD:
1933             cur->f.interlaced_frame = 1;
1934             break;
1935         case SEI_PIC_STRUCT_TOP_BOTTOM:
1936         case SEI_PIC_STRUCT_BOTTOM_TOP:
1937             if (FIELD_OR_MBAFF_PICTURE(h))
1938                 cur->f.interlaced_frame = 1;
1939             else
1940                 // try to flag soft telecine progressive
1941                 cur->f.interlaced_frame = h->prev_interlaced_frame;
1942             break;
1943         case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
1944         case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
1945             /* Signal the possibility of telecined film externally
1946              * (pic_struct 5,6). From these hints, let the applications
1947              * decide if they apply deinterlacing. */
1948             cur->f.repeat_pict = 1;
1949             break;
1950         case SEI_PIC_STRUCT_FRAME_DOUBLING:
1951             cur->f.repeat_pict = 2;
1952             break;
1953         case SEI_PIC_STRUCT_FRAME_TRIPLING:
1954             cur->f.repeat_pict = 4;
1955             break;
1956         }
1957
1958         if ((h->sei_ct_type & 3) &&
1959             h->sei_pic_struct <= SEI_PIC_STRUCT_BOTTOM_TOP)
1960             cur->f.interlaced_frame = (h->sei_ct_type & (1 << 1)) != 0;
1961     } else {
1962         /* Derive interlacing flag from used decoding process. */
1963         cur->f.interlaced_frame = FIELD_OR_MBAFF_PICTURE(h);
1964     }
1965     h->prev_interlaced_frame = cur->f.interlaced_frame;
1966
1967     if (cur->field_poc[0] != cur->field_poc[1]) {
1968         /* Derive top_field_first from field pocs. */
1969         cur->f.top_field_first = cur->field_poc[0] < cur->field_poc[1];
1970     } else {
1971         if (cur->f.interlaced_frame || h->sps.pic_struct_present_flag) {
1972             /* Use picture timing SEI information. Even if it is a
1973              * information of a past frame, better than nothing. */
1974             if (h->sei_pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM ||
1975                 h->sei_pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM_TOP)
1976                 cur->f.top_field_first = 1;
1977             else
1978                 cur->f.top_field_first = 0;
1979         } else {
1980             /* Most likely progressive */
1981             cur->f.top_field_first = 0;
1982         }
1983     }
1984
1985     cur->mmco_reset = h->mmco_reset;
1986     h->mmco_reset = 0;
1987     // FIXME do something with unavailable reference frames
1988
1989     /* Sort B-frames into display order */
1990
1991     if (h->sps.bitstream_restriction_flag &&
1992         h->avctx->has_b_frames < h->sps.num_reorder_frames) {
1993         h->avctx->has_b_frames = h->sps.num_reorder_frames;
1994         h->low_delay           = 0;
1995     }
1996
1997     if (h->avctx->strict_std_compliance >= FF_COMPLIANCE_STRICT &&
1998         !h->sps.bitstream_restriction_flag) {
1999         h->avctx->has_b_frames = MAX_DELAYED_PIC_COUNT - 1;
2000         h->low_delay           = 0;
2001     }
2002
2003     for (i = 0; 1; i++) {
2004         if(i == MAX_DELAYED_PIC_COUNT || cur->poc < h->last_pocs[i]){
2005             if(i)
2006                 h->last_pocs[i-1] = cur->poc;
2007             break;
2008         } else if(i) {
2009             h->last_pocs[i-1]= h->last_pocs[i];
2010         }
2011     }
2012     out_of_order = MAX_DELAYED_PIC_COUNT - i;
2013     if(   cur->f.pict_type == AV_PICTURE_TYPE_B
2014        || (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))
2015         out_of_order = FFMAX(out_of_order, 1);
2016     if (out_of_order == MAX_DELAYED_PIC_COUNT) {
2017         av_log(h->avctx, AV_LOG_VERBOSE, "Invalid POC %d<%d\n", cur->poc, h->last_pocs[0]);
2018         for (i = 1; i < MAX_DELAYED_PIC_COUNT; i++)
2019             h->last_pocs[i] = INT_MIN;
2020         h->last_pocs[0] = cur->poc;
2021         cur->mmco_reset = 1;
2022     } else if(h->avctx->has_b_frames < out_of_order && !h->sps.bitstream_restriction_flag){
2023         av_log(h->avctx, AV_LOG_VERBOSE, "Increasing reorder buffer to %d\n", out_of_order);
2024         h->avctx->has_b_frames = out_of_order;
2025         h->low_delay = 0;
2026     }
2027
2028     pics = 0;
2029     while (h->delayed_pic[pics])
2030         pics++;
2031
2032     av_assert0(pics <= MAX_DELAYED_PIC_COUNT);
2033
2034     h->delayed_pic[pics++] = cur;
2035     if (cur->reference == 0)
2036         cur->reference = DELAYED_PIC_REF;
2037
2038     out = h->delayed_pic[0];
2039     out_idx = 0;
2040     for (i = 1; h->delayed_pic[i] &&
2041                 !h->delayed_pic[i]->f.key_frame &&
2042                 !h->delayed_pic[i]->mmco_reset;
2043          i++)
2044         if (h->delayed_pic[i]->poc < out->poc) {
2045             out     = h->delayed_pic[i];
2046             out_idx = i;
2047         }
2048     if (h->avctx->has_b_frames == 0 &&
2049         (h->delayed_pic[0]->f.key_frame || h->delayed_pic[0]->mmco_reset))
2050         h->next_outputed_poc = INT_MIN;
2051     out_of_order = out->poc < h->next_outputed_poc;
2052
2053     if (out_of_order || pics > h->avctx->has_b_frames) {
2054         out->reference &= ~DELAYED_PIC_REF;
2055         // for frame threading, the owner must be the second field's thread or
2056         // else the first thread can release the picture and reuse it unsafely
2057         for (i = out_idx; h->delayed_pic[i]; i++)
2058             h->delayed_pic[i] = h->delayed_pic[i + 1];
2059     }
2060     if (!out_of_order && pics > h->avctx->has_b_frames) {
2061         h->next_output_pic = out;
2062         if (out_idx == 0 && h->delayed_pic[0] && (h->delayed_pic[0]->f.key_frame || h->delayed_pic[0]->mmco_reset)) {
2063             h->next_outputed_poc = INT_MIN;
2064         } else
2065             h->next_outputed_poc = out->poc;
2066     } else {
2067         av_log(h->avctx, AV_LOG_DEBUG, "no picture %s\n", out_of_order ? "ooo" : "");
2068     }
2069
2070     if (h->next_output_pic && h->next_output_pic->sync) {
2071         h->sync |= 2;
2072     }
2073
2074     if (setup_finished && !h->avctx->hwaccel)
2075         ff_thread_finish_setup(h->avctx);
2076 }
2077
2078 static av_always_inline void backup_mb_border(H264Context *h, uint8_t *src_y,
2079                                               uint8_t *src_cb, uint8_t *src_cr,
2080                                               int linesize, int uvlinesize,
2081                                               int simple)
2082 {
2083     uint8_t *top_border;
2084     int top_idx = 1;
2085     const int pixel_shift = h->pixel_shift;
2086     int chroma444 = CHROMA444(h);
2087     int chroma422 = CHROMA422(h);
2088
2089     src_y  -= linesize;
2090     src_cb -= uvlinesize;
2091     src_cr -= uvlinesize;
2092
2093     if (!simple && FRAME_MBAFF(h)) {
2094         if (h->mb_y & 1) {
2095             if (!MB_MBAFF(h)) {
2096                 top_border = h->top_borders[0][h->mb_x];
2097                 AV_COPY128(top_border, src_y + 15 * linesize);
2098                 if (pixel_shift)
2099                     AV_COPY128(top_border + 16, src_y + 15 * linesize + 16);
2100                 if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
2101                     if (chroma444) {
2102                         if (pixel_shift) {
2103                             AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
2104                             AV_COPY128(top_border + 48, src_cb + 15 * uvlinesize + 16);
2105                             AV_COPY128(top_border + 64, src_cr + 15 * uvlinesize);
2106                             AV_COPY128(top_border + 80, src_cr + 15 * uvlinesize + 16);
2107                         } else {
2108                             AV_COPY128(top_border + 16, src_cb + 15 * uvlinesize);
2109                             AV_COPY128(top_border + 32, src_cr + 15 * uvlinesize);
2110                         }
2111                     } else if (chroma422) {
2112                         if (pixel_shift) {
2113                             AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
2114                             AV_COPY128(top_border + 48, src_cr + 15 * uvlinesize);
2115                         } else {
2116                             AV_COPY64(top_border + 16, src_cb + 15 * uvlinesize);
2117                             AV_COPY64(top_border + 24, src_cr + 15 * uvlinesize);
2118                         }
2119                     } else {
2120                         if (pixel_shift) {
2121                             AV_COPY128(top_border + 32, src_cb + 7 * uvlinesize);
2122                             AV_COPY128(top_border + 48, src_cr + 7 * uvlinesize);
2123                         } else {
2124                             AV_COPY64(top_border + 16, src_cb + 7 * uvlinesize);
2125                             AV_COPY64(top_border + 24, src_cr + 7 * uvlinesize);
2126                         }
2127                     }
2128                 }
2129             }
2130         } else if (MB_MBAFF(h)) {
2131             top_idx = 0;
2132         } else
2133             return;
2134     }
2135
2136     top_border = h->top_borders[top_idx][h->mb_x];
2137     /* There are two lines saved, the line above the top macroblock
2138      * of a pair, and the line above the bottom macroblock. */
2139     AV_COPY128(top_border, src_y + 16 * linesize);
2140     if (pixel_shift)
2141         AV_COPY128(top_border + 16, src_y + 16 * linesize + 16);
2142
2143     if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
2144         if (chroma444) {
2145             if (pixel_shift) {
2146                 AV_COPY128(top_border + 32, src_cb + 16 * linesize);
2147                 AV_COPY128(top_border + 48, src_cb + 16 * linesize + 16);
2148                 AV_COPY128(top_border + 64, src_cr + 16 * linesize);
2149                 AV_COPY128(top_border + 80, src_cr + 16 * linesize + 16);
2150             } else {
2151                 AV_COPY128(top_border + 16, src_cb + 16 * linesize);
2152                 AV_COPY128(top_border + 32, src_cr + 16 * linesize);
2153             }
2154         } else if (chroma422) {
2155             if (pixel_shift) {
2156                 AV_COPY128(top_border + 32, src_cb + 16 * uvlinesize);
2157                 AV_COPY128(top_border + 48, src_cr + 16 * uvlinesize);
2158             } else {
2159                 AV_COPY64(top_border + 16, src_cb + 16 * uvlinesize);
2160                 AV_COPY64(top_border + 24, src_cr + 16 * uvlinesize);
2161             }
2162         } else {
2163             if (pixel_shift) {
2164                 AV_COPY128(top_border + 32, src_cb + 8 * uvlinesize);
2165                 AV_COPY128(top_border + 48, src_cr + 8 * uvlinesize);
2166             } else {
2167                 AV_COPY64(top_border + 16, src_cb + 8 * uvlinesize);
2168                 AV_COPY64(top_border + 24, src_cr + 8 * uvlinesize);
2169             }
2170         }
2171     }
2172 }
2173
2174 static av_always_inline void xchg_mb_border(H264Context *h, uint8_t *src_y,
2175                                             uint8_t *src_cb, uint8_t *src_cr,
2176                                             int linesize, int uvlinesize,
2177                                             int xchg, int chroma444,
2178                                             int simple, int pixel_shift)
2179 {
2180     int deblock_topleft;
2181     int deblock_top;
2182     int top_idx = 1;
2183     uint8_t *top_border_m1;
2184     uint8_t *top_border;
2185
2186     if (!simple && FRAME_MBAFF(h)) {
2187         if (h->mb_y & 1) {
2188             if (!MB_MBAFF(h))
2189                 return;
2190         } else {
2191             top_idx = MB_MBAFF(h) ? 0 : 1;
2192         }
2193     }
2194
2195     if (h->deblocking_filter == 2) {
2196         deblock_topleft = h->slice_table[h->mb_xy - 1 - h->mb_stride] == h->slice_num;
2197         deblock_top     = h->top_type;
2198     } else {
2199         deblock_topleft = (h->mb_x > 0);
2200         deblock_top     = (h->mb_y > !!MB_FIELD(h));
2201     }
2202
2203     src_y  -= linesize   + 1 + pixel_shift;
2204     src_cb -= uvlinesize + 1 + pixel_shift;
2205     src_cr -= uvlinesize + 1 + pixel_shift;
2206
2207     top_border_m1 = h->top_borders[top_idx][h->mb_x - 1];
2208     top_border    = h->top_borders[top_idx][h->mb_x];
2209
2210 #define XCHG(a, b, xchg)                        \
2211     if (pixel_shift) {                          \
2212         if (xchg) {                             \
2213             AV_SWAP64(b + 0, a + 0);            \
2214             AV_SWAP64(b + 8, a + 8);            \
2215         } else {                                \
2216             AV_COPY128(b, a);                   \
2217         }                                       \
2218     } else if (xchg)                            \
2219         AV_SWAP64(b, a);                        \
2220     else                                        \
2221         AV_COPY64(b, a);
2222
2223     if (deblock_top) {
2224         if (deblock_topleft) {
2225             XCHG(top_border_m1 + (8 << pixel_shift),
2226                  src_y - (7 << pixel_shift), 1);
2227         }
2228         XCHG(top_border + (0 << pixel_shift), src_y + (1 << pixel_shift), xchg);
2229         XCHG(top_border + (8 << pixel_shift), src_y + (9 << pixel_shift), 1);
2230         if (h->mb_x + 1 < h->mb_width) {
2231             XCHG(h->top_borders[top_idx][h->mb_x + 1],
2232                  src_y + (17 << pixel_shift), 1);
2233         }
2234         if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
2235             if (chroma444) {
2236                 if (deblock_topleft) {
2237                     XCHG(top_border_m1 + (24 << pixel_shift), src_cb - (7 << pixel_shift), 1);
2238                     XCHG(top_border_m1 + (40 << pixel_shift), src_cr - (7 << pixel_shift), 1);
2239                 }
2240                 XCHG(top_border + (16 << pixel_shift), src_cb + (1 << pixel_shift), xchg);
2241                 XCHG(top_border + (24 << pixel_shift), src_cb + (9 << pixel_shift), 1);
2242                 XCHG(top_border + (32 << pixel_shift), src_cr + (1 << pixel_shift), xchg);
2243                 XCHG(top_border + (40 << pixel_shift), src_cr + (9 << pixel_shift), 1);
2244                 if (h->mb_x + 1 < h->mb_width) {
2245                     XCHG(h->top_borders[top_idx][h->mb_x + 1] + (16 << pixel_shift), src_cb + (17 << pixel_shift), 1);
2246                     XCHG(h->top_borders[top_idx][h->mb_x + 1] + (32 << pixel_shift), src_cr + (17 << pixel_shift), 1);
2247                 }
2248             } else {
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 int ff_init_poc(H264Context *h, int pic_field_poc[2], int *pic_poc)
2697 {
2698     const int max_frame_num = 1 << h->sps.log2_max_frame_num;
2699     int field_poc[2];
2700
2701     h->frame_num_offset = h->prev_frame_num_offset;
2702     if (h->frame_num < h->prev_frame_num)
2703         h->frame_num_offset += max_frame_num;
2704
2705     if (h->sps.poc_type == 0) {
2706         const int max_poc_lsb = 1 << h->sps.log2_max_poc_lsb;
2707
2708         if (h->poc_lsb < h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb >= max_poc_lsb / 2)
2709             h->poc_msb = h->prev_poc_msb + max_poc_lsb;
2710         else if (h->poc_lsb > h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb < -max_poc_lsb / 2)
2711             h->poc_msb = h->prev_poc_msb - max_poc_lsb;
2712         else
2713             h->poc_msb = h->prev_poc_msb;
2714         field_poc[0] =
2715         field_poc[1] = h->poc_msb + h->poc_lsb;
2716         if (h->picture_structure == PICT_FRAME)
2717             field_poc[1] += h->delta_poc_bottom;
2718     } else if (h->sps.poc_type == 1) {
2719         int abs_frame_num, expected_delta_per_poc_cycle, expectedpoc;
2720         int i;
2721
2722         if (h->sps.poc_cycle_length != 0)
2723             abs_frame_num = h->frame_num_offset + h->frame_num;
2724         else
2725             abs_frame_num = 0;
2726
2727         if (h->nal_ref_idc == 0 && abs_frame_num > 0)
2728             abs_frame_num--;
2729
2730         expected_delta_per_poc_cycle = 0;
2731         for (i = 0; i < h->sps.poc_cycle_length; i++)
2732             // FIXME integrate during sps parse
2733             expected_delta_per_poc_cycle += h->sps.offset_for_ref_frame[i];
2734
2735         if (abs_frame_num > 0) {
2736             int poc_cycle_cnt          = (abs_frame_num - 1) / h->sps.poc_cycle_length;
2737             int frame_num_in_poc_cycle = (abs_frame_num - 1) % h->sps.poc_cycle_length;
2738
2739             expectedpoc = poc_cycle_cnt * expected_delta_per_poc_cycle;
2740             for (i = 0; i <= frame_num_in_poc_cycle; i++)
2741                 expectedpoc = expectedpoc + h->sps.offset_for_ref_frame[i];
2742         } else
2743             expectedpoc = 0;
2744
2745         if (h->nal_ref_idc == 0)
2746             expectedpoc = expectedpoc + h->sps.offset_for_non_ref_pic;
2747
2748         field_poc[0] = expectedpoc + h->delta_poc[0];
2749         field_poc[1] = field_poc[0] + h->sps.offset_for_top_to_bottom_field;
2750
2751         if (h->picture_structure == PICT_FRAME)
2752             field_poc[1] += h->delta_poc[1];
2753     } else {
2754         int poc = 2 * (h->frame_num_offset + h->frame_num);
2755
2756         if (!h->nal_ref_idc)
2757             poc--;
2758
2759         field_poc[0] = poc;
2760         field_poc[1] = poc;
2761     }
2762
2763     if (h->picture_structure != PICT_BOTTOM_FIELD)
2764         pic_field_poc[0] = field_poc[0];
2765     if (h->picture_structure != PICT_TOP_FIELD)
2766         pic_field_poc[1] = field_poc[1];
2767     if (pic_poc)
2768         *pic_poc = FFMIN(pic_field_poc[0], pic_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                      || h->mb_width  != h->sps.mb_width
3314                      || h->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag)
3315                     ));
3316     if (h0->avctx->pix_fmt != get_pixel_format(h0, 0))
3317         must_reinit = 1;
3318
3319     h->mb_width  = h->sps.mb_width;
3320     h->mb_height = h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag);
3321     h->mb_num    = h->mb_width * h->mb_height;
3322     h->mb_stride = h->mb_width + 1;
3323
3324     h->b_stride = h->mb_width * 4;
3325
3326     h->chroma_y_shift = h->sps.chroma_format_idc <= 1; // 400 uses yuv420p
3327
3328     h->width  = 16 * h->mb_width;
3329     h->height = 16 * h->mb_height;
3330
3331     ret = init_dimensions(h);
3332     if (ret < 0)
3333         return ret;
3334
3335     if (h->sps.video_signal_type_present_flag) {
3336         h->avctx->color_range = h->sps.full_range>0 ? AVCOL_RANGE_JPEG
3337                                                     : AVCOL_RANGE_MPEG;
3338         if (h->sps.colour_description_present_flag) {
3339             if (h->avctx->colorspace != h->sps.colorspace)
3340                 needs_reinit = 1;
3341             h->avctx->color_primaries = h->sps.color_primaries;
3342             h->avctx->color_trc       = h->sps.color_trc;
3343             h->avctx->colorspace      = h->sps.colorspace;
3344         }
3345     }
3346
3347     if (h->context_initialized &&
3348         (h->width  != h->avctx->coded_width   ||
3349          h->height != h->avctx->coded_height  ||
3350          must_reinit ||
3351          needs_reinit)) {
3352
3353         if (h != h0) {
3354             av_log(h->avctx, AV_LOG_ERROR, "changing width/height on "
3355                    "slice %d\n", h0->current_slice + 1);
3356             return AVERROR_INVALIDDATA;
3357         }
3358
3359         flush_change(h);
3360
3361         if ((ret = get_pixel_format(h, 1)) < 0)
3362             return ret;
3363         h->avctx->pix_fmt = ret;
3364
3365         av_log(h->avctx, AV_LOG_INFO, "Reinit context to %dx%d, "
3366                "pix_fmt: %d\n", h->width, h->height, h->avctx->pix_fmt);
3367
3368         if ((ret = h264_slice_header_init(h, 1)) < 0) {
3369             av_log(h->avctx, AV_LOG_ERROR,
3370                    "h264_slice_header_init() failed\n");
3371             return ret;
3372         }
3373     }
3374     if (!h->context_initialized) {
3375         if (h != h0) {
3376             av_log(h->avctx, AV_LOG_ERROR,
3377                    "Cannot (re-)initialize context during parallel decoding.\n");
3378             return -1;
3379         }
3380
3381         if ((ret = get_pixel_format(h, 1)) < 0)
3382             return ret;
3383         h->avctx->pix_fmt = ret;
3384
3385         if ((ret = h264_slice_header_init(h, 0)) < 0) {
3386             av_log(h->avctx, AV_LOG_ERROR,
3387                    "h264_slice_header_init() failed\n");
3388             return ret;
3389         }
3390     }
3391
3392     if (h == h0 && h->dequant_coeff_pps != pps_id) {
3393         h->dequant_coeff_pps = pps_id;
3394         init_dequant_tables(h);
3395     }
3396
3397     h->frame_num = get_bits(&h->gb, h->sps.log2_max_frame_num);
3398
3399     h->mb_mbaff        = 0;
3400     h->mb_aff_frame    = 0;
3401     last_pic_structure = h0->picture_structure;
3402     last_pic_droppable = h0->droppable;
3403     h->droppable       = h->nal_ref_idc == 0;
3404     if (h->sps.frame_mbs_only_flag) {
3405         h->picture_structure = PICT_FRAME;
3406     } else {
3407         if (!h->sps.direct_8x8_inference_flag && slice_type == AV_PICTURE_TYPE_B) {
3408             av_log(h->avctx, AV_LOG_ERROR, "This stream was generated by a broken encoder, invalid 8x8 inference\n");
3409             return -1;
3410         }
3411         if (get_bits1(&h->gb)) { // field_pic_flag
3412             h->picture_structure = PICT_TOP_FIELD + get_bits1(&h->gb); // bottom_field_flag
3413         } else {
3414             h->picture_structure = PICT_FRAME;
3415             h->mb_aff_frame      = h->sps.mb_aff;
3416         }
3417     }
3418     h->mb_field_decoding_flag = h->picture_structure != PICT_FRAME;
3419
3420     if (h0->current_slice != 0) {
3421         if (last_pic_structure != h->picture_structure ||
3422             last_pic_droppable != h->droppable) {
3423             av_log(h->avctx, AV_LOG_ERROR,
3424                    "Changing field mode (%d -> %d) between slices is not allowed\n",
3425                    last_pic_structure, h->picture_structure);
3426             h->picture_structure = last_pic_structure;
3427             h->droppable         = last_pic_droppable;
3428             return AVERROR_INVALIDDATA;
3429         } else if (!h0->cur_pic_ptr) {
3430             av_log(h->avctx, AV_LOG_ERROR,
3431                    "unset cur_pic_ptr on %d. slice\n",
3432                    h0->current_slice + 1);
3433             return AVERROR_INVALIDDATA;
3434         }
3435     } else {
3436         /* Shorten frame num gaps so we don't have to allocate reference
3437          * frames just to throw them away */
3438         if (h->frame_num != h->prev_frame_num && h->prev_frame_num >= 0) {
3439             int unwrap_prev_frame_num = h->prev_frame_num;
3440             int max_frame_num         = 1 << h->sps.log2_max_frame_num;
3441
3442             if (unwrap_prev_frame_num > h->frame_num)
3443                 unwrap_prev_frame_num -= max_frame_num;
3444
3445             if ((h->frame_num - unwrap_prev_frame_num) > h->sps.ref_frame_count) {
3446                 unwrap_prev_frame_num = (h->frame_num - h->sps.ref_frame_count) - 1;
3447                 if (unwrap_prev_frame_num < 0)
3448                     unwrap_prev_frame_num += max_frame_num;
3449
3450                 h->prev_frame_num = unwrap_prev_frame_num;
3451             }
3452         }
3453
3454         /* See if we have a decoded first field looking for a pair...
3455          * Here, we're using that to see if we should mark previously
3456          * decode frames as "finished".
3457          * We have to do that before the "dummy" in-between frame allocation,
3458          * since that can modify h->cur_pic_ptr. */
3459         if (h0->first_field) {
3460             assert(h0->cur_pic_ptr);
3461             assert(h0->cur_pic_ptr->f.data[0]);
3462             assert(h0->cur_pic_ptr->reference != DELAYED_PIC_REF);
3463
3464             /* Mark old field/frame as completed */
3465             if (!last_pic_droppable && h0->cur_pic_ptr->tf.owner == h0->avctx) {
3466                 ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
3467                                           last_pic_structure == PICT_BOTTOM_FIELD);
3468             }
3469
3470             /* figure out if we have a complementary field pair */
3471             if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
3472                 /* Previous field is unmatched. Don't display it, but let it
3473                  * remain for reference if marked as such. */
3474                 if (!last_pic_droppable && last_pic_structure != PICT_FRAME) {
3475                     ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
3476                                               last_pic_structure == PICT_TOP_FIELD);
3477                 }
3478             } else {
3479                 if (h0->cur_pic_ptr->frame_num != h->frame_num) {
3480                     /* This and previous field were reference, but had
3481                      * different frame_nums. Consider this field first in
3482                      * pair. Throw away previous field except for reference
3483                      * purposes. */
3484                     if (!last_pic_droppable && last_pic_structure != PICT_FRAME) {
3485                         ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
3486                                                   last_pic_structure == PICT_TOP_FIELD);
3487                     }
3488                 } else {
3489                     /* Second field in complementary pair */
3490                     if (!((last_pic_structure   == PICT_TOP_FIELD &&
3491                            h->picture_structure == PICT_BOTTOM_FIELD) ||
3492                           (last_pic_structure   == PICT_BOTTOM_FIELD &&
3493                            h->picture_structure == PICT_TOP_FIELD))) {
3494                         av_log(h->avctx, AV_LOG_ERROR,
3495                                "Invalid field mode combination %d/%d\n",
3496                                last_pic_structure, h->picture_structure);
3497                         h->picture_structure = last_pic_structure;
3498                         h->droppable         = last_pic_droppable;
3499                         return AVERROR_INVALIDDATA;
3500                     } else if (last_pic_droppable != h->droppable) {
3501                         avpriv_request_sample(h->avctx,
3502                                               "Found reference and non-reference fields in the same frame, which");
3503                         h->picture_structure = last_pic_structure;
3504                         h->droppable         = last_pic_droppable;
3505                         return AVERROR_PATCHWELCOME;
3506                     }
3507                 }
3508             }
3509         }
3510
3511         while (h->frame_num != h->prev_frame_num && h->prev_frame_num >= 0 && !h0->first_field &&
3512                h->frame_num != (h->prev_frame_num + 1) % (1 << h->sps.log2_max_frame_num)) {
3513             Picture *prev = h->short_ref_count ? h->short_ref[0] : NULL;
3514             av_log(h->avctx, AV_LOG_DEBUG, "Frame num gap %d %d\n",
3515                    h->frame_num, h->prev_frame_num);
3516             if (!h->sps.gaps_in_frame_num_allowed_flag)
3517                 for(i=0; i<FF_ARRAY_ELEMS(h->last_pocs); i++)
3518                     h->last_pocs[i] = INT_MIN;
3519             if (h264_frame_start(h) < 0)
3520                 return -1;
3521             h->prev_frame_num++;
3522             h->prev_frame_num %= 1 << h->sps.log2_max_frame_num;
3523             h->cur_pic_ptr->frame_num = h->prev_frame_num;
3524             ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 0);
3525             ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 1);
3526             if ((ret = ff_generate_sliding_window_mmcos(h, 1)) < 0 &&
3527                 h->avctx->err_recognition & AV_EF_EXPLODE)
3528                 return ret;
3529             if (ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index) < 0 &&
3530                 (h->avctx->err_recognition & AV_EF_EXPLODE))
3531                 return AVERROR_INVALIDDATA;
3532             /* Error concealment: if a ref is missing, copy the previous ref in its place.
3533              * FIXME: avoiding a memcpy would be nice, but ref handling makes many assumptions
3534              * about there being no actual duplicates.
3535              * FIXME: this doesn't copy padding for out-of-frame motion vectors.  Given we're
3536              * concealing a lost frame, this probably isn't noticeable by comparison, but it should
3537              * be fixed. */
3538             if (h->short_ref_count) {
3539                 if (prev) {
3540                     av_image_copy(h->short_ref[0]->f.data, h->short_ref[0]->f.linesize,
3541                                   (const uint8_t **)prev->f.data, prev->f.linesize,
3542                                   h->avctx->pix_fmt, h->mb_width * 16, h->mb_height * 16);
3543                     h->short_ref[0]->poc = prev->poc + 2;
3544                 }
3545                 h->short_ref[0]->frame_num = h->prev_frame_num;
3546             }
3547         }
3548
3549         /* See if we have a decoded first field looking for a pair...
3550          * We're using that to see whether to continue decoding in that
3551          * frame, or to allocate a new one. */
3552         if (h0->first_field) {
3553             assert(h0->cur_pic_ptr);
3554             assert(h0->cur_pic_ptr->f.data[0]);
3555             assert(h0->cur_pic_ptr->reference != DELAYED_PIC_REF);
3556
3557             /* figure out if we have a complementary field pair */
3558             if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
3559                 /* Previous field is unmatched. Don't display it, but let it
3560                  * remain for reference if marked as such. */
3561                 h0->cur_pic_ptr = NULL;
3562                 h0->first_field = FIELD_PICTURE(h);
3563             } else {
3564                 if (h0->cur_pic_ptr->frame_num != h->frame_num) {
3565                     ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
3566                                               h0->picture_structure==PICT_BOTTOM_FIELD);
3567                     /* This and the previous field had different frame_nums.
3568                      * Consider this field first in pair. Throw away previous
3569                      * one except for reference purposes. */
3570                     h0->first_field = 1;
3571                     h0->cur_pic_ptr = NULL;
3572                 } else {
3573                     /* Second field in complementary pair */
3574                     h0->first_field = 0;
3575                 }
3576             }
3577         } else {
3578             /* Frame or first field in a potentially complementary pair */
3579             h0->first_field = FIELD_PICTURE(h);
3580         }
3581
3582         if (!FIELD_PICTURE(h) || h0->first_field) {
3583             if (h264_frame_start(h) < 0) {
3584                 h0->first_field = 0;
3585                 return -1;
3586             }
3587         } else {
3588             release_unused_pictures(h, 0);
3589         }
3590         /* Some macroblocks can be accessed before they're available in case
3591         * of lost slices, MBAFF or threading. */
3592         if (FIELD_PICTURE(h)) {
3593             for(i = (h->picture_structure == PICT_BOTTOM_FIELD); i<h->mb_height; i++)
3594                 memset(h->slice_table + i*h->mb_stride, -1, (h->mb_stride - (i+1==h->mb_height)) * sizeof(*h->slice_table));
3595         } else {
3596             memset(h->slice_table, -1,
3597                 (h->mb_height * h->mb_stride - 1) * sizeof(*h->slice_table));
3598         }
3599         h0->last_slice_type = -1;
3600     }
3601     if (h != h0 && (ret = clone_slice(h, h0)) < 0)
3602         return ret;
3603
3604     /* can't be in alloc_tables because linesize isn't known there.
3605      * FIXME: redo bipred weight to not require extra buffer? */
3606     for (i = 0; i < h->slice_context_count; i++)
3607         if (h->thread_context[i]) {
3608             ret = alloc_scratch_buffers(h->thread_context[i], h->linesize);
3609             if (ret < 0)
3610                 return ret;
3611         }
3612
3613     h->cur_pic_ptr->frame_num = h->frame_num; // FIXME frame_num cleanup
3614
3615     av_assert1(h->mb_num == h->mb_width * h->mb_height);
3616     if (first_mb_in_slice << FIELD_OR_MBAFF_PICTURE(h) >= h->mb_num ||
3617         first_mb_in_slice >= h->mb_num) {
3618         av_log(h->avctx, AV_LOG_ERROR, "first_mb_in_slice overflow\n");
3619         return -1;
3620     }
3621     h->resync_mb_x = h->mb_x =  first_mb_in_slice % h->mb_width;
3622     h->resync_mb_y = h->mb_y = (first_mb_in_slice / h->mb_width) << FIELD_OR_MBAFF_PICTURE(h);
3623     if (h->picture_structure == PICT_BOTTOM_FIELD)
3624         h->resync_mb_y = h->mb_y = h->mb_y + 1;
3625     av_assert1(h->mb_y < h->mb_height);
3626
3627     if (h->picture_structure == PICT_FRAME) {
3628         h->curr_pic_num = h->frame_num;
3629         h->max_pic_num  = 1 << h->sps.log2_max_frame_num;
3630     } else {
3631         h->curr_pic_num = 2 * h->frame_num + 1;
3632         h->max_pic_num  = 1 << (h->sps.log2_max_frame_num + 1);
3633     }
3634
3635     if (h->nal_unit_type == NAL_IDR_SLICE)
3636         get_ue_golomb(&h->gb); /* idr_pic_id */
3637
3638     if (h->sps.poc_type == 0) {
3639         h->poc_lsb = get_bits(&h->gb, h->sps.log2_max_poc_lsb);
3640
3641         if (h->pps.pic_order_present == 1 && h->picture_structure == PICT_FRAME)
3642             h->delta_poc_bottom = get_se_golomb(&h->gb);
3643     }
3644
3645     if (h->sps.poc_type == 1 && !h->sps.delta_pic_order_always_zero_flag) {
3646         h->delta_poc[0] = get_se_golomb(&h->gb);
3647
3648         if (h->pps.pic_order_present == 1 && h->picture_structure == PICT_FRAME)
3649             h->delta_poc[1] = get_se_golomb(&h->gb);
3650     }
3651
3652     ff_init_poc(h, h->cur_pic_ptr->field_poc, &h->cur_pic_ptr->poc);
3653
3654     if (h->pps.redundant_pic_cnt_present)
3655         h->redundant_pic_count = get_ue_golomb(&h->gb);
3656
3657     // set defaults, might be overridden a few lines later
3658     h->ref_count[0] = h->pps.ref_count[0];
3659     h->ref_count[1] = h->pps.ref_count[1];
3660
3661     if (h->slice_type_nos != AV_PICTURE_TYPE_I) {
3662         unsigned max[2];
3663         max[0] = max[1] = h->picture_structure == PICT_FRAME ? 15 : 31;
3664
3665         if (h->slice_type_nos == AV_PICTURE_TYPE_B)
3666             h->direct_spatial_mv_pred = get_bits1(&h->gb);
3667         num_ref_idx_active_override_flag = get_bits1(&h->gb);
3668
3669         if (num_ref_idx_active_override_flag) {
3670             h->ref_count[0] = get_ue_golomb(&h->gb) + 1;
3671             if (h->slice_type_nos == AV_PICTURE_TYPE_B) {
3672                 h->ref_count[1] = get_ue_golomb(&h->gb) + 1;
3673             } else
3674                 // full range is spec-ok in this case, even for frames
3675                 h->ref_count[1] = 1;
3676         }
3677
3678         if (h->ref_count[0]-1 > max[0] || h->ref_count[1]-1 > max[1]){
3679             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]);
3680             h->ref_count[0] = h->ref_count[1] = 0;
3681             return AVERROR_INVALIDDATA;
3682         }
3683
3684         if (h->slice_type_nos == AV_PICTURE_TYPE_B)
3685             h->list_count = 2;
3686         else
3687             h->list_count = 1;
3688     } else {
3689         h->list_count = 0;
3690         h->ref_count[0] = h->ref_count[1] = 0;
3691     }
3692     if (slice_type != AV_PICTURE_TYPE_I &&
3693         (h0->current_slice == 0 ||
3694          slice_type != h0->last_slice_type ||
3695          memcmp(h0->last_ref_count, h0->ref_count, sizeof(h0->ref_count)))) {
3696         ff_h264_fill_default_ref_list(h);
3697     }
3698
3699     if (h->slice_type_nos != AV_PICTURE_TYPE_I &&
3700         ff_h264_decode_ref_pic_list_reordering(h) < 0) {
3701         h->ref_count[1] = h->ref_count[0] = 0;
3702         return -1;
3703     }
3704
3705     if ((h->pps.weighted_pred && h->slice_type_nos == AV_PICTURE_TYPE_P) ||
3706         (h->pps.weighted_bipred_idc == 1 &&
3707          h->slice_type_nos == AV_PICTURE_TYPE_B))
3708         pred_weight_table(h);
3709     else if (h->pps.weighted_bipred_idc == 2 &&
3710              h->slice_type_nos == AV_PICTURE_TYPE_B) {
3711         implicit_weight_table(h, -1);
3712     } else {
3713         h->use_weight = 0;
3714         for (i = 0; i < 2; i++) {
3715             h->luma_weight_flag[i]   = 0;
3716             h->chroma_weight_flag[i] = 0;
3717         }
3718     }
3719
3720     // If frame-mt is enabled, only update mmco tables for the first slice
3721     // in a field. Subsequent slices can temporarily clobber h->mmco_index
3722     // or h->mmco, which will cause ref list mix-ups and decoding errors
3723     // further down the line. This may break decoding if the first slice is
3724     // corrupt, thus we only do this if frame-mt is enabled.
3725     if (h->nal_ref_idc &&
3726         ff_h264_decode_ref_pic_marking(h0, &h->gb,
3727                             !(h->avctx->active_thread_type & FF_THREAD_FRAME) ||
3728                             h0->current_slice == 0) < 0 &&
3729         (h->avctx->err_recognition & AV_EF_EXPLODE))
3730         return AVERROR_INVALIDDATA;
3731
3732     if (FRAME_MBAFF(h)) {
3733         ff_h264_fill_mbaff_ref_list(h);
3734
3735         if (h->pps.weighted_bipred_idc == 2 && h->slice_type_nos == AV_PICTURE_TYPE_B) {
3736             implicit_weight_table(h, 0);
3737             implicit_weight_table(h, 1);
3738         }
3739     }
3740
3741     if (h->slice_type_nos == AV_PICTURE_TYPE_B && !h->direct_spatial_mv_pred)
3742         ff_h264_direct_dist_scale_factor(h);
3743     ff_h264_direct_ref_list_init(h);
3744
3745     if (h->slice_type_nos != AV_PICTURE_TYPE_I && h->pps.cabac) {
3746         tmp = get_ue_golomb_31(&h->gb);
3747         if (tmp > 2) {
3748             av_log(h->avctx, AV_LOG_ERROR, "cabac_init_idc overflow\n");
3749             return -1;
3750         }
3751         h->cabac_init_idc = tmp;
3752     }
3753
3754     h->last_qscale_diff = 0;
3755     tmp = h->pps.init_qp + get_se_golomb(&h->gb);
3756     if (tmp > 51 + 6 * (h->sps.bit_depth_luma - 8)) {
3757         av_log(h->avctx, AV_LOG_ERROR, "QP %u out of range\n", tmp);
3758         return -1;
3759     }
3760     h->qscale       = tmp;
3761     h->chroma_qp[0] = get_chroma_qp(h, 0, h->qscale);
3762     h->chroma_qp[1] = get_chroma_qp(h, 1, h->qscale);
3763     // FIXME qscale / qp ... stuff
3764     if (h->slice_type == AV_PICTURE_TYPE_SP)
3765         get_bits1(&h->gb); /* sp_for_switch_flag */
3766     if (h->slice_type == AV_PICTURE_TYPE_SP ||
3767         h->slice_type == AV_PICTURE_TYPE_SI)
3768         get_se_golomb(&h->gb); /* slice_qs_delta */
3769
3770     h->deblocking_filter     = 1;
3771     h->slice_alpha_c0_offset = 52;
3772     h->slice_beta_offset     = 52;
3773     if (h->pps.deblocking_filter_parameters_present) {
3774         tmp = get_ue_golomb_31(&h->gb);
3775         if (tmp > 2) {
3776             av_log(h->avctx, AV_LOG_ERROR,
3777                    "deblocking_filter_idc %u out of range\n", tmp);
3778             return -1;
3779         }
3780         h->deblocking_filter = tmp;
3781         if (h->deblocking_filter < 2)
3782             h->deblocking_filter ^= 1;  // 1<->0
3783
3784         if (h->deblocking_filter) {
3785             h->slice_alpha_c0_offset += get_se_golomb(&h->gb) << 1;
3786             h->slice_beta_offset     += get_se_golomb(&h->gb) << 1;
3787             if (h->slice_alpha_c0_offset > 104U ||
3788                 h->slice_beta_offset     > 104U) {
3789                 av_log(h->avctx, AV_LOG_ERROR,
3790                        "deblocking filter parameters %d %d out of range\n",
3791                        h->slice_alpha_c0_offset, h->slice_beta_offset);
3792                 return -1;
3793             }
3794         }
3795     }
3796
3797     if (h->avctx->skip_loop_filter >= AVDISCARD_ALL ||
3798         (h->avctx->skip_loop_filter >= AVDISCARD_NONKEY &&
3799          h->slice_type_nos != AV_PICTURE_TYPE_I) ||
3800         (h->avctx->skip_loop_filter >= AVDISCARD_BIDIR  &&
3801          h->slice_type_nos == AV_PICTURE_TYPE_B) ||
3802         (h->avctx->skip_loop_filter >= AVDISCARD_NONREF &&
3803          h->nal_ref_idc == 0))
3804         h->deblocking_filter = 0;
3805
3806     if (h->deblocking_filter == 1 && h0->max_contexts > 1) {
3807         if (h->avctx->flags2 & CODEC_FLAG2_FAST) {
3808             /* Cheat slightly for speed:
3809              * Do not bother to deblock across slices. */
3810             h->deblocking_filter = 2;
3811         } else {
3812             h0->max_contexts = 1;
3813             if (!h0->single_decode_warning) {
3814                 av_log(h->avctx, AV_LOG_INFO,
3815                        "Cannot parallelize deblocking type 1, decoding such frames in sequential order\n");
3816                 h0->single_decode_warning = 1;
3817             }
3818             if (h != h0) {
3819                 av_log(h->avctx, AV_LOG_ERROR,
3820                        "Deblocking switched inside frame.\n");
3821                 return 1;
3822             }
3823         }
3824     }
3825     h->qp_thresh = 15 + 52 -
3826                    FFMIN(h->slice_alpha_c0_offset, h->slice_beta_offset) -
3827                    FFMAX3(0,
3828                           h->pps.chroma_qp_index_offset[0],
3829                           h->pps.chroma_qp_index_offset[1]) +
3830                    6 * (h->sps.bit_depth_luma - 8);
3831
3832     h0->last_slice_type = slice_type;
3833     memcpy(h0->last_ref_count, h0->ref_count, sizeof(h0->last_ref_count));
3834     h->slice_num = ++h0->current_slice;
3835
3836     if (h->slice_num)
3837         h0->slice_row[(h->slice_num-1)&(MAX_SLICES-1)]= h->resync_mb_y;
3838     if (   h0->slice_row[h->slice_num&(MAX_SLICES-1)] + 3 >= h->resync_mb_y
3839         && h0->slice_row[h->slice_num&(MAX_SLICES-1)] <= h->resync_mb_y
3840         && h->slice_num >= MAX_SLICES) {
3841         //in case of ASO this check needs to be updated depending on how we decide to assign slice numbers in this case
3842         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);
3843     }
3844
3845     for (j = 0; j < 2; j++) {
3846         int id_list[16];
3847         int *ref2frm = h->ref2frm[h->slice_num & (MAX_SLICES - 1)][j];
3848         for (i = 0; i < 16; i++) {
3849             id_list[i] = 60;
3850             if (j < h->list_count && i < h->ref_count[j] && h->ref_list[j][i].f.buf[0]) {
3851                 int k;
3852                 AVBuffer *buf = h->ref_list[j][i].f.buf[0]->buffer;
3853                 for (k = 0; k < h->short_ref_count; k++)
3854                     if (h->short_ref[k]->f.buf[0]->buffer == buf) {
3855                         id_list[i] = k;
3856                         break;
3857                     }
3858                 for (k = 0; k < h->long_ref_count; k++)
3859                     if (h->long_ref[k] && h->long_ref[k]->f.buf[0]->buffer == buf) {
3860                         id_list[i] = h->short_ref_count + k;
3861                         break;
3862                     }
3863             }
3864         }
3865
3866         ref2frm[0]     =
3867             ref2frm[1] = -1;
3868         for (i = 0; i < 16; i++)
3869             ref2frm[i + 2] = 4 * id_list[i] +
3870                              (h->ref_list[j][i].reference & 3);
3871         ref2frm[18 + 0]     =
3872             ref2frm[18 + 1] = -1;
3873         for (i = 16; i < 48; i++)
3874             ref2frm[i + 4] = 4 * id_list[(i - 16) >> 1] +
3875                              (h->ref_list[j][i].reference & 3);
3876     }
3877
3878     if (h->ref_count[0]) h->er.last_pic = &h->ref_list[0][0];
3879     if (h->ref_count[1]) h->er.next_pic = &h->ref_list[1][0];
3880
3881     if (h->avctx->debug & FF_DEBUG_PICT_INFO) {
3882         av_log(h->avctx, AV_LOG_DEBUG,
3883                "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",
3884                h->slice_num,
3885                (h->picture_structure == PICT_FRAME ? "F" : h->picture_structure == PICT_TOP_FIELD ? "T" : "B"),
3886                first_mb_in_slice,
3887                av_get_picture_type_char(h->slice_type),
3888                h->slice_type_fixed ? " fix" : "",
3889                h->nal_unit_type == NAL_IDR_SLICE ? " IDR" : "",
3890                pps_id, h->frame_num,
3891                h->cur_pic_ptr->field_poc[0],
3892                h->cur_pic_ptr->field_poc[1],
3893                h->ref_count[0], h->ref_count[1],
3894                h->qscale,
3895                h->deblocking_filter,
3896                h->slice_alpha_c0_offset / 2 - 26, h->slice_beta_offset / 2 - 26,
3897                h->use_weight,
3898                h->use_weight == 1 && h->use_weight_chroma ? "c" : "",
3899                h->slice_type == AV_PICTURE_TYPE_B ? (h->direct_spatial_mv_pred ? "SPAT" : "TEMP") : "");
3900     }
3901
3902     return 0;
3903 }
3904
3905 int ff_h264_get_slice_type(const H264Context *h)
3906 {
3907     switch (h->slice_type) {
3908     case AV_PICTURE_TYPE_P:
3909         return 0;
3910     case AV_PICTURE_TYPE_B:
3911         return 1;
3912     case AV_PICTURE_TYPE_I:
3913         return 2;
3914     case AV_PICTURE_TYPE_SP:
3915         return 3;
3916     case AV_PICTURE_TYPE_SI:
3917         return 4;
3918     default:
3919         return -1;
3920     }
3921 }
3922
3923 static av_always_inline void fill_filter_caches_inter(H264Context *h,
3924                                                       int mb_type, int top_xy,
3925                                                       int left_xy[LEFT_MBS],
3926                                                       int top_type,
3927                                                       int left_type[LEFT_MBS],
3928                                                       int mb_xy, int list)
3929 {
3930     int b_stride = h->b_stride;
3931     int16_t(*mv_dst)[2] = &h->mv_cache[list][scan8[0]];
3932     int8_t *ref_cache = &h->ref_cache[list][scan8[0]];
3933     if (IS_INTER(mb_type) || IS_DIRECT(mb_type)) {
3934         if (USES_LIST(top_type, list)) {
3935             const int b_xy  = h->mb2b_xy[top_xy] + 3 * b_stride;
3936             const int b8_xy = 4 * top_xy + 2;
3937             int (*ref2frm)[64] = (void*)(h->ref2frm[h->slice_table[top_xy] & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
3938             AV_COPY128(mv_dst - 1 * 8, h->cur_pic.motion_val[list][b_xy + 0]);
3939             ref_cache[0 - 1 * 8] =
3940             ref_cache[1 - 1 * 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 0]];
3941             ref_cache[2 - 1 * 8] =
3942             ref_cache[3 - 1 * 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 1]];
3943         } else {
3944             AV_ZERO128(mv_dst - 1 * 8);
3945             AV_WN32A(&ref_cache[0 - 1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
3946         }
3947
3948         if (!IS_INTERLACED(mb_type ^ left_type[LTOP])) {
3949             if (USES_LIST(left_type[LTOP], list)) {
3950                 const int b_xy  = h->mb2b_xy[left_xy[LTOP]] + 3;
3951                 const int b8_xy = 4 * left_xy[LTOP] + 1;
3952                 int (*ref2frm)[64] =(void*)( h->ref2frm[h->slice_table[left_xy[LTOP]] & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
3953                 AV_COPY32(mv_dst - 1 +  0, h->cur_pic.motion_val[list][b_xy + b_stride * 0]);
3954                 AV_COPY32(mv_dst - 1 +  8, h->cur_pic.motion_val[list][b_xy + b_stride * 1]);
3955                 AV_COPY32(mv_dst - 1 + 16, h->cur_pic.motion_val[list][b_xy + b_stride * 2]);
3956                 AV_COPY32(mv_dst - 1 + 24, h->cur_pic.motion_val[list][b_xy + b_stride * 3]);
3957                 ref_cache[-1 +  0] =
3958                 ref_cache[-1 +  8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 2 * 0]];
3959                 ref_cache[-1 + 16] =
3960                 ref_cache[-1 + 24] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 2 * 1]];
3961             } else {
3962                 AV_ZERO32(mv_dst - 1 +  0);
3963                 AV_ZERO32(mv_dst - 1 +  8);
3964                 AV_ZERO32(mv_dst - 1 + 16);
3965                 AV_ZERO32(mv_dst - 1 + 24);
3966                 ref_cache[-1 +  0] =
3967                 ref_cache[-1 +  8] =
3968                 ref_cache[-1 + 16] =
3969                 ref_cache[-1 + 24] = LIST_NOT_USED;
3970             }
3971         }
3972     }
3973
3974     if (!USES_LIST(mb_type, list)) {
3975         fill_rectangle(mv_dst, 4, 4, 8, pack16to32(0, 0), 4);
3976         AV_WN32A(&ref_cache[0 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
3977         AV_WN32A(&ref_cache[1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
3978         AV_WN32A(&ref_cache[2 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
3979         AV_WN32A(&ref_cache[3 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
3980         return;
3981     }
3982
3983     {
3984         int8_t *ref = &h->cur_pic.ref_index[list][4 * mb_xy];
3985         int (*ref2frm)[64] = (void*)(h->ref2frm[h->slice_num & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
3986         uint32_t ref01 = (pack16to32(ref2frm[list][ref[0]], ref2frm[list][ref[1]]) & 0x00FF00FF) * 0x0101;
3987         uint32_t ref23 = (pack16to32(ref2frm[list][ref[2]], ref2frm[list][ref[3]]) & 0x00FF00FF) * 0x0101;
3988         AV_WN32A(&ref_cache[0 * 8], ref01);
3989         AV_WN32A(&ref_cache[1 * 8], ref01);
3990         AV_WN32A(&ref_cache[2 * 8], ref23);
3991         AV_WN32A(&ref_cache[3 * 8], ref23);
3992     }
3993
3994     {
3995         int16_t(*mv_src)[2] = &h->cur_pic.motion_val[list][4 * h->mb_x + 4 * h->mb_y * b_stride];
3996         AV_COPY128(mv_dst + 8 * 0, mv_src + 0 * b_stride);
3997         AV_COPY128(mv_dst + 8 * 1, mv_src + 1 * b_stride);
3998         AV_COPY128(mv_dst + 8 * 2, mv_src + 2 * b_stride);
3999         AV_COPY128(mv_dst + 8 * 3, mv_src + 3 * b_stride);
4000     }
4001 }
4002
4003 /**
4004  *
4005  * @return non zero if the loop filter can be skipped
4006  */
4007 static int fill_filter_caches(H264Context *h, int mb_type)
4008 {
4009     const int mb_xy = h->mb_xy;
4010     int top_xy, left_xy[LEFT_MBS];
4011     int top_type, left_type[LEFT_MBS];
4012     uint8_t *nnz;
4013     uint8_t *nnz_cache;
4014
4015     top_xy = mb_xy - (h->mb_stride << MB_FIELD(h));
4016
4017     /* Wow, what a mess, why didn't they simplify the interlacing & intra
4018      * stuff, I can't imagine that these complex rules are worth it. */
4019
4020     left_xy[LBOT] = left_xy[LTOP] = mb_xy - 1;
4021     if (FRAME_MBAFF(h)) {
4022         const int left_mb_field_flag = IS_INTERLACED(h->cur_pic.mb_type[mb_xy - 1]);
4023         const int curr_mb_field_flag = IS_INTERLACED(mb_type);
4024         if (h->mb_y & 1) {
4025             if (left_mb_field_flag != curr_mb_field_flag)
4026                 left_xy[LTOP] -= h->mb_stride;
4027         } else {
4028             if (curr_mb_field_flag)
4029                 top_xy += h->mb_stride &
4030                     (((h->cur_pic.mb_type[top_xy] >> 7) & 1) - 1);
4031             if (left_mb_field_flag != curr_mb_field_flag)
4032                 left_xy[LBOT] += h->mb_stride;
4033         }
4034     }
4035
4036     h->top_mb_xy        = top_xy;
4037     h->left_mb_xy[LTOP] = left_xy[LTOP];
4038     h->left_mb_xy[LBOT] = left_xy[LBOT];
4039     {
4040         /* For sufficiently low qp, filtering wouldn't do anything.
4041          * This is a conservative estimate: could also check beta_offset
4042          * and more accurate chroma_qp. */
4043         int qp_thresh = h->qp_thresh; // FIXME strictly we should store qp_thresh for each mb of a slice
4044         int qp        = h->cur_pic.qscale_table[mb_xy];
4045         if (qp <= qp_thresh &&
4046             (left_xy[LTOP] < 0 ||
4047              ((qp + h->cur_pic.qscale_table[left_xy[LTOP]] + 1) >> 1) <= qp_thresh) &&
4048             (top_xy < 0 ||
4049              ((qp + h->cur_pic.qscale_table[top_xy] + 1) >> 1) <= qp_thresh)) {
4050             if (!FRAME_MBAFF(h))
4051                 return 1;
4052             if ((left_xy[LTOP] < 0 ||
4053                  ((qp + h->cur_pic.qscale_table[left_xy[LBOT]] + 1) >> 1) <= qp_thresh) &&
4054                 (top_xy < h->mb_stride ||
4055                  ((qp + h->cur_pic.qscale_table[top_xy - h->mb_stride] + 1) >> 1) <= qp_thresh))
4056                 return 1;
4057         }
4058     }
4059
4060     top_type        = h->cur_pic.mb_type[top_xy];
4061     left_type[LTOP] = h->cur_pic.mb_type[left_xy[LTOP]];
4062     left_type[LBOT] = h->cur_pic.mb_type[left_xy[LBOT]];
4063     if (h->deblocking_filter == 2) {
4064         if (h->slice_table[top_xy] != h->slice_num)
4065             top_type = 0;
4066         if (h->slice_table[left_xy[LBOT]] != h->slice_num)
4067             left_type[LTOP] = left_type[LBOT] = 0;
4068     } else {
4069         if (h->slice_table[top_xy] == 0xFFFF)
4070             top_type = 0;
4071         if (h->slice_table[left_xy[LBOT]] == 0xFFFF)
4072             left_type[LTOP] = left_type[LBOT] = 0;
4073     }
4074     h->top_type        = top_type;
4075     h->left_type[LTOP] = left_type[LTOP];
4076     h->left_type[LBOT] = left_type[LBOT];
4077
4078     if (IS_INTRA(mb_type))
4079         return 0;
4080
4081     fill_filter_caches_inter(h, mb_type, top_xy, left_xy,
4082                              top_type, left_type, mb_xy, 0);
4083     if (h->list_count == 2)
4084         fill_filter_caches_inter(h, mb_type, top_xy, left_xy,
4085                                  top_type, left_type, mb_xy, 1);
4086
4087     nnz       = h->non_zero_count[mb_xy];
4088     nnz_cache = h->non_zero_count_cache;
4089     AV_COPY32(&nnz_cache[4 + 8 * 1], &nnz[0]);
4090     AV_COPY32(&nnz_cache[4 + 8 * 2], &nnz[4]);
4091     AV_COPY32(&nnz_cache[4 + 8 * 3], &nnz[8]);
4092     AV_COPY32(&nnz_cache[4 + 8 * 4], &nnz[12]);
4093     h->cbp = h->cbp_table[mb_xy];
4094
4095     if (top_type) {
4096         nnz = h->non_zero_count[top_xy];
4097         AV_COPY32(&nnz_cache[4 + 8 * 0], &nnz[3 * 4]);
4098     }
4099
4100     if (left_type[LTOP]) {
4101         nnz = h->non_zero_count[left_xy[LTOP]];
4102         nnz_cache[3 + 8 * 1] = nnz[3 + 0 * 4];
4103         nnz_cache[3 + 8 * 2] = nnz[3 + 1 * 4];
4104         nnz_cache[3 + 8 * 3] = nnz[3 + 2 * 4];
4105         nnz_cache[3 + 8 * 4] = nnz[3 + 3 * 4];
4106     }
4107
4108     /* CAVLC 8x8dct requires NNZ values for residual decoding that differ
4109      * from what the loop filter needs */
4110     if (!CABAC(h) && h->pps.transform_8x8_mode) {
4111         if (IS_8x8DCT(top_type)) {
4112             nnz_cache[4 + 8 * 0]     =
4113                 nnz_cache[5 + 8 * 0] = (h->cbp_table[top_xy] & 0x4000) >> 12;
4114             nnz_cache[6 + 8 * 0]     =
4115                 nnz_cache[7 + 8 * 0] = (h->cbp_table[top_xy] & 0x8000) >> 12;
4116         }
4117         if (IS_8x8DCT(left_type[LTOP])) {
4118             nnz_cache[3 + 8 * 1]     =
4119                 nnz_cache[3 + 8 * 2] = (h->cbp_table[left_xy[LTOP]] & 0x2000) >> 12; // FIXME check MBAFF
4120         }
4121         if (IS_8x8DCT(left_type[LBOT])) {
4122             nnz_cache[3 + 8 * 3]     =
4123                 nnz_cache[3 + 8 * 4] = (h->cbp_table[left_xy[LBOT]] & 0x8000) >> 12; // FIXME check MBAFF
4124         }
4125
4126         if (IS_8x8DCT(mb_type)) {
4127             nnz_cache[scan8[0]] =
4128             nnz_cache[scan8[1]] =
4129             nnz_cache[scan8[2]] =
4130             nnz_cache[scan8[3]] = (h->cbp & 0x1000) >> 12;
4131
4132             nnz_cache[scan8[0 + 4]] =
4133             nnz_cache[scan8[1 + 4]] =
4134             nnz_cache[scan8[2 + 4]] =
4135             nnz_cache[scan8[3 + 4]] = (h->cbp & 0x2000) >> 12;
4136
4137             nnz_cache[scan8[0 + 8]] =
4138             nnz_cache[scan8[1 + 8]] =
4139             nnz_cache[scan8[2 + 8]] =
4140             nnz_cache[scan8[3 + 8]] = (h->cbp & 0x4000) >> 12;
4141
4142             nnz_cache[scan8[0 + 12]] =
4143             nnz_cache[scan8[1 + 12]] =
4144             nnz_cache[scan8[2 + 12]] =
4145             nnz_cache[scan8[3 + 12]] = (h->cbp & 0x8000) >> 12;
4146         }
4147     }
4148
4149     return 0;
4150 }
4151
4152 static void loop_filter(H264Context *h, int start_x, int end_x)
4153 {
4154     uint8_t *dest_y, *dest_cb, *dest_cr;
4155     int linesize, uvlinesize, mb_x, mb_y;
4156     const int end_mb_y       = h->mb_y + FRAME_MBAFF(h);
4157     const int old_slice_type = h->slice_type;
4158     const int pixel_shift    = h->pixel_shift;
4159     const int block_h        = 16 >> h->chroma_y_shift;
4160
4161     if (h->deblocking_filter) {
4162         for (mb_x = start_x; mb_x < end_x; mb_x++)
4163             for (mb_y = end_mb_y - FRAME_MBAFF(h); mb_y <= end_mb_y; mb_y++) {
4164                 int mb_xy, mb_type;
4165                 mb_xy         = h->mb_xy = mb_x + mb_y * h->mb_stride;
4166                 h->slice_num  = h->slice_table[mb_xy];
4167                 mb_type       = h->cur_pic.mb_type[mb_xy];
4168                 h->list_count = h->list_counts[mb_xy];
4169
4170                 if (FRAME_MBAFF(h))
4171                     h->mb_mbaff               =
4172                     h->mb_field_decoding_flag = !!IS_INTERLACED(mb_type);
4173
4174                 h->mb_x = mb_x;
4175                 h->mb_y = mb_y;
4176                 dest_y  = h->cur_pic.f.data[0] +
4177                           ((mb_x << pixel_shift) + mb_y * h->linesize) * 16;
4178                 dest_cb = h->cur_pic.f.data[1] +
4179                           (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
4180                           mb_y * h->uvlinesize * block_h;
4181                 dest_cr = h->cur_pic.f.data[2] +
4182                           (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
4183                           mb_y * h->uvlinesize * block_h;
4184                 // FIXME simplify above
4185
4186                 if (MB_FIELD(h)) {
4187                     linesize   = h->mb_linesize   = h->linesize   * 2;
4188                     uvlinesize = h->mb_uvlinesize = h->uvlinesize * 2;
4189                     if (mb_y & 1) { // FIXME move out of this function?
4190                         dest_y  -= h->linesize   * 15;
4191                         dest_cb -= h->uvlinesize * (block_h - 1);
4192                         dest_cr -= h->uvlinesize * (block_h - 1);
4193                     }
4194                 } else {
4195                     linesize   = h->mb_linesize   = h->linesize;
4196                     uvlinesize = h->mb_uvlinesize = h->uvlinesize;
4197                 }
4198                 backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize,
4199                                  uvlinesize, 0);
4200                 if (fill_filter_caches(h, mb_type))
4201                     continue;
4202                 h->chroma_qp[0] = get_chroma_qp(h, 0, h->cur_pic.qscale_table[mb_xy]);
4203                 h->chroma_qp[1] = get_chroma_qp(h, 1, h->cur_pic.qscale_table[mb_xy]);
4204
4205                 if (FRAME_MBAFF(h)) {
4206                     ff_h264_filter_mb(h, mb_x, mb_y, dest_y, dest_cb, dest_cr,
4207                                       linesize, uvlinesize);
4208                 } else {
4209                     ff_h264_filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb,
4210                                            dest_cr, linesize, uvlinesize);
4211                 }
4212             }
4213     }
4214     h->slice_type   = old_slice_type;
4215     h->mb_x         = end_x;
4216     h->mb_y         = end_mb_y - FRAME_MBAFF(h);
4217     h->chroma_qp[0] = get_chroma_qp(h, 0, h->qscale);
4218     h->chroma_qp[1] = get_chroma_qp(h, 1, h->qscale);
4219 }
4220
4221 static void predict_field_decoding_flag(H264Context *h)
4222 {
4223     const int mb_xy = h->mb_x + h->mb_y * h->mb_stride;
4224     int mb_type     = (h->slice_table[mb_xy - 1] == h->slice_num) ?
4225                       h->cur_pic.mb_type[mb_xy - 1] :
4226                       (h->slice_table[mb_xy - h->mb_stride] == h->slice_num) ?
4227                       h->cur_pic.mb_type[mb_xy - h->mb_stride] : 0;
4228     h->mb_mbaff     = h->mb_field_decoding_flag = IS_INTERLACED(mb_type) ? 1 : 0;
4229 }
4230
4231 /**
4232  * Draw edges and report progress for the last MB row.
4233  */
4234 static void decode_finish_row(H264Context *h)
4235 {
4236     int top            = 16 * (h->mb_y      >> FIELD_PICTURE(h));
4237     int pic_height     = 16 *  h->mb_height >> FIELD_PICTURE(h);
4238     int height         =  16      << FRAME_MBAFF(h);
4239     int deblock_border = (16 + 4) << FRAME_MBAFF(h);
4240
4241     if (h->deblocking_filter) {
4242         if ((top + height) >= pic_height)
4243             height += deblock_border;
4244         top -= deblock_border;
4245     }
4246
4247     if (top >= pic_height || (top + height) < 0)
4248         return;
4249
4250     height = FFMIN(height, pic_height - top);
4251     if (top < 0) {
4252         height = top + height;
4253         top    = 0;
4254     }
4255
4256     ff_h264_draw_horiz_band(h, top, height);
4257
4258     if (h->droppable || h->er.error_occurred)
4259         return;
4260
4261     ff_thread_report_progress(&h->cur_pic_ptr->tf, top + height - 1,
4262                               h->picture_structure == PICT_BOTTOM_FIELD);
4263 }
4264
4265 static void er_add_slice(H264Context *h, int startx, int starty,
4266                          int endx, int endy, int status)
4267 {
4268     if (CONFIG_ERROR_RESILIENCE) {
4269         ERContext *er = &h->er;
4270
4271         er->ref_count = h->ref_count[0];
4272         ff_er_add_slice(er, startx, starty, endx, endy, status);
4273     }
4274 }
4275
4276 static int decode_slice(struct AVCodecContext *avctx, void *arg)
4277 {
4278     H264Context *h = *(void **)arg;
4279     int lf_x_start = h->mb_x;
4280
4281     h->mb_skip_run = -1;
4282
4283     av_assert0(h->block_offset[15] == (4 * ((scan8[15] - scan8[0]) & 7) << h->pixel_shift) + 4 * h->linesize * ((scan8[15] - scan8[0]) >> 3));
4284
4285     h->is_complex = FRAME_MBAFF(h) || h->picture_structure != PICT_FRAME ||
4286                     avctx->codec_id != AV_CODEC_ID_H264 ||
4287                     (CONFIG_GRAY && (h->flags & CODEC_FLAG_GRAY));
4288
4289     if (!(h->avctx->active_thread_type & FF_THREAD_SLICE) && h->picture_structure == PICT_FRAME && h->er.error_status_table) {
4290         const int start_i  = av_clip(h->resync_mb_x + h->resync_mb_y * h->mb_width, 0, h->mb_num - 1);
4291         if (start_i) {
4292             int prev_status = h->er.error_status_table[h->er.mb_index2xy[start_i - 1]];
4293             prev_status &= ~ VP_START;
4294             if (prev_status != (ER_MV_END | ER_DC_END | ER_AC_END))
4295                 h->er.error_occurred = 1;
4296         }
4297     }
4298
4299     if (h->pps.cabac) {
4300         /* realign */
4301         align_get_bits(&h->gb);
4302
4303         /* init cabac */
4304         ff_init_cabac_decoder(&h->cabac,
4305                               h->gb.buffer + get_bits_count(&h->gb) / 8,
4306                               (get_bits_left(&h->gb) + 7) / 8);
4307
4308         ff_h264_init_cabac_states(h);
4309
4310         for (;;) {
4311             // START_TIMER
4312             int ret = ff_h264_decode_mb_cabac(h);
4313             int eos;
4314             // STOP_TIMER("decode_mb_cabac")
4315
4316             if (ret >= 0)
4317                 ff_h264_hl_decode_mb(h);
4318
4319             // FIXME optimal? or let mb_decode decode 16x32 ?
4320             if (ret >= 0 && FRAME_MBAFF(h)) {
4321                 h->mb_y++;
4322
4323                 ret = ff_h264_decode_mb_cabac(h);
4324
4325                 if (ret >= 0)
4326                     ff_h264_hl_decode_mb(h);
4327                 h->mb_y--;
4328             }
4329             eos = get_cabac_terminate(&h->cabac);
4330
4331             if ((h->workaround_bugs & FF_BUG_TRUNCATED) &&
4332                 h->cabac.bytestream > h->cabac.bytestream_end + 2) {
4333                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x - 1,
4334                                 h->mb_y, ER_MB_END);
4335                 if (h->mb_x >= lf_x_start)
4336                     loop_filter(h, lf_x_start, h->mb_x + 1);
4337                 return 0;
4338             }
4339             if (h->cabac.bytestream > h->cabac.bytestream_end + 2 )
4340                 av_log(h->avctx, AV_LOG_DEBUG, "bytestream overread %td\n", h->cabac.bytestream_end - h->cabac.bytestream);
4341             if (ret < 0 || h->cabac.bytestream > h->cabac.bytestream_end + 4) {
4342                 av_log(h->avctx, AV_LOG_ERROR,
4343                        "error while decoding MB %d %d, bytestream (%td)\n",
4344                        h->mb_x, h->mb_y,
4345                        h->cabac.bytestream_end - h->cabac.bytestream);
4346                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
4347                                 h->mb_y, ER_MB_ERROR);
4348                 return -1;
4349             }
4350
4351             if (++h->mb_x >= h->mb_width) {
4352                 loop_filter(h, lf_x_start, h->mb_x);
4353                 h->mb_x = lf_x_start = 0;
4354                 decode_finish_row(h);
4355                 ++h->mb_y;
4356                 if (FIELD_OR_MBAFF_PICTURE(h)) {
4357                     ++h->mb_y;
4358                     if (FRAME_MBAFF(h) && h->mb_y < h->mb_height)
4359                         predict_field_decoding_flag(h);
4360                 }
4361             }
4362
4363             if (eos || h->mb_y >= h->mb_height) {
4364                 tprintf(h->avctx, "slice end %d %d\n",
4365                         get_bits_count(&h->gb), h->gb.size_in_bits);
4366                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x - 1,
4367                                 h->mb_y, ER_MB_END);
4368                 if (h->mb_x > lf_x_start)
4369                     loop_filter(h, lf_x_start, h->mb_x);
4370                 return 0;
4371             }
4372         }
4373     } else {
4374         for (;;) {
4375             int ret = ff_h264_decode_mb_cavlc(h);
4376
4377             if (ret >= 0)
4378                 ff_h264_hl_decode_mb(h);
4379
4380             // FIXME optimal? or let mb_decode decode 16x32 ?
4381             if (ret >= 0 && FRAME_MBAFF(h)) {
4382                 h->mb_y++;
4383                 ret = ff_h264_decode_mb_cavlc(h);
4384
4385                 if (ret >= 0)
4386                     ff_h264_hl_decode_mb(h);
4387                 h->mb_y--;
4388             }
4389
4390             if (ret < 0) {
4391                 av_log(h->avctx, AV_LOG_ERROR,
4392                        "error while decoding MB %d %d\n", h->mb_x, h->mb_y);
4393                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
4394                                 h->mb_y, ER_MB_ERROR);
4395                 return -1;
4396             }
4397
4398             if (++h->mb_x >= h->mb_width) {
4399                 loop_filter(h, lf_x_start, h->mb_x);
4400                 h->mb_x = lf_x_start = 0;
4401                 decode_finish_row(h);
4402                 ++h->mb_y;
4403                 if (FIELD_OR_MBAFF_PICTURE(h)) {
4404                     ++h->mb_y;
4405                     if (FRAME_MBAFF(h) && h->mb_y < h->mb_height)
4406                         predict_field_decoding_flag(h);
4407                 }
4408                 if (h->mb_y >= h->mb_height) {
4409                     tprintf(h->avctx, "slice end %d %d\n",
4410                             get_bits_count(&h->gb), h->gb.size_in_bits);
4411
4412                     if (   get_bits_left(&h->gb) == 0
4413                         || get_bits_left(&h->gb) > 0 && !(h->avctx->err_recognition & AV_EF_AGGRESSIVE)) {
4414                         er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
4415                                         h->mb_x - 1, h->mb_y,
4416                                         ER_MB_END);
4417
4418                         return 0;
4419                     } else {
4420                         er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
4421                                         h->mb_x, h->mb_y,
4422                                         ER_MB_END);
4423
4424                         return -1;
4425                     }
4426                 }
4427             }
4428
4429             if (get_bits_left(&h->gb) <= 0 && h->mb_skip_run <= 0) {
4430                 tprintf(h->avctx, "slice end %d %d\n",
4431                         get_bits_count(&h->gb), h->gb.size_in_bits);
4432                 if (get_bits_left(&h->gb) == 0) {
4433                     er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
4434                                     h->mb_x - 1, h->mb_y,
4435                                     ER_MB_END);
4436                     if (h->mb_x > lf_x_start)
4437                         loop_filter(h, lf_x_start, h->mb_x);
4438
4439                     return 0;
4440                 } else {
4441                     er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
4442                                     h->mb_y, ER_MB_ERROR);
4443
4444                     return -1;
4445                 }
4446             }
4447         }
4448     }
4449 }
4450
4451 /**
4452  * Call decode_slice() for each context.
4453  *
4454  * @param h h264 master context
4455  * @param context_count number of contexts to execute
4456  */
4457 static int execute_decode_slices(H264Context *h, int context_count)
4458 {
4459     AVCodecContext *const avctx = h->avctx;
4460     H264Context *hx;
4461     int i;
4462
4463     if (h->avctx->hwaccel ||
4464         h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
4465         return 0;
4466     if (context_count == 1) {
4467         return decode_slice(avctx, &h);
4468     } else {
4469         av_assert0(context_count > 0);
4470         for (i = 1; i < context_count; i++) {
4471             hx                    = h->thread_context[i];
4472             if (CONFIG_ERROR_RESILIENCE) {
4473                 hx->er.error_count = 0;
4474             }
4475             hx->x264_build        = h->x264_build;
4476         }
4477
4478         avctx->execute(avctx, decode_slice, h->thread_context,
4479                        NULL, context_count, sizeof(void *));
4480
4481         /* pull back stuff from slices to master context */
4482         hx                   = h->thread_context[context_count - 1];
4483         h->mb_x              = hx->mb_x;
4484         h->mb_y              = hx->mb_y;
4485         h->droppable         = hx->droppable;
4486         h->picture_structure = hx->picture_structure;
4487         if (CONFIG_ERROR_RESILIENCE) {
4488             for (i = 1; i < context_count; i++)
4489                 h->er.error_count += h->thread_context[i]->er.error_count;
4490         }
4491     }
4492
4493     return 0;
4494 }
4495
4496 static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size,
4497                             int parse_extradata)
4498 {
4499     AVCodecContext *const avctx = h->avctx;
4500     H264Context *hx; ///< thread context
4501     int buf_index;
4502     int context_count;
4503     int next_avc;
4504     int pass = !(avctx->active_thread_type & FF_THREAD_FRAME);
4505     int nals_needed = 0; ///< number of NALs that need decoding before the next frame thread starts
4506     int nal_index;
4507     int idr_cleared=0;
4508     int first_slice = 0;
4509
4510     h->nal_unit_type= 0;
4511
4512     if(!h->slice_context_count)
4513          h->slice_context_count= 1;
4514     h->max_contexts = h->slice_context_count;
4515     if (!(avctx->flags2 & CODEC_FLAG2_CHUNKS)) {
4516         h->current_slice = 0;
4517         if (!h->first_field)
4518             h->cur_pic_ptr = NULL;
4519         ff_h264_reset_sei(h);
4520     }
4521
4522     if (h->nal_length_size == 4) {
4523         if (buf_size > 8 && AV_RB32(buf) == 1 && AV_RB32(buf+5) > (unsigned)buf_size) {
4524             h->is_avc = 0;
4525         }else if(buf_size > 3 && AV_RB32(buf) > 1 && AV_RB32(buf) <= (unsigned)buf_size)
4526             h->is_avc = 1;
4527     }
4528
4529     for (; pass <= 1; pass++) {
4530         buf_index     = 0;
4531         context_count = 0;
4532         next_avc      = h->is_avc ? 0 : buf_size;
4533         nal_index     = 0;
4534         for (;;) {
4535             int consumed;
4536             int dst_length;
4537             int bit_length;
4538             const uint8_t *ptr;
4539             int i, nalsize = 0;
4540             int err;
4541
4542             if (buf_index >= next_avc) {
4543                 if (buf_index >= buf_size - h->nal_length_size)
4544                     break;
4545                 nalsize = 0;
4546                 for (i = 0; i < h->nal_length_size; i++)
4547                     nalsize = (nalsize << 8) | buf[buf_index++];
4548                 if (nalsize <= 0 || nalsize > buf_size - buf_index) {
4549                     av_log(h->avctx, AV_LOG_ERROR,
4550                            "AVC: nal size %d\n", nalsize);
4551                     break;
4552                 }
4553                 next_avc = buf_index + nalsize;
4554             } else {
4555                 // start code prefix search
4556                 for (; buf_index + 3 < next_avc; buf_index++)
4557                     // This should always succeed in the first iteration.
4558                     if (buf[buf_index]     == 0 &&
4559                         buf[buf_index + 1] == 0 &&
4560                         buf[buf_index + 2] == 1)
4561                         break;
4562
4563                 if (buf_index + 3 >= buf_size) {
4564                     buf_index = buf_size;
4565                     break;
4566                 }
4567
4568                 buf_index += 3;
4569                 if (buf_index >= next_avc)
4570                     continue;
4571             }
4572
4573             hx = h->thread_context[context_count];
4574
4575             ptr = ff_h264_decode_nal(hx, buf + buf_index, &dst_length,
4576                                      &consumed, next_avc - buf_index);
4577             if (ptr == NULL || dst_length < 0) {
4578                 buf_index = -1;
4579                 goto end;
4580             }
4581             i = buf_index + consumed;
4582             if ((h->workaround_bugs & FF_BUG_AUTODETECT) && i + 3 < next_avc &&
4583                 buf[i]     == 0x00 && buf[i + 1] == 0x00 &&
4584                 buf[i + 2] == 0x01 && buf[i + 3] == 0xE0)
4585                 h->workaround_bugs |= FF_BUG_TRUNCATED;
4586
4587             if (!(h->workaround_bugs & FF_BUG_TRUNCATED))
4588                 while(dst_length > 0 && ptr[dst_length - 1] == 0)
4589                     dst_length--;
4590             bit_length = !dst_length ? 0
4591                                      : (8 * dst_length -
4592                                         decode_rbsp_trailing(h, ptr + dst_length - 1));
4593
4594             if (h->avctx->debug & FF_DEBUG_STARTCODE)
4595                 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);
4596
4597             if (h->is_avc && (nalsize != consumed) && nalsize)
4598                 av_log(h->avctx, AV_LOG_DEBUG,
4599                        "AVC: Consumed only %d bytes instead of %d\n",
4600                        consumed, nalsize);
4601
4602             buf_index += consumed;
4603             nal_index++;
4604
4605             if (pass == 0) {
4606                 /* packets can sometimes contain multiple PPS/SPS,
4607                  * e.g. two PAFF field pictures in one packet, or a demuxer
4608                  * which splits NALs strangely if so, when frame threading we
4609                  * can't start the next thread until we've read all of them */
4610                 switch (hx->nal_unit_type) {
4611                 case NAL_SPS:
4612                 case NAL_PPS:
4613                     nals_needed = nal_index;
4614                     break;
4615                 case NAL_DPA:
4616                 case NAL_IDR_SLICE:
4617                 case NAL_SLICE:
4618                     init_get_bits(&hx->gb, ptr, bit_length);
4619                     if (!get_ue_golomb(&hx->gb) || !first_slice)
4620                         nals_needed = nal_index;
4621                     if (!first_slice)
4622                         first_slice = hx->nal_unit_type;
4623                 }
4624                 continue;
4625             }
4626
4627             if (!first_slice)
4628                 switch (hx->nal_unit_type) {
4629                 case NAL_DPA:
4630                 case NAL_IDR_SLICE:
4631                 case NAL_SLICE:
4632                     first_slice = hx->nal_unit_type;
4633                 }
4634
4635             // FIXME do not discard SEI id
4636             if (avctx->skip_frame >= AVDISCARD_NONREF && h->nal_ref_idc == 0)
4637                 continue;
4638
4639 again:
4640             /* Ignore per frame NAL unit type during extradata
4641              * parsing. Decoding slices is not possible in codec init
4642              * with frame-mt */
4643             if (parse_extradata) {
4644                 switch (hx->nal_unit_type) {
4645                 case NAL_IDR_SLICE:
4646                 case NAL_SLICE:
4647                 case NAL_DPA:
4648                 case NAL_DPB:
4649                 case NAL_DPC:
4650                 case NAL_AUXILIARY_SLICE:
4651                     av_log(h->avctx, AV_LOG_WARNING, "Ignoring NAL %d in global header/extradata\n", hx->nal_unit_type);
4652                     hx->nal_unit_type = NAL_FF_IGNORE;
4653                 }
4654             }
4655
4656             err = 0;
4657
4658             switch (hx->nal_unit_type) {
4659             case NAL_IDR_SLICE:
4660                 if (first_slice != NAL_IDR_SLICE) {
4661                     av_log(h->avctx, AV_LOG_ERROR,
4662                            "Invalid mix of idr and non-idr slices\n");
4663                     buf_index = -1;
4664                     goto end;
4665                 }
4666                 if(!idr_cleared)
4667                     idr(h); // FIXME ensure we don't lose some frames if there is reordering
4668                 idr_cleared = 1;
4669             case NAL_SLICE:
4670                 init_get_bits(&hx->gb, ptr, bit_length);
4671                 hx->intra_gb_ptr        =
4672                     hx->inter_gb_ptr    = &hx->gb;
4673                 hx->data_partitioning = 0;
4674
4675                 if ((err = decode_slice_header(hx, h)))
4676                     break;
4677
4678                 if (h->sei_recovery_frame_cnt >= 0 && (h->frame_num != h->sei_recovery_frame_cnt || hx->slice_type_nos != AV_PICTURE_TYPE_I))
4679                     h->valid_recovery_point = 1;
4680
4681                 if (   h->sei_recovery_frame_cnt >= 0
4682                     && (   h->recovery_frame<0
4683                         || ((h->recovery_frame - h->frame_num) & ((1 << h->sps.log2_max_frame_num)-1)) > h->sei_recovery_frame_cnt)) {
4684                     h->recovery_frame = (h->frame_num + h->sei_recovery_frame_cnt) %
4685                                         (1 << h->sps.log2_max_frame_num);
4686
4687                     if (!h->valid_recovery_point)
4688                         h->recovery_frame = h->frame_num;
4689                 }
4690
4691                 h->cur_pic_ptr->f.key_frame |=
4692                         (hx->nal_unit_type == NAL_IDR_SLICE);
4693
4694                 if (h->recovery_frame == h->frame_num) {
4695                     h->cur_pic_ptr->sync |= 1;
4696                     h->recovery_frame = -1;
4697                 }
4698
4699                 h->sync |= !!h->cur_pic_ptr->f.key_frame;
4700                 h->sync |= 3*!!(avctx->flags2 & CODEC_FLAG2_SHOW_ALL);
4701                 h->cur_pic_ptr->sync |= h->sync;
4702
4703                 if (h->current_slice == 1) {
4704                     if (!(avctx->flags2 & CODEC_FLAG2_CHUNKS))
4705                         decode_postinit(h, nal_index >= nals_needed);
4706
4707                     if (h->avctx->hwaccel &&
4708                         h->avctx->hwaccel->start_frame(h->avctx, NULL, 0) < 0)
4709                         return -1;
4710                     if (CONFIG_H264_VDPAU_DECODER &&
4711                         h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
4712                         ff_vdpau_h264_picture_start(h);
4713                 }
4714
4715                 if (hx->redundant_pic_count == 0 &&
4716                     (avctx->skip_frame < AVDISCARD_NONREF ||
4717                      hx->nal_ref_idc) &&
4718                     (avctx->skip_frame < AVDISCARD_BIDIR  ||
4719                      hx->slice_type_nos != AV_PICTURE_TYPE_B) &&
4720                     (avctx->skip_frame < AVDISCARD_NONKEY ||
4721                      hx->slice_type_nos == AV_PICTURE_TYPE_I) &&
4722                     avctx->skip_frame < AVDISCARD_ALL) {
4723                     if (avctx->hwaccel) {
4724                         if (avctx->hwaccel->decode_slice(avctx,
4725                                                          &buf[buf_index - consumed],
4726                                                          consumed) < 0)
4727                             return -1;
4728                     } else if (CONFIG_H264_VDPAU_DECODER &&
4729                                h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU) {
4730                         static const uint8_t start_code[] = {
4731                             0x00, 0x00, 0x01 };
4732                         ff_vdpau_add_data_chunk(h->cur_pic_ptr->f.data[0], start_code,
4733                                                 sizeof(start_code));
4734                         ff_vdpau_add_data_chunk(h->cur_pic_ptr->f.data[0], &buf[buf_index - consumed],
4735                                                 consumed);
4736                     } else
4737                         context_count++;
4738                 }
4739                 break;
4740             case NAL_DPA:
4741                 init_get_bits(&hx->gb, ptr, bit_length);
4742                 hx->intra_gb_ptr =
4743                 hx->inter_gb_ptr = NULL;
4744
4745                 if ((err = decode_slice_header(hx, h)) < 0)
4746                     break;
4747
4748                 hx->data_partitioning = 1;
4749                 break;
4750             case NAL_DPB:
4751                 init_get_bits(&hx->intra_gb, ptr, bit_length);
4752                 hx->intra_gb_ptr = &hx->intra_gb;
4753                 break;
4754             case NAL_DPC:
4755                 init_get_bits(&hx->inter_gb, ptr, bit_length);
4756                 hx->inter_gb_ptr = &hx->inter_gb;
4757
4758                 av_log(h->avctx, AV_LOG_ERROR, "Partitioned H.264 support is incomplete\n");
4759                 break;
4760
4761                 if (hx->redundant_pic_count == 0 &&
4762                     hx->intra_gb_ptr &&
4763                     hx->data_partitioning &&
4764                     h->cur_pic_ptr && h->context_initialized &&
4765                     (avctx->skip_frame < AVDISCARD_NONREF || hx->nal_ref_idc) &&
4766                     (avctx->skip_frame < AVDISCARD_BIDIR  ||
4767                      hx->slice_type_nos != AV_PICTURE_TYPE_B) &&
4768                     (avctx->skip_frame < AVDISCARD_NONKEY ||
4769                      hx->slice_type_nos == AV_PICTURE_TYPE_I) &&
4770                     avctx->skip_frame < AVDISCARD_ALL)
4771                     context_count++;
4772                 break;
4773             case NAL_SEI:
4774                 init_get_bits(&h->gb, ptr, bit_length);
4775                 ff_h264_decode_sei(h);
4776                 break;
4777             case NAL_SPS:
4778                 init_get_bits(&h->gb, ptr, bit_length);
4779                 if (ff_h264_decode_seq_parameter_set(h) < 0 && (h->is_avc ? nalsize : 1)) {
4780                     av_log(h->avctx, AV_LOG_DEBUG,
4781                            "SPS decoding failure, trying again with the complete NAL\n");
4782                     if (h->is_avc)
4783                         av_assert0(next_avc - buf_index + consumed == nalsize);
4784                     if ((next_avc - buf_index + consumed - 1) >= INT_MAX/8)
4785                         break;
4786                     init_get_bits(&h->gb, &buf[buf_index + 1 - consumed],
4787                                   8*(next_avc - buf_index + consumed - 1));
4788                     ff_h264_decode_seq_parameter_set(h);
4789                 }
4790
4791                 break;
4792             case NAL_PPS:
4793                 init_get_bits(&h->gb, ptr, bit_length);
4794                 ff_h264_decode_picture_parameter_set(h, bit_length);
4795                 break;
4796             case NAL_AUD:
4797             case NAL_END_SEQUENCE:
4798             case NAL_END_STREAM:
4799             case NAL_FILLER_DATA:
4800             case NAL_SPS_EXT:
4801             case NAL_AUXILIARY_SLICE:
4802                 break;
4803             case NAL_FF_IGNORE:
4804                 break;
4805             default:
4806                 av_log(avctx, AV_LOG_DEBUG, "Unknown NAL code: %d (%d bits)\n",
4807                        hx->nal_unit_type, bit_length);
4808             }
4809
4810             if (context_count == h->max_contexts) {
4811                 execute_decode_slices(h, context_count);
4812                 context_count = 0;
4813             }
4814
4815             if (err < 0)
4816                 av_log(h->avctx, AV_LOG_ERROR, "decode_slice_header error\n");
4817             else if (err == 1) {
4818                 /* Slice could not be decoded in parallel mode, copy down
4819                  * NAL unit stuff to context 0 and restart. Note that
4820                  * rbsp_buffer is not transferred, but since we no longer
4821                  * run in parallel mode this should not be an issue. */
4822                 h->nal_unit_type = hx->nal_unit_type;
4823                 h->nal_ref_idc   = hx->nal_ref_idc;
4824                 hx               = h;
4825                 goto again;
4826             }
4827         }
4828     }
4829     if (context_count)
4830         execute_decode_slices(h, context_count);
4831
4832 end:
4833     /* clean up */
4834     if (h->cur_pic_ptr && !h->droppable) {
4835         ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
4836                                   h->picture_structure == PICT_BOTTOM_FIELD);
4837     }
4838
4839     return buf_index;
4840 }
4841
4842 /**
4843  * Return the number of bytes consumed for building the current frame.
4844  */
4845 static int get_consumed_bytes(int pos, int buf_size)
4846 {
4847     if (pos == 0)
4848         pos = 1;          // avoid infinite loops (i doubt that is needed but ...)
4849     if (pos + 10 > buf_size)
4850         pos = buf_size;                   // oops ;)
4851
4852     return pos;
4853 }
4854
4855 static int output_frame(H264Context *h, AVFrame *dst, Picture *srcp)
4856 {
4857     AVFrame *src = &srcp->f;
4858     int i;
4859     int ret = av_frame_ref(dst, src);
4860     if (ret < 0)
4861         return ret;
4862
4863     av_dict_set(&dst->metadata, "stereo_mode", ff_h264_sei_stereo_mode(h), 0);
4864
4865     if (!srcp->crop)
4866         return 0;
4867
4868     for (i = 0; i < 3; i++) {
4869         int hshift = (i > 0) ? h->chroma_x_shift : 0;
4870         int vshift = (i > 0) ? h->chroma_y_shift : 0;
4871         int off    = ((srcp->crop_left >> hshift) << h->pixel_shift) +
4872             (srcp->crop_top  >> vshift) * dst->linesize[i];
4873         dst->data[i] += off;
4874     }
4875     return 0;
4876 }
4877
4878 static int decode_frame(AVCodecContext *avctx, void *data,
4879                         int *got_frame, AVPacket *avpkt)
4880 {
4881     const uint8_t *buf = avpkt->data;
4882     int buf_size       = avpkt->size;
4883     H264Context *h     = avctx->priv_data;
4884     AVFrame *pict      = data;
4885     int buf_index      = 0;
4886     Picture *out;
4887     int i, out_idx;
4888     int ret;
4889
4890     h->flags  = avctx->flags;
4891
4892     /* end of stream, output what is still in the buffers */
4893     if (buf_size == 0) {
4894  out:
4895
4896         h->cur_pic_ptr = NULL;
4897         h->first_field = 0;
4898
4899         // FIXME factorize this with the output code below
4900         out     = h->delayed_pic[0];
4901         out_idx = 0;
4902         for (i = 1;
4903              h->delayed_pic[i] &&
4904              !h->delayed_pic[i]->f.key_frame &&
4905              !h->delayed_pic[i]->mmco_reset;
4906              i++)
4907             if (h->delayed_pic[i]->poc < out->poc) {
4908                 out     = h->delayed_pic[i];
4909                 out_idx = i;
4910             }
4911
4912         for (i = out_idx; h->delayed_pic[i]; i++)
4913             h->delayed_pic[i] = h->delayed_pic[i + 1];
4914
4915         if (out) {
4916             out->reference &= ~DELAYED_PIC_REF;
4917             ret = output_frame(h, pict, out);
4918             if (ret < 0)
4919                 return ret;
4920             *got_frame = 1;
4921         }
4922
4923         return buf_index;
4924     }
4925     if(h->is_avc && buf_size >= 9 && buf[0]==1 && buf[2]==0 && (buf[4]&0xFC)==0xFC && (buf[5]&0x1F) && buf[8]==0x67){
4926         int cnt= buf[5]&0x1f;
4927         const uint8_t *p= buf+6;
4928         while(cnt--){
4929             int nalsize= AV_RB16(p) + 2;
4930             if(nalsize > buf_size - (p-buf) || p[2]!=0x67)
4931                 goto not_extra;
4932             p += nalsize;
4933         }
4934         cnt = *(p++);
4935         if(!cnt)
4936             goto not_extra;
4937         while(cnt--){
4938             int nalsize= AV_RB16(p) + 2;
4939             if(nalsize > buf_size - (p-buf) || p[2]!=0x68)
4940                 goto not_extra;
4941             p += nalsize;
4942         }
4943
4944         return ff_h264_decode_extradata(h, buf, buf_size);
4945     }
4946 not_extra:
4947
4948     buf_index = decode_nal_units(h, buf, buf_size, 0);
4949     if (buf_index < 0)
4950         return -1;
4951
4952     if (!h->cur_pic_ptr && h->nal_unit_type == NAL_END_SEQUENCE) {
4953         av_assert0(buf_index <= buf_size);
4954         goto out;
4955     }
4956
4957     if (!(avctx->flags2 & CODEC_FLAG2_CHUNKS) && !h->cur_pic_ptr) {
4958         if (avctx->skip_frame >= AVDISCARD_NONREF ||
4959             buf_size >= 4 && !memcmp("Q264", buf, 4))
4960             return buf_size;
4961         av_log(avctx, AV_LOG_ERROR, "no frame!\n");
4962         return -1;
4963     }
4964
4965     if (!(avctx->flags2 & CODEC_FLAG2_CHUNKS) ||
4966         (h->mb_y >= h->mb_height && h->mb_height)) {
4967         if (avctx->flags2 & CODEC_FLAG2_CHUNKS)
4968             decode_postinit(h, 1);
4969
4970         field_end(h, 0);
4971
4972         /* Wait for second field. */
4973         *got_frame = 0;
4974         if (h->next_output_pic && (h->next_output_pic->sync || h->sync>1)) {
4975             ret = output_frame(h, pict, h->next_output_pic);
4976             if (ret < 0)
4977                 return ret;
4978             *got_frame = 1;
4979             if (CONFIG_MPEGVIDEO) {
4980                 ff_print_debug_info2(h->avctx, h->next_output_pic, pict, h->er.mbskip_table,
4981                                     &h->low_delay,
4982                                     h->mb_width, h->mb_height, h->mb_stride, 1);
4983             }
4984         }
4985     }
4986
4987     assert(pict->data[0] || !*got_frame);
4988
4989     return get_consumed_bytes(buf_index, buf_size);
4990 }
4991
4992 av_cold void ff_h264_free_context(H264Context *h)
4993 {
4994     int i;
4995
4996     free_tables(h, 1); // FIXME cleanup init stuff perhaps
4997
4998     for (i = 0; i < MAX_SPS_COUNT; i++)
4999         av_freep(h->sps_buffers + i);
5000
5001     for (i = 0; i < MAX_PPS_COUNT; i++)
5002         av_freep(h->pps_buffers + i);
5003 }
5004
5005 static av_cold int h264_decode_end(AVCodecContext *avctx)
5006 {
5007     H264Context *h    = avctx->priv_data;
5008
5009     ff_h264_remove_all_refs(h);
5010     ff_h264_free_context(h);
5011
5012     unref_picture(h, &h->cur_pic);
5013
5014     return 0;
5015 }
5016
5017 static const AVProfile profiles[] = {
5018     { FF_PROFILE_H264_BASELINE,             "Baseline"              },
5019     { FF_PROFILE_H264_CONSTRAINED_BASELINE, "Constrained Baseline"  },
5020     { FF_PROFILE_H264_MAIN,                 "Main"                  },
5021     { FF_PROFILE_H264_EXTENDED,             "Extended"              },
5022     { FF_PROFILE_H264_HIGH,                 "High"                  },
5023     { FF_PROFILE_H264_HIGH_10,              "High 10"               },
5024     { FF_PROFILE_H264_HIGH_10_INTRA,        "High 10 Intra"         },
5025     { FF_PROFILE_H264_HIGH_422,             "High 4:2:2"            },
5026     { FF_PROFILE_H264_HIGH_422_INTRA,       "High 4:2:2 Intra"      },
5027     { FF_PROFILE_H264_HIGH_444,             "High 4:4:4"            },
5028     { FF_PROFILE_H264_HIGH_444_PREDICTIVE,  "High 4:4:4 Predictive" },
5029     { FF_PROFILE_H264_HIGH_444_INTRA,       "High 4:4:4 Intra"      },
5030     { FF_PROFILE_H264_CAVLC_444,            "CAVLC 4:4:4"           },
5031     { FF_PROFILE_UNKNOWN },
5032 };
5033
5034 static const AVOption h264_options[] = {
5035     {"is_avc", "is avc", offsetof(H264Context, is_avc), FF_OPT_TYPE_INT, {.i64 = 0}, 0, 1, 0},
5036     {"nal_length_size", "nal_length_size", offsetof(H264Context, nal_length_size), FF_OPT_TYPE_INT, {.i64 = 0}, 0, 4, 0},
5037     {NULL}
5038 };
5039
5040 static const AVClass h264_class = {
5041     .class_name = "H264 Decoder",
5042     .item_name  = av_default_item_name,
5043     .option     = h264_options,
5044     .version    = LIBAVUTIL_VERSION_INT,
5045 };
5046
5047 static const AVClass h264_vdpau_class = {
5048     .class_name = "H264 VDPAU Decoder",
5049     .item_name  = av_default_item_name,
5050     .option     = h264_options,
5051     .version    = LIBAVUTIL_VERSION_INT,
5052 };
5053
5054 AVCodec ff_h264_decoder = {
5055     .name                  = "h264",
5056     .type                  = AVMEDIA_TYPE_VIDEO,
5057     .id                    = AV_CODEC_ID_H264,
5058     .priv_data_size        = sizeof(H264Context),
5059     .init                  = ff_h264_decode_init,
5060     .close                 = h264_decode_end,
5061     .decode                = decode_frame,
5062     .capabilities          = /*CODEC_CAP_DRAW_HORIZ_BAND |*/ CODEC_CAP_DR1 |
5063                              CODEC_CAP_DELAY | CODEC_CAP_SLICE_THREADS |
5064                              CODEC_CAP_FRAME_THREADS,
5065     .flush                 = flush_dpb,
5066     .long_name             = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
5067     .init_thread_copy      = ONLY_IF_THREADS_ENABLED(decode_init_thread_copy),
5068     .update_thread_context = ONLY_IF_THREADS_ENABLED(decode_update_thread_context),
5069     .profiles              = NULL_IF_CONFIG_SMALL(profiles),
5070     .priv_class            = &h264_class,
5071 };
5072
5073 #if CONFIG_H264_VDPAU_DECODER
5074 AVCodec ff_h264_vdpau_decoder = {
5075     .name           = "h264_vdpau",
5076     .type           = AVMEDIA_TYPE_VIDEO,
5077     .id             = AV_CODEC_ID_H264,
5078     .priv_data_size = sizeof(H264Context),
5079     .init           = ff_h264_decode_init,
5080     .close          = h264_decode_end,
5081     .decode         = decode_frame,
5082     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_DELAY | CODEC_CAP_HWACCEL_VDPAU,
5083     .flush          = flush_dpb,
5084     .long_name      = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (VDPAU acceleration)"),
5085     .pix_fmts       = (const enum AVPixelFormat[]) { AV_PIX_FMT_VDPAU_H264,
5086                                                    AV_PIX_FMT_NONE},
5087     .profiles       = NULL_IF_CONFIG_SMALL(profiles),
5088     .priv_class     = &h264_vdpau_class,
5089 };
5090 #endif