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