]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264_slice.c
Merge commit '0ee2573347ecdb9cb5656001f7201d819eec16d8'
[ffmpeg] / libavcodec / h264_slice.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 #include "libavutil/avassert.h"
29 #include "libavutil/imgutils.h"
30 #include "libavutil/timer.h"
31 #include "internal.h"
32 #include "cabac.h"
33 #include "cabac_functions.h"
34 #include "error_resilience.h"
35 #include "avcodec.h"
36 #include "h264.h"
37 #include "h264data.h"
38 #include "h264chroma.h"
39 #include "h264_mvpred.h"
40 #include "golomb.h"
41 #include "mathops.h"
42 #include "mpegutils.h"
43 #include "rectangle.h"
44 #include "thread.h"
45
46
47 static const uint8_t rem6[QP_MAX_NUM + 1] = {
48     0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2,
49     3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5,
50     0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2,
51     3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5,
52     0, 1, 2, 3,
53 };
54
55 static const uint8_t div6[QP_MAX_NUM + 1] = {
56     0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3,  3,  3,
57     3, 3, 3, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6,  6,  6,
58     7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 10, 10, 10,
59    10,10,10,11,11,11,11,11,11,12,12,12,12,12,12,13,13,13, 13, 13, 13,
60    14,14,14,14,
61 };
62
63 static const uint8_t field_scan[16+1] = {
64     0 + 0 * 4, 0 + 1 * 4, 1 + 0 * 4, 0 + 2 * 4,
65     0 + 3 * 4, 1 + 1 * 4, 1 + 2 * 4, 1 + 3 * 4,
66     2 + 0 * 4, 2 + 1 * 4, 2 + 2 * 4, 2 + 3 * 4,
67     3 + 0 * 4, 3 + 1 * 4, 3 + 2 * 4, 3 + 3 * 4,
68 };
69
70 static const uint8_t field_scan8x8[64+1] = {
71     0 + 0 * 8, 0 + 1 * 8, 0 + 2 * 8, 1 + 0 * 8,
72     1 + 1 * 8, 0 + 3 * 8, 0 + 4 * 8, 1 + 2 * 8,
73     2 + 0 * 8, 1 + 3 * 8, 0 + 5 * 8, 0 + 6 * 8,
74     0 + 7 * 8, 1 + 4 * 8, 2 + 1 * 8, 3 + 0 * 8,
75     2 + 2 * 8, 1 + 5 * 8, 1 + 6 * 8, 1 + 7 * 8,
76     2 + 3 * 8, 3 + 1 * 8, 4 + 0 * 8, 3 + 2 * 8,
77     2 + 4 * 8, 2 + 5 * 8, 2 + 6 * 8, 2 + 7 * 8,
78     3 + 3 * 8, 4 + 1 * 8, 5 + 0 * 8, 4 + 2 * 8,
79     3 + 4 * 8, 3 + 5 * 8, 3 + 6 * 8, 3 + 7 * 8,
80     4 + 3 * 8, 5 + 1 * 8, 6 + 0 * 8, 5 + 2 * 8,
81     4 + 4 * 8, 4 + 5 * 8, 4 + 6 * 8, 4 + 7 * 8,
82     5 + 3 * 8, 6 + 1 * 8, 6 + 2 * 8, 5 + 4 * 8,
83     5 + 5 * 8, 5 + 6 * 8, 5 + 7 * 8, 6 + 3 * 8,
84     7 + 0 * 8, 7 + 1 * 8, 6 + 4 * 8, 6 + 5 * 8,
85     6 + 6 * 8, 6 + 7 * 8, 7 + 2 * 8, 7 + 3 * 8,
86     7 + 4 * 8, 7 + 5 * 8, 7 + 6 * 8, 7 + 7 * 8,
87 };
88
89 static const uint8_t field_scan8x8_cavlc[64+1] = {
90     0 + 0 * 8, 1 + 1 * 8, 2 + 0 * 8, 0 + 7 * 8,
91     2 + 2 * 8, 2 + 3 * 8, 2 + 4 * 8, 3 + 3 * 8,
92     3 + 4 * 8, 4 + 3 * 8, 4 + 4 * 8, 5 + 3 * 8,
93     5 + 5 * 8, 7 + 0 * 8, 6 + 6 * 8, 7 + 4 * 8,
94     0 + 1 * 8, 0 + 3 * 8, 1 + 3 * 8, 1 + 4 * 8,
95     1 + 5 * 8, 3 + 1 * 8, 2 + 5 * 8, 4 + 1 * 8,
96     3 + 5 * 8, 5 + 1 * 8, 4 + 5 * 8, 6 + 1 * 8,
97     5 + 6 * 8, 7 + 1 * 8, 6 + 7 * 8, 7 + 5 * 8,
98     0 + 2 * 8, 0 + 4 * 8, 0 + 5 * 8, 2 + 1 * 8,
99     1 + 6 * 8, 4 + 0 * 8, 2 + 6 * 8, 5 + 0 * 8,
100     3 + 6 * 8, 6 + 0 * 8, 4 + 6 * 8, 6 + 2 * 8,
101     5 + 7 * 8, 6 + 4 * 8, 7 + 2 * 8, 7 + 6 * 8,
102     1 + 0 * 8, 1 + 2 * 8, 0 + 6 * 8, 3 + 0 * 8,
103     1 + 7 * 8, 3 + 2 * 8, 2 + 7 * 8, 4 + 2 * 8,
104     3 + 7 * 8, 5 + 2 * 8, 4 + 7 * 8, 5 + 4 * 8,
105     6 + 3 * 8, 6 + 5 * 8, 7 + 3 * 8, 7 + 7 * 8,
106 };
107
108 // zigzag_scan8x8_cavlc[i] = zigzag_scan8x8[(i/4) + 16*(i%4)]
109 static const uint8_t zigzag_scan8x8_cavlc[64+1] = {
110     0 + 0 * 8, 1 + 1 * 8, 1 + 2 * 8, 2 + 2 * 8,
111     4 + 1 * 8, 0 + 5 * 8, 3 + 3 * 8, 7 + 0 * 8,
112     3 + 4 * 8, 1 + 7 * 8, 5 + 3 * 8, 6 + 3 * 8,
113     2 + 7 * 8, 6 + 4 * 8, 5 + 6 * 8, 7 + 5 * 8,
114     1 + 0 * 8, 2 + 0 * 8, 0 + 3 * 8, 3 + 1 * 8,
115     3 + 2 * 8, 0 + 6 * 8, 4 + 2 * 8, 6 + 1 * 8,
116     2 + 5 * 8, 2 + 6 * 8, 6 + 2 * 8, 5 + 4 * 8,
117     3 + 7 * 8, 7 + 3 * 8, 4 + 7 * 8, 7 + 6 * 8,
118     0 + 1 * 8, 3 + 0 * 8, 0 + 4 * 8, 4 + 0 * 8,
119     2 + 3 * 8, 1 + 5 * 8, 5 + 1 * 8, 5 + 2 * 8,
120     1 + 6 * 8, 3 + 5 * 8, 7 + 1 * 8, 4 + 5 * 8,
121     4 + 6 * 8, 7 + 4 * 8, 5 + 7 * 8, 6 + 7 * 8,
122     0 + 2 * 8, 2 + 1 * 8, 1 + 3 * 8, 5 + 0 * 8,
123     1 + 4 * 8, 2 + 4 * 8, 6 + 0 * 8, 4 + 3 * 8,
124     0 + 7 * 8, 4 + 4 * 8, 7 + 2 * 8, 3 + 6 * 8,
125     5 + 5 * 8, 6 + 5 * 8, 6 + 6 * 8, 7 + 7 * 8,
126 };
127
128 static const uint8_t dequant4_coeff_init[6][3] = {
129     { 10, 13, 16 },
130     { 11, 14, 18 },
131     { 13, 16, 20 },
132     { 14, 18, 23 },
133     { 16, 20, 25 },
134     { 18, 23, 29 },
135 };
136
137 static const uint8_t dequant8_coeff_init_scan[16] = {
138     0, 3, 4, 3, 3, 1, 5, 1, 4, 5, 2, 5, 3, 1, 5, 1
139 };
140
141 static const uint8_t dequant8_coeff_init[6][6] = {
142     { 20, 18, 32, 19, 25, 24 },
143     { 22, 19, 35, 21, 28, 26 },
144     { 26, 23, 42, 24, 33, 31 },
145     { 28, 25, 45, 26, 35, 33 },
146     { 32, 28, 51, 30, 40, 38 },
147     { 36, 32, 58, 34, 46, 43 },
148 };
149
150
151 static void release_unused_pictures(H264Context *h, int remove_current)
152 {
153     int i;
154
155     /* release non reference frames */
156     for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
157         if (h->DPB[i].f.buf[0] && !h->DPB[i].reference &&
158             (remove_current || &h->DPB[i] != h->cur_pic_ptr)) {
159             ff_h264_unref_picture(h, &h->DPB[i]);
160         }
161     }
162 }
163
164 static int alloc_scratch_buffers(H264Context *h, int linesize)
165 {
166     int alloc_size = FFALIGN(FFABS(linesize) + 32, 32);
167
168     if (h->bipred_scratchpad)
169         return 0;
170
171     h->bipred_scratchpad = av_malloc(16 * 6 * alloc_size);
172     // edge emu needs blocksize + filter length - 1
173     // (= 21x21 for  h264)
174     h->edge_emu_buffer = av_mallocz(alloc_size * 2 * 21);
175
176     if (!h->bipred_scratchpad || !h->edge_emu_buffer) {
177         av_freep(&h->bipred_scratchpad);
178         av_freep(&h->edge_emu_buffer);
179         return AVERROR(ENOMEM);
180     }
181
182     return 0;
183 }
184
185 static int init_table_pools(H264Context *h)
186 {
187     const int big_mb_num    = h->mb_stride * (h->mb_height + 1) + 1;
188     const int mb_array_size = h->mb_stride * h->mb_height;
189     const int b4_stride     = h->mb_width * 4 + 1;
190     const int b4_array_size = b4_stride * h->mb_height * 4;
191
192     h->qscale_table_pool = av_buffer_pool_init(big_mb_num + h->mb_stride,
193                                                av_buffer_allocz);
194     h->mb_type_pool      = av_buffer_pool_init((big_mb_num + h->mb_stride) *
195                                                sizeof(uint32_t), av_buffer_allocz);
196     h->motion_val_pool   = av_buffer_pool_init(2 * (b4_array_size + 4) *
197                                                sizeof(int16_t), av_buffer_allocz);
198     h->ref_index_pool    = av_buffer_pool_init(4 * mb_array_size, av_buffer_allocz);
199
200     if (!h->qscale_table_pool || !h->mb_type_pool || !h->motion_val_pool ||
201         !h->ref_index_pool) {
202         av_buffer_pool_uninit(&h->qscale_table_pool);
203         av_buffer_pool_uninit(&h->mb_type_pool);
204         av_buffer_pool_uninit(&h->motion_val_pool);
205         av_buffer_pool_uninit(&h->ref_index_pool);
206         return AVERROR(ENOMEM);
207     }
208
209     return 0;
210 }
211
212 static int alloc_picture(H264Context *h, H264Picture *pic)
213 {
214     int i, ret = 0;
215
216     av_assert0(!pic->f.data[0]);
217
218     pic->tf.f = &pic->f;
219     ret = ff_thread_get_buffer(h->avctx, &pic->tf, pic->reference ?
220                                                    AV_GET_BUFFER_FLAG_REF : 0);
221     if (ret < 0)
222         goto fail;
223
224     h->linesize   = pic->f.linesize[0];
225     h->uvlinesize = pic->f.linesize[1];
226     pic->crop     = h->sps.crop;
227     pic->crop_top = h->sps.crop_top;
228     pic->crop_left= h->sps.crop_left;
229
230     if (h->avctx->hwaccel) {
231         const AVHWAccel *hwaccel = h->avctx->hwaccel;
232         av_assert0(!pic->hwaccel_picture_private);
233         if (hwaccel->frame_priv_data_size) {
234             pic->hwaccel_priv_buf = av_buffer_allocz(hwaccel->frame_priv_data_size);
235             if (!pic->hwaccel_priv_buf)
236                 return AVERROR(ENOMEM);
237             pic->hwaccel_picture_private = pic->hwaccel_priv_buf->data;
238         }
239     }
240     if (!h->avctx->hwaccel && CONFIG_GRAY && h->flags & CODEC_FLAG_GRAY && pic->f.data[2]) {
241         int h_chroma_shift, v_chroma_shift;
242         av_pix_fmt_get_chroma_sub_sample(pic->f.format,
243                                          &h_chroma_shift, &v_chroma_shift);
244
245         for(i=0; i<FF_CEIL_RSHIFT(h->avctx->height, v_chroma_shift); i++) {
246             memset(pic->f.data[1] + pic->f.linesize[1]*i,
247                    0x80, FF_CEIL_RSHIFT(h->avctx->width, h_chroma_shift));
248             memset(pic->f.data[2] + pic->f.linesize[2]*i,
249                    0x80, FF_CEIL_RSHIFT(h->avctx->width, h_chroma_shift));
250         }
251     }
252
253     if (!h->qscale_table_pool) {
254         ret = init_table_pools(h);
255         if (ret < 0)
256             goto fail;
257     }
258
259     pic->qscale_table_buf = av_buffer_pool_get(h->qscale_table_pool);
260     pic->mb_type_buf      = av_buffer_pool_get(h->mb_type_pool);
261     if (!pic->qscale_table_buf || !pic->mb_type_buf)
262         goto fail;
263
264     pic->mb_type      = (uint32_t*)pic->mb_type_buf->data + 2 * h->mb_stride + 1;
265     pic->qscale_table = pic->qscale_table_buf->data + 2 * h->mb_stride + 1;
266
267     for (i = 0; i < 2; i++) {
268         pic->motion_val_buf[i] = av_buffer_pool_get(h->motion_val_pool);
269         pic->ref_index_buf[i]  = av_buffer_pool_get(h->ref_index_pool);
270         if (!pic->motion_val_buf[i] || !pic->ref_index_buf[i])
271             goto fail;
272
273         pic->motion_val[i] = (int16_t (*)[2])pic->motion_val_buf[i]->data + 4;
274         pic->ref_index[i]  = pic->ref_index_buf[i]->data;
275     }
276
277     return 0;
278 fail:
279     ff_h264_unref_picture(h, pic);
280     return (ret < 0) ? ret : AVERROR(ENOMEM);
281 }
282
283 static inline int pic_is_unused(H264Context *h, H264Picture *pic)
284 {
285     if (!pic->f.buf[0])
286         return 1;
287     if (pic->needs_realloc && !(pic->reference & DELAYED_PIC_REF))
288         return 1;
289     return 0;
290 }
291
292 static int find_unused_picture(H264Context *h)
293 {
294     int i;
295
296     for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
297         if (pic_is_unused(h, &h->DPB[i]))
298             break;
299     }
300     if (i == H264_MAX_PICTURE_COUNT)
301         return AVERROR_INVALIDDATA;
302
303     if (h->DPB[i].needs_realloc) {
304         h->DPB[i].needs_realloc = 0;
305         ff_h264_unref_picture(h, &h->DPB[i]);
306     }
307
308     return i;
309 }
310
311
312 static void init_dequant8_coeff_table(H264Context *h)
313 {
314     int i, j, q, x;
315     const int max_qp = 51 + 6 * (h->sps.bit_depth_luma - 8);
316
317     for (i = 0; i < 6; i++) {
318         h->dequant8_coeff[i] = h->dequant8_buffer[i];
319         for (j = 0; j < i; j++)
320             if (!memcmp(h->pps.scaling_matrix8[j], h->pps.scaling_matrix8[i],
321                         64 * sizeof(uint8_t))) {
322                 h->dequant8_coeff[i] = h->dequant8_buffer[j];
323                 break;
324             }
325         if (j < i)
326             continue;
327
328         for (q = 0; q < max_qp + 1; q++) {
329             int shift = div6[q];
330             int idx   = rem6[q];
331             for (x = 0; x < 64; x++)
332                 h->dequant8_coeff[i][q][(x >> 3) | ((x & 7) << 3)] =
333                     ((uint32_t)dequant8_coeff_init[idx][dequant8_coeff_init_scan[((x >> 1) & 12) | (x & 3)]] *
334                      h->pps.scaling_matrix8[i][x]) << shift;
335         }
336     }
337 }
338
339 static void init_dequant4_coeff_table(H264Context *h)
340 {
341     int i, j, q, x;
342     const int max_qp = 51 + 6 * (h->sps.bit_depth_luma - 8);
343     for (i = 0; i < 6; i++) {
344         h->dequant4_coeff[i] = h->dequant4_buffer[i];
345         for (j = 0; j < i; j++)
346             if (!memcmp(h->pps.scaling_matrix4[j], h->pps.scaling_matrix4[i],
347                         16 * sizeof(uint8_t))) {
348                 h->dequant4_coeff[i] = h->dequant4_buffer[j];
349                 break;
350             }
351         if (j < i)
352             continue;
353
354         for (q = 0; q < max_qp + 1; q++) {
355             int shift = div6[q] + 2;
356             int idx   = rem6[q];
357             for (x = 0; x < 16; x++)
358                 h->dequant4_coeff[i][q][(x >> 2) | ((x << 2) & 0xF)] =
359                     ((uint32_t)dequant4_coeff_init[idx][(x & 1) + ((x >> 2) & 1)] *
360                      h->pps.scaling_matrix4[i][x]) << shift;
361         }
362     }
363 }
364
365 void h264_init_dequant_tables(H264Context *h)
366 {
367     int i, x;
368     init_dequant4_coeff_table(h);
369     memset(h->dequant8_coeff, 0, sizeof(h->dequant8_coeff));
370
371     if (h->pps.transform_8x8_mode)
372         init_dequant8_coeff_table(h);
373     if (h->sps.transform_bypass) {
374         for (i = 0; i < 6; i++)
375             for (x = 0; x < 16; x++)
376                 h->dequant4_coeff[i][0][x] = 1 << 6;
377         if (h->pps.transform_8x8_mode)
378             for (i = 0; i < 6; i++)
379                 for (x = 0; x < 64; x++)
380                     h->dequant8_coeff[i][0][x] = 1 << 6;
381     }
382 }
383
384 /**
385  * Mimic alloc_tables(), but for every context thread.
386  */
387 static void clone_tables(H264Context *dst, H264Context *src, int i)
388 {
389     dst->intra4x4_pred_mode     = src->intra4x4_pred_mode + i * 8 * 2 * src->mb_stride;
390     dst->non_zero_count         = src->non_zero_count;
391     dst->slice_table            = src->slice_table;
392     dst->cbp_table              = src->cbp_table;
393     dst->mb2b_xy                = src->mb2b_xy;
394     dst->mb2br_xy               = src->mb2br_xy;
395     dst->chroma_pred_mode_table = src->chroma_pred_mode_table;
396     dst->mvd_table[0]           = src->mvd_table[0] + i * 8 * 2 * src->mb_stride;
397     dst->mvd_table[1]           = src->mvd_table[1] + i * 8 * 2 * src->mb_stride;
398     dst->direct_table           = src->direct_table;
399     dst->list_counts            = src->list_counts;
400     dst->DPB                    = src->DPB;
401     dst->cur_pic_ptr            = src->cur_pic_ptr;
402     dst->cur_pic                = src->cur_pic;
403     dst->bipred_scratchpad      = NULL;
404     dst->edge_emu_buffer        = NULL;
405     ff_h264_pred_init(&dst->hpc, src->avctx->codec_id, src->sps.bit_depth_luma,
406                       src->sps.chroma_format_idc);
407 }
408
409 #define IN_RANGE(a, b, size) (((a) >= (b)) && ((a) < ((b) + (size))))
410
411 #define REBASE_PICTURE(pic, new_ctx, old_ctx)             \
412     (((pic) && (pic) >= (old_ctx)->DPB &&                       \
413       (pic) < (old_ctx)->DPB + H264_MAX_PICTURE_COUNT) ?          \
414      &(new_ctx)->DPB[(pic) - (old_ctx)->DPB] : NULL)
415
416 static void copy_picture_range(H264Picture **to, H264Picture **from, int count,
417                                H264Context *new_base,
418                                H264Context *old_base)
419 {
420     int i;
421
422     for (i = 0; i < count; i++) {
423         assert((IN_RANGE(from[i], old_base, sizeof(*old_base)) ||
424                 IN_RANGE(from[i], old_base->DPB,
425                          sizeof(H264Picture) * H264_MAX_PICTURE_COUNT) ||
426                 !from[i]));
427         to[i] = REBASE_PICTURE(from[i], new_base, old_base);
428     }
429 }
430
431 static int copy_parameter_set(void **to, void **from, int count, int size)
432 {
433     int i;
434
435     for (i = 0; i < count; i++) {
436         if (to[i] && !from[i]) {
437             av_freep(&to[i]);
438         } else if (from[i] && !to[i]) {
439             to[i] = av_malloc(size);
440             if (!to[i])
441                 return AVERROR(ENOMEM);
442         }
443
444         if (from[i])
445             memcpy(to[i], from[i], size);
446     }
447
448     return 0;
449 }
450
451 #define copy_fields(to, from, start_field, end_field)                   \
452     memcpy(&(to)->start_field, &(from)->start_field,                        \
453            (char *)&(to)->end_field - (char *)&(to)->start_field)
454
455 static int h264_slice_header_init(H264Context *h, int reinit);
456
457 int ff_h264_update_thread_context(AVCodecContext *dst,
458                                   const AVCodecContext *src)
459 {
460     H264Context *h = dst->priv_data, *h1 = src->priv_data;
461     int inited = h->context_initialized, err = 0;
462     int context_reinitialized = 0;
463     int i, ret;
464
465     if (dst == src)
466         return 0;
467
468     if (inited &&
469         (h->width                 != h1->width                 ||
470          h->height                != h1->height                ||
471          h->mb_width              != h1->mb_width              ||
472          h->mb_height             != h1->mb_height             ||
473          h->sps.bit_depth_luma    != h1->sps.bit_depth_luma    ||
474          h->sps.chroma_format_idc != h1->sps.chroma_format_idc ||
475          h->sps.colorspace        != h1->sps.colorspace)) {
476
477         /* set bits_per_raw_sample to the previous value. the check for changed
478          * bit depth in h264_set_parameter_from_sps() uses it and sets it to
479          * the current value */
480         h->avctx->bits_per_raw_sample = h->sps.bit_depth_luma;
481
482         av_freep(&h->bipred_scratchpad);
483
484         h->width     = h1->width;
485         h->height    = h1->height;
486         h->mb_height = h1->mb_height;
487         h->mb_width  = h1->mb_width;
488         h->mb_num    = h1->mb_num;
489         h->mb_stride = h1->mb_stride;
490         h->b_stride  = h1->b_stride;
491         // SPS/PPS
492         if ((ret = copy_parameter_set((void **)h->sps_buffers,
493                                       (void **)h1->sps_buffers,
494                                       MAX_SPS_COUNT, sizeof(SPS))) < 0)
495             return ret;
496         h->sps = h1->sps;
497         if ((ret = copy_parameter_set((void **)h->pps_buffers,
498                                       (void **)h1->pps_buffers,
499                                       MAX_PPS_COUNT, sizeof(PPS))) < 0)
500             return ret;
501         h->pps = h1->pps;
502
503         if ((err = h264_slice_header_init(h, 1)) < 0) {
504             av_log(h->avctx, AV_LOG_ERROR, "h264_slice_header_init() failed\n");
505             return err;
506         }
507         context_reinitialized = 1;
508
509 #if 0
510         h264_set_parameter_from_sps(h);
511         //Note we set context_reinitialized which will cause h264_set_parameter_from_sps to be reexecuted
512         h->cur_chroma_format_idc = h1->cur_chroma_format_idc;
513 #endif
514     }
515     /* update linesize on resize for h264. The h264 decoder doesn't
516      * necessarily call ff_mpv_frame_start in the new thread */
517     h->linesize   = h1->linesize;
518     h->uvlinesize = h1->uvlinesize;
519
520     /* copy block_offset since frame_start may not be called */
521     memcpy(h->block_offset, h1->block_offset, sizeof(h->block_offset));
522
523     if (!inited) {
524         for (i = 0; i < MAX_SPS_COUNT; i++)
525             av_freep(h->sps_buffers + i);
526
527         for (i = 0; i < MAX_PPS_COUNT; i++)
528             av_freep(h->pps_buffers + i);
529
530         av_freep(&h->rbsp_buffer[0]);
531         av_freep(&h->rbsp_buffer[1]);
532         ff_h264_unref_picture(h, &h->last_pic_for_ec);
533         memcpy(h, h1, offsetof(H264Context, intra_pcm_ptr));
534         memcpy(&h->cabac, &h1->cabac,
535                sizeof(H264Context) - offsetof(H264Context, cabac));
536         av_assert0((void*)&h->cabac == &h->mb_padding + 1);
537
538         memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
539         memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
540
541         memset(&h->er, 0, sizeof(h->er));
542         memset(&h->mb, 0, sizeof(h->mb));
543         memset(&h->mb_luma_dc, 0, sizeof(h->mb_luma_dc));
544         memset(&h->mb_padding, 0, sizeof(h->mb_padding));
545         memset(&h->cur_pic, 0, sizeof(h->cur_pic));
546         memset(&h->last_pic_for_ec, 0, sizeof(h->last_pic_for_ec));
547
548         h->avctx             = dst;
549         h->DPB               = NULL;
550         h->qscale_table_pool = NULL;
551         h->mb_type_pool      = NULL;
552         h->ref_index_pool    = NULL;
553         h->motion_val_pool   = NULL;
554         h->intra4x4_pred_mode= NULL;
555         h->non_zero_count    = NULL;
556         h->slice_table_base  = NULL;
557         h->slice_table       = NULL;
558         h->cbp_table         = NULL;
559         h->chroma_pred_mode_table = NULL;
560         memset(h->mvd_table, 0, sizeof(h->mvd_table));
561         h->direct_table      = NULL;
562         h->list_counts       = NULL;
563         h->mb2b_xy           = NULL;
564         h->mb2br_xy          = NULL;
565         for (i = 0; i < 2; i++) {
566             h->rbsp_buffer[i] = NULL;
567             h->rbsp_buffer_size[i] = 0;
568         }
569
570         if (h1->context_initialized) {
571         h->context_initialized = 0;
572
573         memset(&h->cur_pic, 0, sizeof(h->cur_pic));
574         av_frame_unref(&h->cur_pic.f);
575         h->cur_pic.tf.f = &h->cur_pic.f;
576
577         ret = ff_h264_alloc_tables(h);
578         if (ret < 0) {
579             av_log(dst, AV_LOG_ERROR, "Could not allocate memory\n");
580             return ret;
581         }
582         ret = ff_h264_context_init(h);
583         if (ret < 0) {
584             av_log(dst, AV_LOG_ERROR, "context_init() failed.\n");
585             return ret;
586         }
587         }
588
589         h->bipred_scratchpad = NULL;
590         h->edge_emu_buffer   = NULL;
591
592         h->thread_context[0] = h;
593         h->context_initialized = h1->context_initialized;
594     }
595
596     h->avctx->coded_height  = h1->avctx->coded_height;
597     h->avctx->coded_width   = h1->avctx->coded_width;
598     h->avctx->width         = h1->avctx->width;
599     h->avctx->height        = h1->avctx->height;
600     h->coded_picture_number = h1->coded_picture_number;
601     h->first_field          = h1->first_field;
602     h->picture_structure    = h1->picture_structure;
603     h->qscale               = h1->qscale;
604     h->droppable            = h1->droppable;
605     h->low_delay            = h1->low_delay;
606
607     for (i = 0; h->DPB && i < H264_MAX_PICTURE_COUNT; i++) {
608         ff_h264_unref_picture(h, &h->DPB[i]);
609         if (h1->DPB && h1->DPB[i].f.buf[0] &&
610             (ret = ff_h264_ref_picture(h, &h->DPB[i], &h1->DPB[i])) < 0)
611             return ret;
612     }
613
614     h->cur_pic_ptr = REBASE_PICTURE(h1->cur_pic_ptr, h, h1);
615     ff_h264_unref_picture(h, &h->cur_pic);
616     if (h1->cur_pic.f.buf[0] && (ret = ff_h264_ref_picture(h, &h->cur_pic, &h1->cur_pic)) < 0)
617         return ret;
618
619     h->workaround_bugs = h1->workaround_bugs;
620     h->low_delay       = h1->low_delay;
621     h->droppable       = h1->droppable;
622
623     // extradata/NAL handling
624     h->is_avc = h1->is_avc;
625
626     // SPS/PPS
627     if ((ret = copy_parameter_set((void **)h->sps_buffers,
628                                   (void **)h1->sps_buffers,
629                                   MAX_SPS_COUNT, sizeof(SPS))) < 0)
630         return ret;
631     h->sps = h1->sps;
632     if ((ret = copy_parameter_set((void **)h->pps_buffers,
633                                   (void **)h1->pps_buffers,
634                                   MAX_PPS_COUNT, sizeof(PPS))) < 0)
635         return ret;
636     h->pps = h1->pps;
637
638     // Dequantization matrices
639     // FIXME these are big - can they be only copied when PPS changes?
640     copy_fields(h, h1, dequant4_buffer, dequant4_coeff);
641
642     for (i = 0; i < 6; i++)
643         h->dequant4_coeff[i] = h->dequant4_buffer[0] +
644                                (h1->dequant4_coeff[i] - h1->dequant4_buffer[0]);
645
646     for (i = 0; i < 6; i++)
647         h->dequant8_coeff[i] = h->dequant8_buffer[0] +
648                                (h1->dequant8_coeff[i] - h1->dequant8_buffer[0]);
649
650     h->dequant_coeff_pps = h1->dequant_coeff_pps;
651
652     // POC timing
653     copy_fields(h, h1, poc_lsb, redundant_pic_count);
654
655     // reference lists
656     copy_fields(h, h1, short_ref, cabac_init_idc);
657
658     copy_picture_range(h->short_ref, h1->short_ref, 32, h, h1);
659     copy_picture_range(h->long_ref, h1->long_ref, 32, h, h1);
660     copy_picture_range(h->delayed_pic, h1->delayed_pic,
661                        MAX_DELAYED_PIC_COUNT + 2, h, h1);
662
663     h->frame_recovered       = h1->frame_recovered;
664
665     if (context_reinitialized)
666         ff_h264_set_parameter_from_sps(h);
667
668     if (!h->cur_pic_ptr)
669         return 0;
670
671     if (!h->droppable) {
672         err = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
673         h->prev_poc_msb = h->poc_msb;
674         h->prev_poc_lsb = h->poc_lsb;
675     }
676     h->prev_frame_num_offset = h->frame_num_offset;
677     h->prev_frame_num        = h->frame_num;
678     h->outputed_poc          = h->next_outputed_poc;
679
680     h->recovery_frame        = h1->recovery_frame;
681
682     return err;
683 }
684
685 static int h264_frame_start(H264Context *h)
686 {
687     H264Picture *pic;
688     int i, ret;
689     const int pixel_shift = h->pixel_shift;
690     int c[4] = {
691         1<<(h->sps.bit_depth_luma-1),
692         1<<(h->sps.bit_depth_chroma-1),
693         1<<(h->sps.bit_depth_chroma-1),
694         -1
695     };
696
697     if (!ff_thread_can_start_frame(h->avctx)) {
698         av_log(h->avctx, AV_LOG_ERROR, "Attempt to start a frame outside SETUP state\n");
699         return -1;
700     }
701
702     release_unused_pictures(h, 1);
703     h->cur_pic_ptr = NULL;
704
705     i = find_unused_picture(h);
706     if (i < 0) {
707         av_log(h->avctx, AV_LOG_ERROR, "no frame buffer available\n");
708         return i;
709     }
710     pic = &h->DPB[i];
711
712     pic->reference              = h->droppable ? 0 : h->picture_structure;
713     pic->f.coded_picture_number = h->coded_picture_number++;
714     pic->field_picture          = h->picture_structure != PICT_FRAME;
715
716     /*
717      * Zero key_frame here; IDR markings per slice in frame or fields are ORed
718      * in later.
719      * See decode_nal_units().
720      */
721     pic->f.key_frame = 0;
722     pic->mmco_reset  = 0;
723     pic->recovered   = 0;
724     pic->invalid_gap = 0;
725     pic->sei_recovery_frame_cnt = h->sei_recovery_frame_cnt;
726
727     if ((ret = alloc_picture(h, pic)) < 0)
728         return ret;
729     if(!h->frame_recovered && !h->avctx->hwaccel &&
730        !(h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU))
731         avpriv_color_frame(&pic->f, c);
732
733     h->cur_pic_ptr = pic;
734     ff_h264_unref_picture(h, &h->cur_pic);
735     if (CONFIG_ERROR_RESILIENCE) {
736         ff_h264_set_erpic(&h->er.cur_pic, NULL);
737     }
738
739     if ((ret = ff_h264_ref_picture(h, &h->cur_pic, h->cur_pic_ptr)) < 0)
740         return ret;
741
742     if (CONFIG_ERROR_RESILIENCE) {
743         ff_er_frame_start(&h->er);
744         ff_h264_set_erpic(&h->er.last_pic, NULL);
745         ff_h264_set_erpic(&h->er.next_pic, NULL);
746     }
747
748     assert(h->linesize && h->uvlinesize);
749
750     for (i = 0; i < 16; i++) {
751         h->block_offset[i]           = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * h->linesize * ((scan8[i] - scan8[0]) >> 3);
752         h->block_offset[48 + i]      = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * h->linesize * ((scan8[i] - scan8[0]) >> 3);
753     }
754     for (i = 0; i < 16; i++) {
755         h->block_offset[16 + i]      =
756         h->block_offset[32 + i]      = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * h->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
757         h->block_offset[48 + 16 + i] =
758         h->block_offset[48 + 32 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * h->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
759     }
760
761     /* We mark the current picture as non-reference after allocating it, so
762      * that if we break out due to an error it can be released automatically
763      * in the next ff_mpv_frame_start().
764      */
765     h->cur_pic_ptr->reference = 0;
766
767     h->cur_pic_ptr->field_poc[0] = h->cur_pic_ptr->field_poc[1] = INT_MAX;
768
769     h->next_output_pic = NULL;
770
771     assert(h->cur_pic_ptr->long_ref == 0);
772
773     return 0;
774 }
775
776 static av_always_inline void backup_mb_border(H264Context *h, uint8_t *src_y,
777                                               uint8_t *src_cb, uint8_t *src_cr,
778                                               int linesize, int uvlinesize,
779                                               int simple)
780 {
781     uint8_t *top_border;
782     int top_idx = 1;
783     const int pixel_shift = h->pixel_shift;
784     int chroma444 = CHROMA444(h);
785     int chroma422 = CHROMA422(h);
786
787     src_y  -= linesize;
788     src_cb -= uvlinesize;
789     src_cr -= uvlinesize;
790
791     if (!simple && FRAME_MBAFF(h)) {
792         if (h->mb_y & 1) {
793             if (!MB_MBAFF(h)) {
794                 top_border = h->top_borders[0][h->mb_x];
795                 AV_COPY128(top_border, src_y + 15 * linesize);
796                 if (pixel_shift)
797                     AV_COPY128(top_border + 16, src_y + 15 * linesize + 16);
798                 if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
799                     if (chroma444) {
800                         if (pixel_shift) {
801                             AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
802                             AV_COPY128(top_border + 48, src_cb + 15 * uvlinesize + 16);
803                             AV_COPY128(top_border + 64, src_cr + 15 * uvlinesize);
804                             AV_COPY128(top_border + 80, src_cr + 15 * uvlinesize + 16);
805                         } else {
806                             AV_COPY128(top_border + 16, src_cb + 15 * uvlinesize);
807                             AV_COPY128(top_border + 32, src_cr + 15 * uvlinesize);
808                         }
809                     } else if (chroma422) {
810                         if (pixel_shift) {
811                             AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
812                             AV_COPY128(top_border + 48, src_cr + 15 * uvlinesize);
813                         } else {
814                             AV_COPY64(top_border + 16, src_cb + 15 * uvlinesize);
815                             AV_COPY64(top_border + 24, src_cr + 15 * uvlinesize);
816                         }
817                     } else {
818                         if (pixel_shift) {
819                             AV_COPY128(top_border + 32, src_cb + 7 * uvlinesize);
820                             AV_COPY128(top_border + 48, src_cr + 7 * uvlinesize);
821                         } else {
822                             AV_COPY64(top_border + 16, src_cb + 7 * uvlinesize);
823                             AV_COPY64(top_border + 24, src_cr + 7 * uvlinesize);
824                         }
825                     }
826                 }
827             }
828         } else if (MB_MBAFF(h)) {
829             top_idx = 0;
830         } else
831             return;
832     }
833
834     top_border = h->top_borders[top_idx][h->mb_x];
835     /* There are two lines saved, the line above the top macroblock
836      * of a pair, and the line above the bottom macroblock. */
837     AV_COPY128(top_border, src_y + 16 * linesize);
838     if (pixel_shift)
839         AV_COPY128(top_border + 16, src_y + 16 * linesize + 16);
840
841     if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
842         if (chroma444) {
843             if (pixel_shift) {
844                 AV_COPY128(top_border + 32, src_cb + 16 * linesize);
845                 AV_COPY128(top_border + 48, src_cb + 16 * linesize + 16);
846                 AV_COPY128(top_border + 64, src_cr + 16 * linesize);
847                 AV_COPY128(top_border + 80, src_cr + 16 * linesize + 16);
848             } else {
849                 AV_COPY128(top_border + 16, src_cb + 16 * linesize);
850                 AV_COPY128(top_border + 32, src_cr + 16 * linesize);
851             }
852         } else if (chroma422) {
853             if (pixel_shift) {
854                 AV_COPY128(top_border + 32, src_cb + 16 * uvlinesize);
855                 AV_COPY128(top_border + 48, src_cr + 16 * uvlinesize);
856             } else {
857                 AV_COPY64(top_border + 16, src_cb + 16 * uvlinesize);
858                 AV_COPY64(top_border + 24, src_cr + 16 * uvlinesize);
859             }
860         } else {
861             if (pixel_shift) {
862                 AV_COPY128(top_border + 32, src_cb + 8 * uvlinesize);
863                 AV_COPY128(top_border + 48, src_cr + 8 * uvlinesize);
864             } else {
865                 AV_COPY64(top_border + 16, src_cb + 8 * uvlinesize);
866                 AV_COPY64(top_border + 24, src_cr + 8 * uvlinesize);
867             }
868         }
869     }
870 }
871
872 /**
873  * Initialize implicit_weight table.
874  * @param field  0/1 initialize the weight for interlaced MBAFF
875  *                -1 initializes the rest
876  */
877 static void implicit_weight_table(H264Context *h, int field)
878 {
879     int ref0, ref1, i, cur_poc, ref_start, ref_count0, ref_count1;
880
881     for (i = 0; i < 2; i++) {
882         h->luma_weight_flag[i]   = 0;
883         h->chroma_weight_flag[i] = 0;
884     }
885
886     if (field < 0) {
887         if (h->picture_structure == PICT_FRAME) {
888             cur_poc = h->cur_pic_ptr->poc;
889         } else {
890             cur_poc = h->cur_pic_ptr->field_poc[h->picture_structure - 1];
891         }
892         if (h->ref_count[0] == 1 && h->ref_count[1] == 1 && !FRAME_MBAFF(h) &&
893             h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2 * cur_poc) {
894             h->use_weight        = 0;
895             h->use_weight_chroma = 0;
896             return;
897         }
898         ref_start  = 0;
899         ref_count0 = h->ref_count[0];
900         ref_count1 = h->ref_count[1];
901     } else {
902         cur_poc    = h->cur_pic_ptr->field_poc[field];
903         ref_start  = 16;
904         ref_count0 = 16 + 2 * h->ref_count[0];
905         ref_count1 = 16 + 2 * h->ref_count[1];
906     }
907
908     h->use_weight               = 2;
909     h->use_weight_chroma        = 2;
910     h->luma_log2_weight_denom   = 5;
911     h->chroma_log2_weight_denom = 5;
912
913     for (ref0 = ref_start; ref0 < ref_count0; ref0++) {
914         int poc0 = h->ref_list[0][ref0].poc;
915         for (ref1 = ref_start; ref1 < ref_count1; ref1++) {
916             int w = 32;
917             if (!h->ref_list[0][ref0].long_ref && !h->ref_list[1][ref1].long_ref) {
918                 int poc1 = h->ref_list[1][ref1].poc;
919                 int td   = av_clip(poc1 - poc0, -128, 127);
920                 if (td) {
921                     int tb = av_clip(cur_poc - poc0, -128, 127);
922                     int tx = (16384 + (FFABS(td) >> 1)) / td;
923                     int dist_scale_factor = (tb * tx + 32) >> 8;
924                     if (dist_scale_factor >= -64 && dist_scale_factor <= 128)
925                         w = 64 - dist_scale_factor;
926                 }
927             }
928             if (field < 0) {
929                 h->implicit_weight[ref0][ref1][0] =
930                 h->implicit_weight[ref0][ref1][1] = w;
931             } else {
932                 h->implicit_weight[ref0][ref1][field] = w;
933             }
934         }
935     }
936 }
937
938 /**
939  * initialize scan tables
940  */
941 static void init_scan_tables(H264Context *h)
942 {
943     int i;
944     for (i = 0; i < 16; i++) {
945 #define TRANSPOSE(x) ((x) >> 2) | (((x) << 2) & 0xF)
946         h->zigzag_scan[i] = TRANSPOSE(zigzag_scan[i]);
947         h->field_scan[i]  = TRANSPOSE(field_scan[i]);
948 #undef TRANSPOSE
949     }
950     for (i = 0; i < 64; i++) {
951 #define TRANSPOSE(x) ((x) >> 3) | (((x) & 7) << 3)
952         h->zigzag_scan8x8[i]       = TRANSPOSE(ff_zigzag_direct[i]);
953         h->zigzag_scan8x8_cavlc[i] = TRANSPOSE(zigzag_scan8x8_cavlc[i]);
954         h->field_scan8x8[i]        = TRANSPOSE(field_scan8x8[i]);
955         h->field_scan8x8_cavlc[i]  = TRANSPOSE(field_scan8x8_cavlc[i]);
956 #undef TRANSPOSE
957     }
958     if (h->sps.transform_bypass) { // FIXME same ugly
959         memcpy(h->zigzag_scan_q0          , zigzag_scan             , sizeof(h->zigzag_scan_q0         ));
960         memcpy(h->zigzag_scan8x8_q0       , ff_zigzag_direct        , sizeof(h->zigzag_scan8x8_q0      ));
961         memcpy(h->zigzag_scan8x8_cavlc_q0 , zigzag_scan8x8_cavlc    , sizeof(h->zigzag_scan8x8_cavlc_q0));
962         memcpy(h->field_scan_q0           , field_scan              , sizeof(h->field_scan_q0          ));
963         memcpy(h->field_scan8x8_q0        , field_scan8x8           , sizeof(h->field_scan8x8_q0       ));
964         memcpy(h->field_scan8x8_cavlc_q0  , field_scan8x8_cavlc     , sizeof(h->field_scan8x8_cavlc_q0 ));
965     } else {
966         memcpy(h->zigzag_scan_q0          , h->zigzag_scan          , sizeof(h->zigzag_scan_q0         ));
967         memcpy(h->zigzag_scan8x8_q0       , h->zigzag_scan8x8       , sizeof(h->zigzag_scan8x8_q0      ));
968         memcpy(h->zigzag_scan8x8_cavlc_q0 , h->zigzag_scan8x8_cavlc , sizeof(h->zigzag_scan8x8_cavlc_q0));
969         memcpy(h->field_scan_q0           , h->field_scan           , sizeof(h->field_scan_q0          ));
970         memcpy(h->field_scan8x8_q0        , h->field_scan8x8        , sizeof(h->field_scan8x8_q0       ));
971         memcpy(h->field_scan8x8_cavlc_q0  , h->field_scan8x8_cavlc  , sizeof(h->field_scan8x8_cavlc_q0 ));
972     }
973 }
974
975 /**
976  * Replicate H264 "master" context to thread contexts.
977  */
978 static int clone_slice(H264Context *dst, H264Context *src)
979 {
980     memcpy(dst->block_offset, src->block_offset, sizeof(dst->block_offset));
981     dst->cur_pic_ptr = src->cur_pic_ptr;
982     dst->cur_pic     = src->cur_pic;
983     dst->linesize    = src->linesize;
984     dst->uvlinesize  = src->uvlinesize;
985     dst->first_field = src->first_field;
986
987     dst->prev_poc_msb          = src->prev_poc_msb;
988     dst->prev_poc_lsb          = src->prev_poc_lsb;
989     dst->prev_frame_num_offset = src->prev_frame_num_offset;
990     dst->prev_frame_num        = src->prev_frame_num;
991     dst->short_ref_count       = src->short_ref_count;
992
993     memcpy(dst->short_ref,        src->short_ref,        sizeof(dst->short_ref));
994     memcpy(dst->long_ref,         src->long_ref,         sizeof(dst->long_ref));
995     memcpy(dst->default_ref_list, src->default_ref_list, sizeof(dst->default_ref_list));
996
997     memcpy(dst->dequant4_coeff,   src->dequant4_coeff,   sizeof(src->dequant4_coeff));
998     memcpy(dst->dequant8_coeff,   src->dequant8_coeff,   sizeof(src->dequant8_coeff));
999
1000     return 0;
1001 }
1002
1003 static enum AVPixelFormat get_pixel_format(H264Context *h, int force_callback)
1004 {
1005 #define HWACCEL_MAX (CONFIG_H264_DXVA2_HWACCEL + \
1006                      CONFIG_H264_VAAPI_HWACCEL + \
1007                      (CONFIG_H264_VDA_HWACCEL * 2) + \
1008                      CONFIG_H264_VDPAU_HWACCEL)
1009     enum AVPixelFormat pix_fmts[HWACCEL_MAX + 2], *fmt = pix_fmts;
1010     const enum AVPixelFormat *choices = pix_fmts;
1011     int i;
1012
1013     switch (h->sps.bit_depth_luma) {
1014     case 9:
1015         if (CHROMA444(h)) {
1016             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1017                 *fmt++ = AV_PIX_FMT_GBRP9;
1018             } else
1019                 *fmt++ = AV_PIX_FMT_YUV444P9;
1020         } else if (CHROMA422(h))
1021             *fmt++ = AV_PIX_FMT_YUV422P9;
1022         else
1023             *fmt++ = AV_PIX_FMT_YUV420P9;
1024         break;
1025     case 10:
1026         if (CHROMA444(h)) {
1027             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1028                 *fmt++ = AV_PIX_FMT_GBRP10;
1029             } else
1030                 *fmt++ = AV_PIX_FMT_YUV444P10;
1031         } else if (CHROMA422(h))
1032             *fmt++ = AV_PIX_FMT_YUV422P10;
1033         else
1034             *fmt++ = AV_PIX_FMT_YUV420P10;
1035         break;
1036     case 12:
1037         if (CHROMA444(h)) {
1038             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1039                 *fmt++ = AV_PIX_FMT_GBRP12;
1040             } else
1041                 *fmt++ = AV_PIX_FMT_YUV444P12;
1042         } else if (CHROMA422(h))
1043             *fmt++ = AV_PIX_FMT_YUV422P12;
1044         else
1045             *fmt++ = AV_PIX_FMT_YUV420P12;
1046         break;
1047     case 14:
1048         if (CHROMA444(h)) {
1049             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1050                 *fmt++ = AV_PIX_FMT_GBRP14;
1051             } else
1052                 *fmt++ = AV_PIX_FMT_YUV444P14;
1053         } else if (CHROMA422(h))
1054             *fmt++ = AV_PIX_FMT_YUV422P14;
1055         else
1056             *fmt++ = AV_PIX_FMT_YUV420P14;
1057         break;
1058     case 8:
1059 #if CONFIG_H264_VDPAU_HWACCEL
1060         *fmt++ = AV_PIX_FMT_VDPAU;
1061 #endif
1062         if (CHROMA444(h)) {
1063             if (h->avctx->colorspace == AVCOL_SPC_YCGCO)
1064                 av_log(h->avctx, AV_LOG_WARNING, "Detected unsupported YCgCo colorspace.\n");
1065             if (h->avctx->colorspace == AVCOL_SPC_RGB)
1066                 *fmt++ = AV_PIX_FMT_GBRP;
1067             else if (h->avctx->color_range == AVCOL_RANGE_JPEG)
1068                 *fmt++ = AV_PIX_FMT_YUVJ444P;
1069             else
1070                 *fmt++ = AV_PIX_FMT_YUV444P;
1071         } else if (CHROMA422(h)) {
1072             if (h->avctx->color_range == AVCOL_RANGE_JPEG)
1073                 *fmt++ = AV_PIX_FMT_YUVJ422P;
1074             else
1075                 *fmt++ = AV_PIX_FMT_YUV422P;
1076         } else {
1077 #if CONFIG_H264_DXVA2_HWACCEL
1078             *fmt++ = AV_PIX_FMT_DXVA2_VLD;
1079 #endif
1080 #if CONFIG_H264_VAAPI_HWACCEL
1081             *fmt++ = AV_PIX_FMT_VAAPI_VLD;
1082 #endif
1083 #if CONFIG_H264_VDA_HWACCEL
1084             *fmt++ = AV_PIX_FMT_VDA_VLD;
1085             *fmt++ = AV_PIX_FMT_VDA;
1086 #endif
1087             if (h->avctx->codec->pix_fmts)
1088                 choices = h->avctx->codec->pix_fmts;
1089             else if (h->avctx->color_range == AVCOL_RANGE_JPEG)
1090                 *fmt++ = AV_PIX_FMT_YUVJ420P;
1091             else
1092                 *fmt++ = AV_PIX_FMT_YUV420P;
1093         }
1094         break;
1095     default:
1096         av_log(h->avctx, AV_LOG_ERROR,
1097                "Unsupported bit depth %d\n", h->sps.bit_depth_luma);
1098         return AVERROR_INVALIDDATA;
1099     }
1100
1101     *fmt = AV_PIX_FMT_NONE;
1102
1103     for (i=0; choices[i] != AV_PIX_FMT_NONE; i++)
1104         if (choices[i] == h->avctx->pix_fmt && !force_callback)
1105             return choices[i];
1106     return ff_thread_get_format(h->avctx, choices);
1107 }
1108
1109 /* export coded and cropped frame dimensions to AVCodecContext */
1110 static int init_dimensions(H264Context *h)
1111 {
1112     int width  = h->width  - (h->sps.crop_right + h->sps.crop_left);
1113     int height = h->height - (h->sps.crop_top   + h->sps.crop_bottom);
1114     int crop_present = h->sps.crop_left  || h->sps.crop_top ||
1115                        h->sps.crop_right || h->sps.crop_bottom;
1116     av_assert0(h->sps.crop_right + h->sps.crop_left < (unsigned)h->width);
1117     av_assert0(h->sps.crop_top + h->sps.crop_bottom < (unsigned)h->height);
1118
1119     /* handle container cropping */
1120     if (!crop_present &&
1121         FFALIGN(h->avctx->width,  16) == h->width &&
1122         FFALIGN(h->avctx->height, 16) == h->height) {
1123         width  = h->avctx->width;
1124         height = h->avctx->height;
1125     }
1126
1127     if (width <= 0 || height <= 0) {
1128         av_log(h->avctx, AV_LOG_ERROR, "Invalid cropped dimensions: %dx%d.\n",
1129                width, height);
1130         if (h->avctx->err_recognition & AV_EF_EXPLODE)
1131             return AVERROR_INVALIDDATA;
1132
1133         av_log(h->avctx, AV_LOG_WARNING, "Ignoring cropping information.\n");
1134         h->sps.crop_bottom =
1135         h->sps.crop_top    =
1136         h->sps.crop_right  =
1137         h->sps.crop_left   =
1138         h->sps.crop        = 0;
1139
1140         width  = h->width;
1141         height = h->height;
1142     }
1143
1144     h->avctx->coded_width  = h->width;
1145     h->avctx->coded_height = h->height;
1146     h->avctx->width        = width;
1147     h->avctx->height       = height;
1148
1149     return 0;
1150 }
1151
1152 static int h264_slice_header_init(H264Context *h, int reinit)
1153 {
1154     int nb_slices = (HAVE_THREADS &&
1155                      h->avctx->active_thread_type & FF_THREAD_SLICE) ?
1156                     h->avctx->thread_count : 1;
1157     int i, ret;
1158
1159     ff_set_sar(h->avctx, h->sps.sar);
1160     av_pix_fmt_get_chroma_sub_sample(h->avctx->pix_fmt,
1161                                      &h->chroma_x_shift, &h->chroma_y_shift);
1162
1163     if (h->sps.timing_info_present_flag) {
1164         int64_t den = h->sps.time_scale;
1165         if (h->x264_build < 44U)
1166             den *= 2;
1167         av_reduce(&h->avctx->framerate.den, &h->avctx->framerate.num,
1168                   h->sps.num_units_in_tick * h->avctx->ticks_per_frame, den, 1 << 30);
1169     }
1170
1171     if (reinit)
1172         ff_h264_free_tables(h, 0);
1173     h->first_field           = 0;
1174     h->prev_interlaced_frame = 1;
1175
1176     init_scan_tables(h);
1177     ret = ff_h264_alloc_tables(h);
1178     if (ret < 0) {
1179         av_log(h->avctx, AV_LOG_ERROR, "Could not allocate memory\n");
1180         goto fail;
1181     }
1182
1183     if (nb_slices > H264_MAX_THREADS || (nb_slices > h->mb_height && h->mb_height)) {
1184         int max_slices;
1185         if (h->mb_height)
1186             max_slices = FFMIN(H264_MAX_THREADS, h->mb_height);
1187         else
1188             max_slices = H264_MAX_THREADS;
1189         av_log(h->avctx, AV_LOG_WARNING, "too many threads/slices %d,"
1190                " reducing to %d\n", nb_slices, max_slices);
1191         nb_slices = max_slices;
1192     }
1193     h->slice_context_count = nb_slices;
1194
1195     if (!HAVE_THREADS || !(h->avctx->active_thread_type & FF_THREAD_SLICE)) {
1196         ret = ff_h264_context_init(h);
1197         if (ret < 0) {
1198             av_log(h->avctx, AV_LOG_ERROR, "context_init() failed.\n");
1199             goto fail;
1200         }
1201     } else {
1202         for (i = 1; i < h->slice_context_count; i++) {
1203             H264Context *c;
1204             c                    = h->thread_context[i] = av_mallocz(sizeof(H264Context));
1205             if (!c) {
1206                 ret = AVERROR(ENOMEM);
1207                 goto fail;
1208             }
1209             c->avctx             = h->avctx;
1210             c->vdsp              = h->vdsp;
1211             c->h264dsp           = h->h264dsp;
1212             c->h264qpel          = h->h264qpel;
1213             c->h264chroma        = h->h264chroma;
1214             c->sps               = h->sps;
1215             c->pps               = h->pps;
1216             c->pixel_shift       = h->pixel_shift;
1217             c->cur_chroma_format_idc = h->cur_chroma_format_idc;
1218             c->width             = h->width;
1219             c->height            = h->height;
1220             c->linesize          = h->linesize;
1221             c->uvlinesize        = h->uvlinesize;
1222             c->chroma_x_shift    = h->chroma_x_shift;
1223             c->chroma_y_shift    = h->chroma_y_shift;
1224             c->qscale            = h->qscale;
1225             c->droppable         = h->droppable;
1226             c->low_delay         = h->low_delay;
1227             c->mb_width          = h->mb_width;
1228             c->mb_height         = h->mb_height;
1229             c->mb_stride         = h->mb_stride;
1230             c->mb_num            = h->mb_num;
1231             c->flags             = h->flags;
1232             c->workaround_bugs   = h->workaround_bugs;
1233             c->pict_type         = h->pict_type;
1234
1235             init_scan_tables(c);
1236             clone_tables(c, h, i);
1237             c->context_initialized = 1;
1238         }
1239
1240         for (i = 0; i < h->slice_context_count; i++)
1241             if ((ret = ff_h264_context_init(h->thread_context[i])) < 0) {
1242                 av_log(h->avctx, AV_LOG_ERROR, "context_init() failed.\n");
1243                 goto fail;
1244             }
1245     }
1246
1247     h->context_initialized = 1;
1248
1249     return 0;
1250 fail:
1251     ff_h264_free_tables(h, 0);
1252     h->context_initialized = 0;
1253     return ret;
1254 }
1255
1256 static enum AVPixelFormat non_j_pixfmt(enum AVPixelFormat a)
1257 {
1258     switch (a) {
1259     case AV_PIX_FMT_YUVJ420P: return AV_PIX_FMT_YUV420P;
1260     case AV_PIX_FMT_YUVJ422P: return AV_PIX_FMT_YUV422P;
1261     case AV_PIX_FMT_YUVJ444P: return AV_PIX_FMT_YUV444P;
1262     default:
1263         return a;
1264     }
1265 }
1266
1267 /**
1268  * Decode a slice header.
1269  * This will (re)intialize the decoder and call h264_frame_start() as needed.
1270  *
1271  * @param h h264context
1272  * @param h0 h264 master context (differs from 'h' when doing sliced based
1273  *           parallel decoding)
1274  *
1275  * @return 0 if okay, <0 if an error occurred, 1 if decoding must not be multithreaded
1276  */
1277 int ff_h264_decode_slice_header(H264Context *h, H264Context *h0)
1278 {
1279     unsigned int first_mb_in_slice;
1280     unsigned int pps_id;
1281     int ret;
1282     unsigned int slice_type, tmp, i, j;
1283     int last_pic_structure, last_pic_droppable;
1284     int must_reinit;
1285     int needs_reinit = 0;
1286     int field_pic_flag, bottom_field_flag;
1287
1288     h->qpel_put = h->h264qpel.put_h264_qpel_pixels_tab;
1289     h->qpel_avg = h->h264qpel.avg_h264_qpel_pixels_tab;
1290
1291     first_mb_in_slice = get_ue_golomb_long(&h->gb);
1292
1293     if (first_mb_in_slice == 0) { // FIXME better field boundary detection
1294         if (h0->current_slice && h->cur_pic_ptr && FIELD_PICTURE(h)) {
1295             ff_h264_field_end(h, 1);
1296         }
1297
1298         h0->current_slice = 0;
1299         if (!h0->first_field) {
1300             if (h->cur_pic_ptr && !h->droppable) {
1301                 ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
1302                                           h->picture_structure == PICT_BOTTOM_FIELD);
1303             }
1304             h->cur_pic_ptr = NULL;
1305         }
1306     }
1307
1308     slice_type = get_ue_golomb_31(&h->gb);
1309     if (slice_type > 9) {
1310         av_log(h->avctx, AV_LOG_ERROR,
1311                "slice type %d too large at %d %d\n",
1312                slice_type, h->mb_x, h->mb_y);
1313         return AVERROR_INVALIDDATA;
1314     }
1315     if (slice_type > 4) {
1316         slice_type -= 5;
1317         h->slice_type_fixed = 1;
1318     } else
1319         h->slice_type_fixed = 0;
1320
1321     slice_type = golomb_to_pict_type[slice_type];
1322     h->slice_type     = slice_type;
1323     h->slice_type_nos = slice_type & 3;
1324
1325     if (h->nal_unit_type  == NAL_IDR_SLICE &&
1326         h->slice_type_nos != AV_PICTURE_TYPE_I) {
1327         av_log(h->avctx, AV_LOG_ERROR, "A non-intra slice in an IDR NAL unit.\n");
1328         return AVERROR_INVALIDDATA;
1329     }
1330
1331     if (
1332         (h->avctx->skip_frame >= AVDISCARD_NONREF && !h->nal_ref_idc) ||
1333         (h->avctx->skip_frame >= AVDISCARD_BIDIR  && h->slice_type_nos == AV_PICTURE_TYPE_B) ||
1334         (h->avctx->skip_frame >= AVDISCARD_NONINTRA && h->slice_type_nos != AV_PICTURE_TYPE_I) ||
1335         (h->avctx->skip_frame >= AVDISCARD_NONKEY && h->nal_unit_type != NAL_IDR_SLICE) ||
1336          h->avctx->skip_frame >= AVDISCARD_ALL) {
1337          return SLICE_SKIPED;
1338      }
1339
1340     // to make a few old functions happy, it's wrong though
1341     h->pict_type = h->slice_type;
1342
1343     pps_id = get_ue_golomb(&h->gb);
1344     if (pps_id >= MAX_PPS_COUNT) {
1345         av_log(h->avctx, AV_LOG_ERROR, "pps_id %u out of range\n", pps_id);
1346         return AVERROR_INVALIDDATA;
1347     }
1348     if (!h0->pps_buffers[pps_id]) {
1349         av_log(h->avctx, AV_LOG_ERROR,
1350                "non-existing PPS %u referenced\n",
1351                pps_id);
1352         return AVERROR_INVALIDDATA;
1353     }
1354     if (h0->au_pps_id >= 0 && pps_id != h0->au_pps_id) {
1355         av_log(h->avctx, AV_LOG_ERROR,
1356                "PPS change from %d to %d forbidden\n",
1357                h0->au_pps_id, pps_id);
1358         return AVERROR_INVALIDDATA;
1359     }
1360     h->pps = *h0->pps_buffers[pps_id];
1361
1362     if (!h0->sps_buffers[h->pps.sps_id]) {
1363         av_log(h->avctx, AV_LOG_ERROR,
1364                "non-existing SPS %u referenced\n",
1365                h->pps.sps_id);
1366         return AVERROR_INVALIDDATA;
1367     }
1368
1369     if (h->pps.sps_id != h->sps.sps_id ||
1370         h->pps.sps_id != h->current_sps_id ||
1371         h0->sps_buffers[h->pps.sps_id]->new) {
1372
1373         h->sps = *h0->sps_buffers[h->pps.sps_id];
1374
1375         if (h->mb_width  != h->sps.mb_width ||
1376             h->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag) ||
1377             h->avctx->bits_per_raw_sample != h->sps.bit_depth_luma ||
1378             h->cur_chroma_format_idc != h->sps.chroma_format_idc
1379         )
1380             needs_reinit = 1;
1381
1382         if (h->bit_depth_luma    != h->sps.bit_depth_luma ||
1383             h->chroma_format_idc != h->sps.chroma_format_idc) {
1384             h->bit_depth_luma    = h->sps.bit_depth_luma;
1385             h->chroma_format_idc = h->sps.chroma_format_idc;
1386             needs_reinit         = 1;
1387         }
1388         if ((ret = ff_h264_set_parameter_from_sps(h)) < 0)
1389             return ret;
1390     }
1391
1392     h->avctx->profile = ff_h264_get_profile(&h->sps);
1393     h->avctx->level   = h->sps.level_idc;
1394     h->avctx->refs    = h->sps.ref_frame_count;
1395
1396     must_reinit = (h->context_initialized &&
1397                     (   16*h->sps.mb_width != h->avctx->coded_width
1398                      || 16*h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag) != h->avctx->coded_height
1399                      || h->avctx->bits_per_raw_sample != h->sps.bit_depth_luma
1400                      || h->cur_chroma_format_idc != h->sps.chroma_format_idc
1401                      || av_cmp_q(h->sps.sar, h->avctx->sample_aspect_ratio)
1402                      || h->mb_width  != h->sps.mb_width
1403                      || h->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag)
1404                     ));
1405     if (non_j_pixfmt(h0->avctx->pix_fmt) != non_j_pixfmt(get_pixel_format(h0, 0)))
1406         must_reinit = 1;
1407
1408     h->mb_width  = h->sps.mb_width;
1409     h->mb_height = h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag);
1410     h->mb_num    = h->mb_width * h->mb_height;
1411     h->mb_stride = h->mb_width + 1;
1412
1413     h->b_stride = h->mb_width * 4;
1414
1415     h->chroma_y_shift = h->sps.chroma_format_idc <= 1; // 400 uses yuv420p
1416
1417     h->width  = 16 * h->mb_width;
1418     h->height = 16 * h->mb_height;
1419
1420     ret = init_dimensions(h);
1421     if (ret < 0)
1422         return ret;
1423
1424     if (h->sps.video_signal_type_present_flag) {
1425         h->avctx->color_range = h->sps.full_range>0 ? AVCOL_RANGE_JPEG
1426                                                     : AVCOL_RANGE_MPEG;
1427         if (h->sps.colour_description_present_flag) {
1428             if (h->avctx->colorspace != h->sps.colorspace)
1429                 needs_reinit = 1;
1430             h->avctx->color_primaries = h->sps.color_primaries;
1431             h->avctx->color_trc       = h->sps.color_trc;
1432             h->avctx->colorspace      = h->sps.colorspace;
1433         }
1434     }
1435
1436     if (h->context_initialized &&
1437         (must_reinit || needs_reinit)) {
1438         if (h != h0) {
1439             av_log(h->avctx, AV_LOG_ERROR,
1440                    "changing width %d -> %d / height %d -> %d on "
1441                    "slice %d\n",
1442                    h->width, h->avctx->coded_width,
1443                    h->height, h->avctx->coded_height,
1444                    h0->current_slice + 1);
1445             return AVERROR_INVALIDDATA;
1446         }
1447
1448         ff_h264_flush_change(h);
1449
1450         if ((ret = get_pixel_format(h, 1)) < 0)
1451             return ret;
1452         h->avctx->pix_fmt = ret;
1453
1454         av_log(h->avctx, AV_LOG_INFO, "Reinit context to %dx%d, "
1455                "pix_fmt: %s\n", h->width, h->height, av_get_pix_fmt_name(h->avctx->pix_fmt));
1456
1457         if ((ret = h264_slice_header_init(h, 1)) < 0) {
1458             av_log(h->avctx, AV_LOG_ERROR,
1459                    "h264_slice_header_init() failed\n");
1460             return ret;
1461         }
1462     }
1463     if (!h->context_initialized) {
1464         if (h != h0) {
1465             av_log(h->avctx, AV_LOG_ERROR,
1466                    "Cannot (re-)initialize context during parallel decoding.\n");
1467             return AVERROR_PATCHWELCOME;
1468         }
1469
1470         if ((ret = get_pixel_format(h, 1)) < 0)
1471             return ret;
1472         h->avctx->pix_fmt = ret;
1473
1474         if ((ret = h264_slice_header_init(h, 0)) < 0) {
1475             av_log(h->avctx, AV_LOG_ERROR,
1476                    "h264_slice_header_init() failed\n");
1477             return ret;
1478         }
1479     }
1480
1481     if (h == h0 && h->dequant_coeff_pps != pps_id) {
1482         h->dequant_coeff_pps = pps_id;
1483         h264_init_dequant_tables(h);
1484     }
1485
1486     h->frame_num = get_bits(&h->gb, h->sps.log2_max_frame_num);
1487
1488     h->mb_mbaff        = 0;
1489     h->mb_aff_frame    = 0;
1490     last_pic_structure = h0->picture_structure;
1491     last_pic_droppable = h0->droppable;
1492     h->droppable       = h->nal_ref_idc == 0;
1493     if (h->sps.frame_mbs_only_flag) {
1494         h->picture_structure = PICT_FRAME;
1495     } else {
1496         if (!h->sps.direct_8x8_inference_flag && slice_type == AV_PICTURE_TYPE_B) {
1497             av_log(h->avctx, AV_LOG_ERROR, "This stream was generated by a broken encoder, invalid 8x8 inference\n");
1498             return -1;
1499         }
1500         field_pic_flag = get_bits1(&h->gb);
1501         if (field_pic_flag) {
1502             bottom_field_flag = get_bits1(&h->gb);
1503             h->picture_structure = PICT_TOP_FIELD + bottom_field_flag;
1504         } else {
1505             h->picture_structure = PICT_FRAME;
1506             h->mb_aff_frame      = h->sps.mb_aff;
1507         }
1508     }
1509     h->mb_field_decoding_flag = h->picture_structure != PICT_FRAME;
1510
1511     if (h0->current_slice != 0) {
1512         if (last_pic_structure != h->picture_structure ||
1513             last_pic_droppable != h->droppable) {
1514             av_log(h->avctx, AV_LOG_ERROR,
1515                    "Changing field mode (%d -> %d) between slices is not allowed\n",
1516                    last_pic_structure, h->picture_structure);
1517             h->picture_structure = last_pic_structure;
1518             h->droppable         = last_pic_droppable;
1519             return AVERROR_INVALIDDATA;
1520         } else if (!h0->cur_pic_ptr) {
1521             av_log(h->avctx, AV_LOG_ERROR,
1522                    "unset cur_pic_ptr on slice %d\n",
1523                    h0->current_slice + 1);
1524             return AVERROR_INVALIDDATA;
1525         }
1526     } else {
1527         /* Shorten frame num gaps so we don't have to allocate reference
1528          * frames just to throw them away */
1529         if (h->frame_num != h->prev_frame_num) {
1530             int unwrap_prev_frame_num = h->prev_frame_num;
1531             int max_frame_num         = 1 << h->sps.log2_max_frame_num;
1532
1533             if (unwrap_prev_frame_num > h->frame_num)
1534                 unwrap_prev_frame_num -= max_frame_num;
1535
1536             if ((h->frame_num - unwrap_prev_frame_num) > h->sps.ref_frame_count) {
1537                 unwrap_prev_frame_num = (h->frame_num - h->sps.ref_frame_count) - 1;
1538                 if (unwrap_prev_frame_num < 0)
1539                     unwrap_prev_frame_num += max_frame_num;
1540
1541                 h->prev_frame_num = unwrap_prev_frame_num;
1542             }
1543         }
1544
1545         /* See if we have a decoded first field looking for a pair...
1546          * Here, we're using that to see if we should mark previously
1547          * decode frames as "finished".
1548          * We have to do that before the "dummy" in-between frame allocation,
1549          * since that can modify h->cur_pic_ptr. */
1550         if (h0->first_field) {
1551             assert(h0->cur_pic_ptr);
1552             assert(h0->cur_pic_ptr->f.buf[0]);
1553             assert(h0->cur_pic_ptr->reference != DELAYED_PIC_REF);
1554
1555             /* Mark old field/frame as completed */
1556             if (h0->cur_pic_ptr->tf.owner == h0->avctx) {
1557                 ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1558                                           last_pic_structure == PICT_BOTTOM_FIELD);
1559             }
1560
1561             /* figure out if we have a complementary field pair */
1562             if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
1563                 /* Previous field is unmatched. Don't display it, but let it
1564                  * remain for reference if marked as such. */
1565                 if (last_pic_structure != PICT_FRAME) {
1566                     ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1567                                               last_pic_structure == PICT_TOP_FIELD);
1568                 }
1569             } else {
1570                 if (h0->cur_pic_ptr->frame_num != h->frame_num) {
1571                     /* This and previous field were reference, but had
1572                      * different frame_nums. Consider this field first in
1573                      * pair. Throw away previous field except for reference
1574                      * purposes. */
1575                     if (last_pic_structure != PICT_FRAME) {
1576                         ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1577                                                   last_pic_structure == PICT_TOP_FIELD);
1578                     }
1579                 } else {
1580                     /* Second field in complementary pair */
1581                     if (!((last_pic_structure   == PICT_TOP_FIELD &&
1582                            h->picture_structure == PICT_BOTTOM_FIELD) ||
1583                           (last_pic_structure   == PICT_BOTTOM_FIELD &&
1584                            h->picture_structure == PICT_TOP_FIELD))) {
1585                         av_log(h->avctx, AV_LOG_ERROR,
1586                                "Invalid field mode combination %d/%d\n",
1587                                last_pic_structure, h->picture_structure);
1588                         h->picture_structure = last_pic_structure;
1589                         h->droppable         = last_pic_droppable;
1590                         return AVERROR_INVALIDDATA;
1591                     } else if (last_pic_droppable != h->droppable) {
1592                         avpriv_request_sample(h->avctx,
1593                                               "Found reference and non-reference fields in the same frame, which");
1594                         h->picture_structure = last_pic_structure;
1595                         h->droppable         = last_pic_droppable;
1596                         return AVERROR_PATCHWELCOME;
1597                     }
1598                 }
1599             }
1600         }
1601
1602         while (h->frame_num != h->prev_frame_num && !h0->first_field &&
1603                h->frame_num != (h->prev_frame_num + 1) % (1 << h->sps.log2_max_frame_num)) {
1604             H264Picture *prev = h->short_ref_count ? h->short_ref[0] : NULL;
1605             av_log(h->avctx, AV_LOG_DEBUG, "Frame num gap %d %d\n",
1606                    h->frame_num, h->prev_frame_num);
1607             if (!h->sps.gaps_in_frame_num_allowed_flag)
1608                 for(i=0; i<FF_ARRAY_ELEMS(h->last_pocs); i++)
1609                     h->last_pocs[i] = INT_MIN;
1610             ret = h264_frame_start(h);
1611             if (ret < 0) {
1612                 h0->first_field = 0;
1613                 return ret;
1614             }
1615
1616             h->prev_frame_num++;
1617             h->prev_frame_num        %= 1 << h->sps.log2_max_frame_num;
1618             h->cur_pic_ptr->frame_num = h->prev_frame_num;
1619             h->cur_pic_ptr->invalid_gap = !h->sps.gaps_in_frame_num_allowed_flag;
1620             ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 0);
1621             ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 1);
1622             ret = ff_generate_sliding_window_mmcos(h, 1);
1623             if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1624                 return ret;
1625             ret = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
1626             if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1627                 return ret;
1628             /* Error concealment: If a ref is missing, copy the previous ref
1629              * in its place.
1630              * FIXME: Avoiding a memcpy would be nice, but ref handling makes
1631              * many assumptions about there being no actual duplicates.
1632              * FIXME: This does not copy padding for out-of-frame motion
1633              * vectors.  Given we are concealing a lost frame, this probably
1634              * is not noticeable by comparison, but it should be fixed. */
1635             if (h->short_ref_count) {
1636                 if (prev) {
1637                     av_image_copy(h->short_ref[0]->f.data,
1638                                   h->short_ref[0]->f.linesize,
1639                                   (const uint8_t **)prev->f.data,
1640                                   prev->f.linesize,
1641                                   h->avctx->pix_fmt,
1642                                   h->mb_width  * 16,
1643                                   h->mb_height * 16);
1644                     h->short_ref[0]->poc = prev->poc + 2;
1645                 }
1646                 h->short_ref[0]->frame_num = h->prev_frame_num;
1647             }
1648         }
1649
1650         /* See if we have a decoded first field looking for a pair...
1651          * We're using that to see whether to continue decoding in that
1652          * frame, or to allocate a new one. */
1653         if (h0->first_field) {
1654             assert(h0->cur_pic_ptr);
1655             assert(h0->cur_pic_ptr->f.buf[0]);
1656             assert(h0->cur_pic_ptr->reference != DELAYED_PIC_REF);
1657
1658             /* figure out if we have a complementary field pair */
1659             if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
1660                 /* Previous field is unmatched. Don't display it, but let it
1661                  * remain for reference if marked as such. */
1662                 h0->missing_fields ++;
1663                 h0->cur_pic_ptr = NULL;
1664                 h0->first_field = FIELD_PICTURE(h);
1665             } else {
1666                 h0->missing_fields = 0;
1667                 if (h0->cur_pic_ptr->frame_num != h->frame_num) {
1668                     ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1669                                               h0->picture_structure==PICT_BOTTOM_FIELD);
1670                     /* This and the previous field had different frame_nums.
1671                      * Consider this field first in pair. Throw away previous
1672                      * one except for reference purposes. */
1673                     h0->first_field = 1;
1674                     h0->cur_pic_ptr = NULL;
1675                 } else {
1676                     /* Second field in complementary pair */
1677                     h0->first_field = 0;
1678                 }
1679             }
1680         } else {
1681             /* Frame or first field in a potentially complementary pair */
1682             h0->first_field = FIELD_PICTURE(h);
1683         }
1684
1685         if (!FIELD_PICTURE(h) || h0->first_field) {
1686             if (h264_frame_start(h) < 0) {
1687                 h0->first_field = 0;
1688                 return AVERROR_INVALIDDATA;
1689             }
1690         } else {
1691             release_unused_pictures(h, 0);
1692         }
1693         /* Some macroblocks can be accessed before they're available in case
1694         * of lost slices, MBAFF or threading. */
1695         if (FIELD_PICTURE(h)) {
1696             for(i = (h->picture_structure == PICT_BOTTOM_FIELD); i<h->mb_height; i++)
1697                 memset(h->slice_table + i*h->mb_stride, -1, (h->mb_stride - (i+1==h->mb_height)) * sizeof(*h->slice_table));
1698         } else {
1699             memset(h->slice_table, -1,
1700                 (h->mb_height * h->mb_stride - 1) * sizeof(*h->slice_table));
1701         }
1702         h0->last_slice_type = -1;
1703     }
1704     if (h != h0 && (ret = clone_slice(h, h0)) < 0)
1705         return ret;
1706
1707     /* can't be in alloc_tables because linesize isn't known there.
1708      * FIXME: redo bipred weight to not require extra buffer? */
1709     for (i = 0; i < h->slice_context_count; i++)
1710         if (h->thread_context[i]) {
1711             ret = alloc_scratch_buffers(h->thread_context[i], h->linesize);
1712             if (ret < 0)
1713                 return ret;
1714         }
1715
1716     h->cur_pic_ptr->frame_num = h->frame_num; // FIXME frame_num cleanup
1717
1718     av_assert1(h->mb_num == h->mb_width * h->mb_height);
1719     if (first_mb_in_slice << FIELD_OR_MBAFF_PICTURE(h) >= h->mb_num ||
1720         first_mb_in_slice >= h->mb_num) {
1721         av_log(h->avctx, AV_LOG_ERROR, "first_mb_in_slice overflow\n");
1722         return AVERROR_INVALIDDATA;
1723     }
1724     h->resync_mb_x = h->mb_x =  first_mb_in_slice % h->mb_width;
1725     h->resync_mb_y = h->mb_y = (first_mb_in_slice / h->mb_width) <<
1726                                FIELD_OR_MBAFF_PICTURE(h);
1727     if (h->picture_structure == PICT_BOTTOM_FIELD)
1728         h->resync_mb_y = h->mb_y = h->mb_y + 1;
1729     av_assert1(h->mb_y < h->mb_height);
1730
1731     if (h->picture_structure == PICT_FRAME) {
1732         h->curr_pic_num = h->frame_num;
1733         h->max_pic_num  = 1 << h->sps.log2_max_frame_num;
1734     } else {
1735         h->curr_pic_num = 2 * h->frame_num + 1;
1736         h->max_pic_num  = 1 << (h->sps.log2_max_frame_num + 1);
1737     }
1738
1739     if (h->nal_unit_type == NAL_IDR_SLICE)
1740         get_ue_golomb(&h->gb); /* idr_pic_id */
1741
1742     if (h->sps.poc_type == 0) {
1743         h->poc_lsb = get_bits(&h->gb, h->sps.log2_max_poc_lsb);
1744
1745         if (h->pps.pic_order_present == 1 && h->picture_structure == PICT_FRAME)
1746             h->delta_poc_bottom = get_se_golomb(&h->gb);
1747     }
1748
1749     if (h->sps.poc_type == 1 && !h->sps.delta_pic_order_always_zero_flag) {
1750         h->delta_poc[0] = get_se_golomb(&h->gb);
1751
1752         if (h->pps.pic_order_present == 1 && h->picture_structure == PICT_FRAME)
1753             h->delta_poc[1] = get_se_golomb(&h->gb);
1754     }
1755
1756     ff_init_poc(h, h->cur_pic_ptr->field_poc, &h->cur_pic_ptr->poc);
1757
1758     if (h->pps.redundant_pic_cnt_present)
1759         h->redundant_pic_count = get_ue_golomb(&h->gb);
1760
1761     ret = ff_set_ref_count(h);
1762     if (ret < 0)
1763         return ret;
1764
1765     if (slice_type != AV_PICTURE_TYPE_I &&
1766         (h0->current_slice == 0 ||
1767          slice_type != h0->last_slice_type ||
1768          memcmp(h0->last_ref_count, h0->ref_count, sizeof(h0->ref_count)))) {
1769
1770         ff_h264_fill_default_ref_list(h);
1771     }
1772
1773     if (h->slice_type_nos != AV_PICTURE_TYPE_I) {
1774        ret = ff_h264_decode_ref_pic_list_reordering(h);
1775        if (ret < 0) {
1776            h->ref_count[1] = h->ref_count[0] = 0;
1777            return ret;
1778        }
1779     }
1780
1781     if ((h->pps.weighted_pred && h->slice_type_nos == AV_PICTURE_TYPE_P) ||
1782         (h->pps.weighted_bipred_idc == 1 &&
1783          h->slice_type_nos == AV_PICTURE_TYPE_B))
1784         ff_pred_weight_table(h);
1785     else if (h->pps.weighted_bipred_idc == 2 &&
1786              h->slice_type_nos == AV_PICTURE_TYPE_B) {
1787         implicit_weight_table(h, -1);
1788     } else {
1789         h->use_weight = 0;
1790         for (i = 0; i < 2; i++) {
1791             h->luma_weight_flag[i]   = 0;
1792             h->chroma_weight_flag[i] = 0;
1793         }
1794     }
1795
1796     // If frame-mt is enabled, only update mmco tables for the first slice
1797     // in a field. Subsequent slices can temporarily clobber h->mmco_index
1798     // or h->mmco, which will cause ref list mix-ups and decoding errors
1799     // further down the line. This may break decoding if the first slice is
1800     // corrupt, thus we only do this if frame-mt is enabled.
1801     if (h->nal_ref_idc) {
1802         ret = ff_h264_decode_ref_pic_marking(h0, &h->gb,
1803                                              !(h->avctx->active_thread_type & FF_THREAD_FRAME) ||
1804                                              h0->current_slice == 0);
1805         if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1806             return AVERROR_INVALIDDATA;
1807     }
1808
1809     if (FRAME_MBAFF(h)) {
1810         ff_h264_fill_mbaff_ref_list(h);
1811
1812         if (h->pps.weighted_bipred_idc == 2 && h->slice_type_nos == AV_PICTURE_TYPE_B) {
1813             implicit_weight_table(h, 0);
1814             implicit_weight_table(h, 1);
1815         }
1816     }
1817
1818     if (h->slice_type_nos == AV_PICTURE_TYPE_B && !h->direct_spatial_mv_pred)
1819         ff_h264_direct_dist_scale_factor(h);
1820     ff_h264_direct_ref_list_init(h);
1821
1822     if (h->slice_type_nos != AV_PICTURE_TYPE_I && h->pps.cabac) {
1823         tmp = get_ue_golomb_31(&h->gb);
1824         if (tmp > 2) {
1825             av_log(h->avctx, AV_LOG_ERROR, "cabac_init_idc %u overflow\n", tmp);
1826             return AVERROR_INVALIDDATA;
1827         }
1828         h->cabac_init_idc = tmp;
1829     }
1830
1831     h->last_qscale_diff = 0;
1832     tmp = h->pps.init_qp + get_se_golomb(&h->gb);
1833     if (tmp > 51 + 6 * (h->sps.bit_depth_luma - 8)) {
1834         av_log(h->avctx, AV_LOG_ERROR, "QP %u out of range\n", tmp);
1835         return AVERROR_INVALIDDATA;
1836     }
1837     h->qscale       = tmp;
1838     h->chroma_qp[0] = get_chroma_qp(h, 0, h->qscale);
1839     h->chroma_qp[1] = get_chroma_qp(h, 1, h->qscale);
1840     // FIXME qscale / qp ... stuff
1841     if (h->slice_type == AV_PICTURE_TYPE_SP)
1842         get_bits1(&h->gb); /* sp_for_switch_flag */
1843     if (h->slice_type == AV_PICTURE_TYPE_SP ||
1844         h->slice_type == AV_PICTURE_TYPE_SI)
1845         get_se_golomb(&h->gb); /* slice_qs_delta */
1846
1847     h->deblocking_filter     = 1;
1848     h->slice_alpha_c0_offset = 0;
1849     h->slice_beta_offset     = 0;
1850     if (h->pps.deblocking_filter_parameters_present) {
1851         tmp = get_ue_golomb_31(&h->gb);
1852         if (tmp > 2) {
1853             av_log(h->avctx, AV_LOG_ERROR,
1854                    "deblocking_filter_idc %u out of range\n", tmp);
1855             return AVERROR_INVALIDDATA;
1856         }
1857         h->deblocking_filter = tmp;
1858         if (h->deblocking_filter < 2)
1859             h->deblocking_filter ^= 1;  // 1<->0
1860
1861         if (h->deblocking_filter) {
1862             h->slice_alpha_c0_offset = get_se_golomb(&h->gb) * 2;
1863             h->slice_beta_offset     = get_se_golomb(&h->gb) * 2;
1864             if (h->slice_alpha_c0_offset >  12 ||
1865                 h->slice_alpha_c0_offset < -12 ||
1866                 h->slice_beta_offset >  12     ||
1867                 h->slice_beta_offset < -12) {
1868                 av_log(h->avctx, AV_LOG_ERROR,
1869                        "deblocking filter parameters %d %d out of range\n",
1870                        h->slice_alpha_c0_offset, h->slice_beta_offset);
1871                 return AVERROR_INVALIDDATA;
1872             }
1873         }
1874     }
1875
1876     if (h->avctx->skip_loop_filter >= AVDISCARD_ALL ||
1877         (h->avctx->skip_loop_filter >= AVDISCARD_NONKEY &&
1878          h->nal_unit_type != NAL_IDR_SLICE) ||
1879         (h->avctx->skip_loop_filter >= AVDISCARD_NONINTRA &&
1880          h->slice_type_nos != AV_PICTURE_TYPE_I) ||
1881         (h->avctx->skip_loop_filter >= AVDISCARD_BIDIR  &&
1882          h->slice_type_nos == AV_PICTURE_TYPE_B) ||
1883         (h->avctx->skip_loop_filter >= AVDISCARD_NONREF &&
1884          h->nal_ref_idc == 0))
1885         h->deblocking_filter = 0;
1886
1887     if (h->deblocking_filter == 1 && h0->max_contexts > 1) {
1888         if (h->avctx->flags2 & CODEC_FLAG2_FAST) {
1889             /* Cheat slightly for speed:
1890              * Do not bother to deblock across slices. */
1891             h->deblocking_filter = 2;
1892         } else {
1893             h0->max_contexts = 1;
1894             if (!h0->single_decode_warning) {
1895                 av_log(h->avctx, AV_LOG_INFO,
1896                        "Cannot parallelize slice decoding with deblocking filter type 1, decoding such frames in sequential order\n"
1897                        "To parallelize slice decoding you need video encoded with disable_deblocking_filter_idc set to 2 (deblock only edges that do not cross slices).\n"
1898                        "Setting the flags2 libavcodec option to +fast (-flags2 +fast) will disable deblocking across slices and enable parallel slice decoding "
1899                        "but will generate non-standard-compliant output.\n");
1900                 h0->single_decode_warning = 1;
1901             }
1902             if (h != h0) {
1903                 av_log(h->avctx, AV_LOG_ERROR,
1904                        "Deblocking switched inside frame.\n");
1905                 return SLICE_SINGLETHREAD;
1906             }
1907         }
1908     }
1909     h->qp_thresh = 15 -
1910                    FFMIN(h->slice_alpha_c0_offset, h->slice_beta_offset) -
1911                    FFMAX3(0,
1912                           h->pps.chroma_qp_index_offset[0],
1913                           h->pps.chroma_qp_index_offset[1]) +
1914                    6 * (h->sps.bit_depth_luma - 8);
1915
1916     h0->last_slice_type = slice_type;
1917     memcpy(h0->last_ref_count, h0->ref_count, sizeof(h0->last_ref_count));
1918     h->slice_num        = ++h0->current_slice;
1919
1920     if (h->slice_num)
1921         h0->slice_row[(h->slice_num-1)&(MAX_SLICES-1)]= h->resync_mb_y;
1922     if (   h0->slice_row[h->slice_num&(MAX_SLICES-1)] + 3 >= h->resync_mb_y
1923         && h0->slice_row[h->slice_num&(MAX_SLICES-1)] <= h->resync_mb_y
1924         && h->slice_num >= MAX_SLICES) {
1925         //in case of ASO this check needs to be updated depending on how we decide to assign slice numbers in this case
1926         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);
1927     }
1928
1929     for (j = 0; j < 2; j++) {
1930         int id_list[16];
1931         int *ref2frm = h->ref2frm[h->slice_num & (MAX_SLICES - 1)][j];
1932         for (i = 0; i < 16; i++) {
1933             id_list[i] = 60;
1934             if (j < h->list_count && i < h->ref_count[j] &&
1935                 h->ref_list[j][i].f.buf[0]) {
1936                 int k;
1937                 AVBuffer *buf = h->ref_list[j][i].f.buf[0]->buffer;
1938                 for (k = 0; k < h->short_ref_count; k++)
1939                     if (h->short_ref[k]->f.buf[0]->buffer == buf) {
1940                         id_list[i] = k;
1941                         break;
1942                     }
1943                 for (k = 0; k < h->long_ref_count; k++)
1944                     if (h->long_ref[k] && h->long_ref[k]->f.buf[0]->buffer == buf) {
1945                         id_list[i] = h->short_ref_count + k;
1946                         break;
1947                     }
1948             }
1949         }
1950
1951         ref2frm[0] =
1952         ref2frm[1] = -1;
1953         for (i = 0; i < 16; i++)
1954             ref2frm[i + 2] = 4 * id_list[i] + (h->ref_list[j][i].reference & 3);
1955         ref2frm[18 + 0] =
1956         ref2frm[18 + 1] = -1;
1957         for (i = 16; i < 48; i++)
1958             ref2frm[i + 4] = 4 * id_list[(i - 16) >> 1] +
1959                              (h->ref_list[j][i].reference & 3);
1960     }
1961
1962     if (h->ref_count[0]) {
1963         ff_h264_set_erpic(&h->er.last_pic, &h->ref_list[0][0]);
1964     } else if (h->last_pic_for_ec.f.buf[0]) {
1965         ff_h264_set_erpic(&h->er.last_pic, &h->last_pic_for_ec);
1966     }
1967
1968     if (h->ref_count[1]) ff_h264_set_erpic(&h->er.next_pic, &h->ref_list[1][0]);
1969
1970     h->er.ref_count = h->ref_count[0];
1971     h0->au_pps_id = pps_id;
1972     h->sps.new =
1973     h0->sps_buffers[h->pps.sps_id]->new = 0;
1974     h->current_sps_id = h->pps.sps_id;
1975
1976     if (h->avctx->debug & FF_DEBUG_PICT_INFO) {
1977         av_log(h->avctx, AV_LOG_DEBUG,
1978                "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",
1979                h->slice_num,
1980                (h->picture_structure == PICT_FRAME ? "F" : h->picture_structure == PICT_TOP_FIELD ? "T" : "B"),
1981                first_mb_in_slice,
1982                av_get_picture_type_char(h->slice_type),
1983                h->slice_type_fixed ? " fix" : "",
1984                h->nal_unit_type == NAL_IDR_SLICE ? " IDR" : "",
1985                pps_id, h->frame_num,
1986                h->cur_pic_ptr->field_poc[0],
1987                h->cur_pic_ptr->field_poc[1],
1988                h->ref_count[0], h->ref_count[1],
1989                h->qscale,
1990                h->deblocking_filter,
1991                h->slice_alpha_c0_offset, h->slice_beta_offset,
1992                h->use_weight,
1993                h->use_weight == 1 && h->use_weight_chroma ? "c" : "",
1994                h->slice_type == AV_PICTURE_TYPE_B ? (h->direct_spatial_mv_pred ? "SPAT" : "TEMP") : "");
1995     }
1996
1997     return 0;
1998 }
1999
2000 int ff_h264_get_slice_type(const H264Context *h)
2001 {
2002     switch (h->slice_type) {
2003     case AV_PICTURE_TYPE_P:
2004         return 0;
2005     case AV_PICTURE_TYPE_B:
2006         return 1;
2007     case AV_PICTURE_TYPE_I:
2008         return 2;
2009     case AV_PICTURE_TYPE_SP:
2010         return 3;
2011     case AV_PICTURE_TYPE_SI:
2012         return 4;
2013     default:
2014         return AVERROR_INVALIDDATA;
2015     }
2016 }
2017
2018 static av_always_inline void fill_filter_caches_inter(H264Context *h,
2019                                                       int mb_type, int top_xy,
2020                                                       int left_xy[LEFT_MBS],
2021                                                       int top_type,
2022                                                       int left_type[LEFT_MBS],
2023                                                       int mb_xy, int list)
2024 {
2025     int b_stride = h->b_stride;
2026     int16_t(*mv_dst)[2] = &h->mv_cache[list][scan8[0]];
2027     int8_t *ref_cache = &h->ref_cache[list][scan8[0]];
2028     if (IS_INTER(mb_type) || IS_DIRECT(mb_type)) {
2029         if (USES_LIST(top_type, list)) {
2030             const int b_xy  = h->mb2b_xy[top_xy] + 3 * b_stride;
2031             const int b8_xy = 4 * top_xy + 2;
2032             int (*ref2frm)[64] = (void*)(h->ref2frm[h->slice_table[top_xy] & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
2033             AV_COPY128(mv_dst - 1 * 8, h->cur_pic.motion_val[list][b_xy + 0]);
2034             ref_cache[0 - 1 * 8] =
2035             ref_cache[1 - 1 * 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 0]];
2036             ref_cache[2 - 1 * 8] =
2037             ref_cache[3 - 1 * 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 1]];
2038         } else {
2039             AV_ZERO128(mv_dst - 1 * 8);
2040             AV_WN32A(&ref_cache[0 - 1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2041         }
2042
2043         if (!IS_INTERLACED(mb_type ^ left_type[LTOP])) {
2044             if (USES_LIST(left_type[LTOP], list)) {
2045                 const int b_xy  = h->mb2b_xy[left_xy[LTOP]] + 3;
2046                 const int b8_xy = 4 * left_xy[LTOP] + 1;
2047                 int (*ref2frm)[64] =(void*)( h->ref2frm[h->slice_table[left_xy[LTOP]] & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
2048                 AV_COPY32(mv_dst - 1 +  0, h->cur_pic.motion_val[list][b_xy + b_stride * 0]);
2049                 AV_COPY32(mv_dst - 1 +  8, h->cur_pic.motion_val[list][b_xy + b_stride * 1]);
2050                 AV_COPY32(mv_dst - 1 + 16, h->cur_pic.motion_val[list][b_xy + b_stride * 2]);
2051                 AV_COPY32(mv_dst - 1 + 24, h->cur_pic.motion_val[list][b_xy + b_stride * 3]);
2052                 ref_cache[-1 +  0] =
2053                 ref_cache[-1 +  8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 2 * 0]];
2054                 ref_cache[-1 + 16] =
2055                 ref_cache[-1 + 24] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 2 * 1]];
2056             } else {
2057                 AV_ZERO32(mv_dst - 1 +  0);
2058                 AV_ZERO32(mv_dst - 1 +  8);
2059                 AV_ZERO32(mv_dst - 1 + 16);
2060                 AV_ZERO32(mv_dst - 1 + 24);
2061                 ref_cache[-1 +  0] =
2062                 ref_cache[-1 +  8] =
2063                 ref_cache[-1 + 16] =
2064                 ref_cache[-1 + 24] = LIST_NOT_USED;
2065             }
2066         }
2067     }
2068
2069     if (!USES_LIST(mb_type, list)) {
2070         fill_rectangle(mv_dst, 4, 4, 8, pack16to32(0, 0), 4);
2071         AV_WN32A(&ref_cache[0 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2072         AV_WN32A(&ref_cache[1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2073         AV_WN32A(&ref_cache[2 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2074         AV_WN32A(&ref_cache[3 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2075         return;
2076     }
2077
2078     {
2079         int8_t *ref = &h->cur_pic.ref_index[list][4 * mb_xy];
2080         int (*ref2frm)[64] = (void*)(h->ref2frm[h->slice_num & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
2081         uint32_t ref01 = (pack16to32(ref2frm[list][ref[0]], ref2frm[list][ref[1]]) & 0x00FF00FF) * 0x0101;
2082         uint32_t ref23 = (pack16to32(ref2frm[list][ref[2]], ref2frm[list][ref[3]]) & 0x00FF00FF) * 0x0101;
2083         AV_WN32A(&ref_cache[0 * 8], ref01);
2084         AV_WN32A(&ref_cache[1 * 8], ref01);
2085         AV_WN32A(&ref_cache[2 * 8], ref23);
2086         AV_WN32A(&ref_cache[3 * 8], ref23);
2087     }
2088
2089     {
2090         int16_t(*mv_src)[2] = &h->cur_pic.motion_val[list][4 * h->mb_x + 4 * h->mb_y * b_stride];
2091         AV_COPY128(mv_dst + 8 * 0, mv_src + 0 * b_stride);
2092         AV_COPY128(mv_dst + 8 * 1, mv_src + 1 * b_stride);
2093         AV_COPY128(mv_dst + 8 * 2, mv_src + 2 * b_stride);
2094         AV_COPY128(mv_dst + 8 * 3, mv_src + 3 * b_stride);
2095     }
2096 }
2097
2098 /**
2099  *
2100  * @return non zero if the loop filter can be skipped
2101  */
2102 static int fill_filter_caches(H264Context *h, int mb_type)
2103 {
2104     const int mb_xy = h->mb_xy;
2105     int top_xy, left_xy[LEFT_MBS];
2106     int top_type, left_type[LEFT_MBS];
2107     uint8_t *nnz;
2108     uint8_t *nnz_cache;
2109
2110     top_xy = mb_xy - (h->mb_stride << MB_FIELD(h));
2111
2112     /* Wow, what a mess, why didn't they simplify the interlacing & intra
2113      * stuff, I can't imagine that these complex rules are worth it. */
2114
2115     left_xy[LBOT] = left_xy[LTOP] = mb_xy - 1;
2116     if (FRAME_MBAFF(h)) {
2117         const int left_mb_field_flag = IS_INTERLACED(h->cur_pic.mb_type[mb_xy - 1]);
2118         const int curr_mb_field_flag = IS_INTERLACED(mb_type);
2119         if (h->mb_y & 1) {
2120             if (left_mb_field_flag != curr_mb_field_flag)
2121                 left_xy[LTOP] -= h->mb_stride;
2122         } else {
2123             if (curr_mb_field_flag)
2124                 top_xy += h->mb_stride &
2125                           (((h->cur_pic.mb_type[top_xy] >> 7) & 1) - 1);
2126             if (left_mb_field_flag != curr_mb_field_flag)
2127                 left_xy[LBOT] += h->mb_stride;
2128         }
2129     }
2130
2131     h->top_mb_xy        = top_xy;
2132     h->left_mb_xy[LTOP] = left_xy[LTOP];
2133     h->left_mb_xy[LBOT] = left_xy[LBOT];
2134     {
2135         /* For sufficiently low qp, filtering wouldn't do anything.
2136          * This is a conservative estimate: could also check beta_offset
2137          * and more accurate chroma_qp. */
2138         int qp_thresh = h->qp_thresh; // FIXME strictly we should store qp_thresh for each mb of a slice
2139         int qp        = h->cur_pic.qscale_table[mb_xy];
2140         if (qp <= qp_thresh &&
2141             (left_xy[LTOP] < 0 ||
2142              ((qp + h->cur_pic.qscale_table[left_xy[LTOP]] + 1) >> 1) <= qp_thresh) &&
2143             (top_xy < 0 ||
2144              ((qp + h->cur_pic.qscale_table[top_xy] + 1) >> 1) <= qp_thresh)) {
2145             if (!FRAME_MBAFF(h))
2146                 return 1;
2147             if ((left_xy[LTOP] < 0 ||
2148                  ((qp + h->cur_pic.qscale_table[left_xy[LBOT]] + 1) >> 1) <= qp_thresh) &&
2149                 (top_xy < h->mb_stride ||
2150                  ((qp + h->cur_pic.qscale_table[top_xy - h->mb_stride] + 1) >> 1) <= qp_thresh))
2151                 return 1;
2152         }
2153     }
2154
2155     top_type        = h->cur_pic.mb_type[top_xy];
2156     left_type[LTOP] = h->cur_pic.mb_type[left_xy[LTOP]];
2157     left_type[LBOT] = h->cur_pic.mb_type[left_xy[LBOT]];
2158     if (h->deblocking_filter == 2) {
2159         if (h->slice_table[top_xy] != h->slice_num)
2160             top_type = 0;
2161         if (h->slice_table[left_xy[LBOT]] != h->slice_num)
2162             left_type[LTOP] = left_type[LBOT] = 0;
2163     } else {
2164         if (h->slice_table[top_xy] == 0xFFFF)
2165             top_type = 0;
2166         if (h->slice_table[left_xy[LBOT]] == 0xFFFF)
2167             left_type[LTOP] = left_type[LBOT] = 0;
2168     }
2169     h->top_type        = top_type;
2170     h->left_type[LTOP] = left_type[LTOP];
2171     h->left_type[LBOT] = left_type[LBOT];
2172
2173     if (IS_INTRA(mb_type))
2174         return 0;
2175
2176     fill_filter_caches_inter(h, mb_type, top_xy, left_xy,
2177                              top_type, left_type, mb_xy, 0);
2178     if (h->list_count == 2)
2179         fill_filter_caches_inter(h, mb_type, top_xy, left_xy,
2180                                  top_type, left_type, mb_xy, 1);
2181
2182     nnz       = h->non_zero_count[mb_xy];
2183     nnz_cache = h->non_zero_count_cache;
2184     AV_COPY32(&nnz_cache[4 + 8 * 1], &nnz[0]);
2185     AV_COPY32(&nnz_cache[4 + 8 * 2], &nnz[4]);
2186     AV_COPY32(&nnz_cache[4 + 8 * 3], &nnz[8]);
2187     AV_COPY32(&nnz_cache[4 + 8 * 4], &nnz[12]);
2188     h->cbp = h->cbp_table[mb_xy];
2189
2190     if (top_type) {
2191         nnz = h->non_zero_count[top_xy];
2192         AV_COPY32(&nnz_cache[4 + 8 * 0], &nnz[3 * 4]);
2193     }
2194
2195     if (left_type[LTOP]) {
2196         nnz = h->non_zero_count[left_xy[LTOP]];
2197         nnz_cache[3 + 8 * 1] = nnz[3 + 0 * 4];
2198         nnz_cache[3 + 8 * 2] = nnz[3 + 1 * 4];
2199         nnz_cache[3 + 8 * 3] = nnz[3 + 2 * 4];
2200         nnz_cache[3 + 8 * 4] = nnz[3 + 3 * 4];
2201     }
2202
2203     /* CAVLC 8x8dct requires NNZ values for residual decoding that differ
2204      * from what the loop filter needs */
2205     if (!CABAC(h) && h->pps.transform_8x8_mode) {
2206         if (IS_8x8DCT(top_type)) {
2207             nnz_cache[4 + 8 * 0] =
2208             nnz_cache[5 + 8 * 0] = (h->cbp_table[top_xy] & 0x4000) >> 12;
2209             nnz_cache[6 + 8 * 0] =
2210             nnz_cache[7 + 8 * 0] = (h->cbp_table[top_xy] & 0x8000) >> 12;
2211         }
2212         if (IS_8x8DCT(left_type[LTOP])) {
2213             nnz_cache[3 + 8 * 1] =
2214             nnz_cache[3 + 8 * 2] = (h->cbp_table[left_xy[LTOP]] & 0x2000) >> 12; // FIXME check MBAFF
2215         }
2216         if (IS_8x8DCT(left_type[LBOT])) {
2217             nnz_cache[3 + 8 * 3] =
2218             nnz_cache[3 + 8 * 4] = (h->cbp_table[left_xy[LBOT]] & 0x8000) >> 12; // FIXME check MBAFF
2219         }
2220
2221         if (IS_8x8DCT(mb_type)) {
2222             nnz_cache[scan8[0]] =
2223             nnz_cache[scan8[1]] =
2224             nnz_cache[scan8[2]] =
2225             nnz_cache[scan8[3]] = (h->cbp & 0x1000) >> 12;
2226
2227             nnz_cache[scan8[0 + 4]] =
2228             nnz_cache[scan8[1 + 4]] =
2229             nnz_cache[scan8[2 + 4]] =
2230             nnz_cache[scan8[3 + 4]] = (h->cbp & 0x2000) >> 12;
2231
2232             nnz_cache[scan8[0 + 8]] =
2233             nnz_cache[scan8[1 + 8]] =
2234             nnz_cache[scan8[2 + 8]] =
2235             nnz_cache[scan8[3 + 8]] = (h->cbp & 0x4000) >> 12;
2236
2237             nnz_cache[scan8[0 + 12]] =
2238             nnz_cache[scan8[1 + 12]] =
2239             nnz_cache[scan8[2 + 12]] =
2240             nnz_cache[scan8[3 + 12]] = (h->cbp & 0x8000) >> 12;
2241         }
2242     }
2243
2244     return 0;
2245 }
2246
2247 static void loop_filter(H264Context *h, int start_x, int end_x)
2248 {
2249     uint8_t *dest_y, *dest_cb, *dest_cr;
2250     int linesize, uvlinesize, mb_x, mb_y;
2251     const int end_mb_y       = h->mb_y + FRAME_MBAFF(h);
2252     const int old_slice_type = h->slice_type;
2253     const int pixel_shift    = h->pixel_shift;
2254     const int block_h        = 16 >> h->chroma_y_shift;
2255
2256     if (h->deblocking_filter) {
2257         for (mb_x = start_x; mb_x < end_x; mb_x++)
2258             for (mb_y = end_mb_y - FRAME_MBAFF(h); mb_y <= end_mb_y; mb_y++) {
2259                 int mb_xy, mb_type;
2260                 mb_xy         = h->mb_xy = mb_x + mb_y * h->mb_stride;
2261                 h->slice_num  = h->slice_table[mb_xy];
2262                 mb_type       = h->cur_pic.mb_type[mb_xy];
2263                 h->list_count = h->list_counts[mb_xy];
2264
2265                 if (FRAME_MBAFF(h))
2266                     h->mb_mbaff               =
2267                     h->mb_field_decoding_flag = !!IS_INTERLACED(mb_type);
2268
2269                 h->mb_x = mb_x;
2270                 h->mb_y = mb_y;
2271                 dest_y  = h->cur_pic.f.data[0] +
2272                           ((mb_x << pixel_shift) + mb_y * h->linesize) * 16;
2273                 dest_cb = h->cur_pic.f.data[1] +
2274                           (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
2275                           mb_y * h->uvlinesize * block_h;
2276                 dest_cr = h->cur_pic.f.data[2] +
2277                           (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
2278                           mb_y * h->uvlinesize * block_h;
2279                 // FIXME simplify above
2280
2281                 if (MB_FIELD(h)) {
2282                     linesize   = h->mb_linesize   = h->linesize   * 2;
2283                     uvlinesize = h->mb_uvlinesize = h->uvlinesize * 2;
2284                     if (mb_y & 1) { // FIXME move out of this function?
2285                         dest_y  -= h->linesize   * 15;
2286                         dest_cb -= h->uvlinesize * (block_h - 1);
2287                         dest_cr -= h->uvlinesize * (block_h - 1);
2288                     }
2289                 } else {
2290                     linesize   = h->mb_linesize   = h->linesize;
2291                     uvlinesize = h->mb_uvlinesize = h->uvlinesize;
2292                 }
2293                 backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize,
2294                                  uvlinesize, 0);
2295                 if (fill_filter_caches(h, mb_type))
2296                     continue;
2297                 h->chroma_qp[0] = get_chroma_qp(h, 0, h->cur_pic.qscale_table[mb_xy]);
2298                 h->chroma_qp[1] = get_chroma_qp(h, 1, h->cur_pic.qscale_table[mb_xy]);
2299
2300                 if (FRAME_MBAFF(h)) {
2301                     ff_h264_filter_mb(h, mb_x, mb_y, dest_y, dest_cb, dest_cr,
2302                                       linesize, uvlinesize);
2303                 } else {
2304                     ff_h264_filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb,
2305                                            dest_cr, linesize, uvlinesize);
2306                 }
2307             }
2308     }
2309     h->slice_type   = old_slice_type;
2310     h->mb_x         = end_x;
2311     h->mb_y         = end_mb_y - FRAME_MBAFF(h);
2312     h->chroma_qp[0] = get_chroma_qp(h, 0, h->qscale);
2313     h->chroma_qp[1] = get_chroma_qp(h, 1, h->qscale);
2314 }
2315
2316 static void predict_field_decoding_flag(H264Context *h)
2317 {
2318     const int mb_xy = h->mb_x + h->mb_y * h->mb_stride;
2319     int mb_type     = (h->slice_table[mb_xy - 1] == h->slice_num) ?
2320                       h->cur_pic.mb_type[mb_xy - 1] :
2321                       (h->slice_table[mb_xy - h->mb_stride] == h->slice_num) ?
2322                       h->cur_pic.mb_type[mb_xy - h->mb_stride] : 0;
2323     h->mb_mbaff     = h->mb_field_decoding_flag = IS_INTERLACED(mb_type) ? 1 : 0;
2324 }
2325
2326 /**
2327  * Draw edges and report progress for the last MB row.
2328  */
2329 static void decode_finish_row(H264Context *h)
2330 {
2331     int top            = 16 * (h->mb_y      >> FIELD_PICTURE(h));
2332     int pic_height     = 16 *  h->mb_height >> FIELD_PICTURE(h);
2333     int height         =  16      << FRAME_MBAFF(h);
2334     int deblock_border = (16 + 4) << FRAME_MBAFF(h);
2335
2336     if (h->deblocking_filter) {
2337         if ((top + height) >= pic_height)
2338             height += deblock_border;
2339         top -= deblock_border;
2340     }
2341
2342     if (top >= pic_height || (top + height) < 0)
2343         return;
2344
2345     height = FFMIN(height, pic_height - top);
2346     if (top < 0) {
2347         height = top + height;
2348         top    = 0;
2349     }
2350
2351     ff_h264_draw_horiz_band(h, top, height);
2352
2353     if (h->droppable || h->er.error_occurred)
2354         return;
2355
2356     ff_thread_report_progress(&h->cur_pic_ptr->tf, top + height - 1,
2357                               h->picture_structure == PICT_BOTTOM_FIELD);
2358 }
2359
2360 static void er_add_slice(H264Context *h, int startx, int starty,
2361                          int endx, int endy, int status)
2362 {
2363     if (CONFIG_ERROR_RESILIENCE) {
2364         ERContext *er = &h->er;
2365
2366         ff_er_add_slice(er, startx, starty, endx, endy, status);
2367     }
2368 }
2369
2370 static int decode_slice(struct AVCodecContext *avctx, void *arg)
2371 {
2372     H264Context *h = *(void **)arg;
2373     int lf_x_start = h->mb_x;
2374
2375     h->mb_skip_run = -1;
2376
2377     av_assert0(h->block_offset[15] == (4 * ((scan8[15] - scan8[0]) & 7) << h->pixel_shift) + 4 * h->linesize * ((scan8[15] - scan8[0]) >> 3));
2378
2379     h->is_complex = FRAME_MBAFF(h) || h->picture_structure != PICT_FRAME ||
2380                     avctx->codec_id != AV_CODEC_ID_H264 ||
2381                     (CONFIG_GRAY && (h->flags & CODEC_FLAG_GRAY));
2382
2383     if (!(h->avctx->active_thread_type & FF_THREAD_SLICE) && h->picture_structure == PICT_FRAME && h->er.error_status_table) {
2384         const int start_i  = av_clip(h->resync_mb_x + h->resync_mb_y * h->mb_width, 0, h->mb_num - 1);
2385         if (start_i) {
2386             int prev_status = h->er.error_status_table[h->er.mb_index2xy[start_i - 1]];
2387             prev_status &= ~ VP_START;
2388             if (prev_status != (ER_MV_END | ER_DC_END | ER_AC_END))
2389                 h->er.error_occurred = 1;
2390         }
2391     }
2392
2393     if (h->pps.cabac) {
2394         /* realign */
2395         align_get_bits(&h->gb);
2396
2397         /* init cabac */
2398         ff_init_cabac_decoder(&h->cabac,
2399                               h->gb.buffer + get_bits_count(&h->gb) / 8,
2400                               (get_bits_left(&h->gb) + 7) / 8);
2401
2402         ff_h264_init_cabac_states(h);
2403
2404         for (;;) {
2405             // START_TIMER
2406             int ret = ff_h264_decode_mb_cabac(h);
2407             int eos;
2408             // STOP_TIMER("decode_mb_cabac")
2409
2410             if (ret >= 0)
2411                 ff_h264_hl_decode_mb(h);
2412
2413             // FIXME optimal? or let mb_decode decode 16x32 ?
2414             if (ret >= 0 && FRAME_MBAFF(h)) {
2415                 h->mb_y++;
2416
2417                 ret = ff_h264_decode_mb_cabac(h);
2418
2419                 if (ret >= 0)
2420                     ff_h264_hl_decode_mb(h);
2421                 h->mb_y--;
2422             }
2423             eos = get_cabac_terminate(&h->cabac);
2424
2425             if ((h->workaround_bugs & FF_BUG_TRUNCATED) &&
2426                 h->cabac.bytestream > h->cabac.bytestream_end + 2) {
2427                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x - 1,
2428                              h->mb_y, ER_MB_END);
2429                 if (h->mb_x >= lf_x_start)
2430                     loop_filter(h, lf_x_start, h->mb_x + 1);
2431                 return 0;
2432             }
2433             if (h->cabac.bytestream > h->cabac.bytestream_end + 2 )
2434                 av_log(h->avctx, AV_LOG_DEBUG, "bytestream overread %"PTRDIFF_SPECIFIER"\n", h->cabac.bytestream_end - h->cabac.bytestream);
2435             if (ret < 0 || h->cabac.bytestream > h->cabac.bytestream_end + 4) {
2436                 av_log(h->avctx, AV_LOG_ERROR,
2437                        "error while decoding MB %d %d, bytestream %"PTRDIFF_SPECIFIER"\n",
2438                        h->mb_x, h->mb_y,
2439                        h->cabac.bytestream_end - h->cabac.bytestream);
2440                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
2441                              h->mb_y, ER_MB_ERROR);
2442                 return AVERROR_INVALIDDATA;
2443             }
2444
2445             if (++h->mb_x >= h->mb_width) {
2446                 loop_filter(h, lf_x_start, h->mb_x);
2447                 h->mb_x = lf_x_start = 0;
2448                 decode_finish_row(h);
2449                 ++h->mb_y;
2450                 if (FIELD_OR_MBAFF_PICTURE(h)) {
2451                     ++h->mb_y;
2452                     if (FRAME_MBAFF(h) && h->mb_y < h->mb_height)
2453                         predict_field_decoding_flag(h);
2454                 }
2455             }
2456
2457             if (eos || h->mb_y >= h->mb_height) {
2458                 tprintf(h->avctx, "slice end %d %d\n",
2459                         get_bits_count(&h->gb), h->gb.size_in_bits);
2460                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x - 1,
2461                              h->mb_y, ER_MB_END);
2462                 if (h->mb_x > lf_x_start)
2463                     loop_filter(h, lf_x_start, h->mb_x);
2464                 return 0;
2465             }
2466         }
2467     } else {
2468         for (;;) {
2469             int ret = ff_h264_decode_mb_cavlc(h);
2470
2471             if (ret >= 0)
2472                 ff_h264_hl_decode_mb(h);
2473
2474             // FIXME optimal? or let mb_decode decode 16x32 ?
2475             if (ret >= 0 && FRAME_MBAFF(h)) {
2476                 h->mb_y++;
2477                 ret = ff_h264_decode_mb_cavlc(h);
2478
2479                 if (ret >= 0)
2480                     ff_h264_hl_decode_mb(h);
2481                 h->mb_y--;
2482             }
2483
2484             if (ret < 0) {
2485                 av_log(h->avctx, AV_LOG_ERROR,
2486                        "error while decoding MB %d %d\n", h->mb_x, h->mb_y);
2487                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
2488                              h->mb_y, ER_MB_ERROR);
2489                 return ret;
2490             }
2491
2492             if (++h->mb_x >= h->mb_width) {
2493                 loop_filter(h, lf_x_start, h->mb_x);
2494                 h->mb_x = lf_x_start = 0;
2495                 decode_finish_row(h);
2496                 ++h->mb_y;
2497                 if (FIELD_OR_MBAFF_PICTURE(h)) {
2498                     ++h->mb_y;
2499                     if (FRAME_MBAFF(h) && h->mb_y < h->mb_height)
2500                         predict_field_decoding_flag(h);
2501                 }
2502                 if (h->mb_y >= h->mb_height) {
2503                     tprintf(h->avctx, "slice end %d %d\n",
2504                             get_bits_count(&h->gb), h->gb.size_in_bits);
2505
2506                     if (   get_bits_left(&h->gb) == 0
2507                         || get_bits_left(&h->gb) > 0 && !(h->avctx->err_recognition & AV_EF_AGGRESSIVE)) {
2508                         er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
2509                                      h->mb_x - 1, h->mb_y, ER_MB_END);
2510
2511                         return 0;
2512                     } else {
2513                         er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
2514                                      h->mb_x, h->mb_y, ER_MB_END);
2515
2516                         return AVERROR_INVALIDDATA;
2517                     }
2518                 }
2519             }
2520
2521             if (get_bits_left(&h->gb) <= 0 && h->mb_skip_run <= 0) {
2522                 tprintf(h->avctx, "slice end %d %d\n",
2523                         get_bits_count(&h->gb), h->gb.size_in_bits);
2524
2525                 if (get_bits_left(&h->gb) == 0) {
2526                     er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
2527                                  h->mb_x - 1, h->mb_y, ER_MB_END);
2528                     if (h->mb_x > lf_x_start)
2529                         loop_filter(h, lf_x_start, h->mb_x);
2530
2531                     return 0;
2532                 } else {
2533                     er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
2534                                  h->mb_y, ER_MB_ERROR);
2535
2536                     return AVERROR_INVALIDDATA;
2537                 }
2538             }
2539         }
2540     }
2541 }
2542
2543 /**
2544  * Call decode_slice() for each context.
2545  *
2546  * @param h h264 master context
2547  * @param context_count number of contexts to execute
2548  */
2549 int ff_h264_execute_decode_slices(H264Context *h, unsigned context_count)
2550 {
2551     AVCodecContext *const avctx = h->avctx;
2552     H264Context *hx;
2553     int i;
2554
2555     av_assert0(h->mb_y < h->mb_height);
2556
2557     if (h->avctx->hwaccel ||
2558         h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
2559         return 0;
2560     if (context_count == 1) {
2561         return decode_slice(avctx, &h);
2562     } else {
2563         av_assert0(context_count > 0);
2564         for (i = 1; i < context_count; i++) {
2565             hx                 = h->thread_context[i];
2566             if (CONFIG_ERROR_RESILIENCE) {
2567                 hx->er.error_count = 0;
2568             }
2569             hx->x264_build     = h->x264_build;
2570         }
2571
2572         avctx->execute(avctx, decode_slice, h->thread_context,
2573                        NULL, context_count, sizeof(void *));
2574
2575         /* pull back stuff from slices to master context */
2576         hx                   = h->thread_context[context_count - 1];
2577         h->mb_x              = hx->mb_x;
2578         h->mb_y              = hx->mb_y;
2579         h->droppable         = hx->droppable;
2580         h->picture_structure = hx->picture_structure;
2581         if (CONFIG_ERROR_RESILIENCE) {
2582             for (i = 1; i < context_count; i++)
2583                 h->er.error_count += h->thread_context[i]->er.error_count;
2584         }
2585     }
2586
2587     return 0;
2588 }