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