]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264_slice.c
Merge commit '66e6c8a7b4e3ac926302529606bd3e323c28b20f'
[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->frame_priv_data_size) {
269             pic->hwaccel_priv_buf = av_buffer_allocz(hwaccel->frame_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     pic->sei_recovery_frame_cnt = h->sei_recovery_frame_cnt;
748
749     if ((ret = alloc_picture(h, pic)) < 0)
750         return ret;
751     if(!h->frame_recovered && !h->avctx->hwaccel &&
752        !(h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU))
753         avpriv_color_frame(&pic->f, c);
754
755     h->cur_pic_ptr = pic;
756     ff_h264_unref_picture(h, &h->cur_pic);
757     if (CONFIG_ERROR_RESILIENCE) {
758         ff_h264_set_erpic(&h->er.cur_pic, NULL);
759     }
760
761     if ((ret = ff_h264_ref_picture(h, &h->cur_pic, h->cur_pic_ptr)) < 0)
762         return ret;
763
764     if (CONFIG_ERROR_RESILIENCE) {
765         ff_er_frame_start(&h->er);
766         ff_h264_set_erpic(&h->er.last_pic, NULL);
767         ff_h264_set_erpic(&h->er.next_pic, NULL);
768     }
769
770     assert(h->linesize && h->uvlinesize);
771
772     for (i = 0; i < 16; i++) {
773         h->block_offset[i]           = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * h->linesize * ((scan8[i] - scan8[0]) >> 3);
774         h->block_offset[48 + i]      = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * h->linesize * ((scan8[i] - scan8[0]) >> 3);
775     }
776     for (i = 0; i < 16; i++) {
777         h->block_offset[16 + i]      =
778         h->block_offset[32 + i]      = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * h->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
779         h->block_offset[48 + 16 + i] =
780         h->block_offset[48 + 32 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * h->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
781     }
782
783     /* We mark the current picture as non-reference after allocating it, so
784      * that if we break out due to an error it can be released automatically
785      * in the next ff_MPV_frame_start().
786      */
787     h->cur_pic_ptr->reference = 0;
788
789     h->cur_pic_ptr->field_poc[0] = h->cur_pic_ptr->field_poc[1] = INT_MAX;
790
791     h->next_output_pic = NULL;
792
793     assert(h->cur_pic_ptr->long_ref == 0);
794
795     return 0;
796 }
797
798 static av_always_inline void backup_mb_border(H264Context *h, uint8_t *src_y,
799                                               uint8_t *src_cb, uint8_t *src_cr,
800                                               int linesize, int uvlinesize,
801                                               int simple)
802 {
803     uint8_t *top_border;
804     int top_idx = 1;
805     const int pixel_shift = h->pixel_shift;
806     int chroma444 = CHROMA444(h);
807     int chroma422 = CHROMA422(h);
808
809     src_y  -= linesize;
810     src_cb -= uvlinesize;
811     src_cr -= uvlinesize;
812
813     if (!simple && FRAME_MBAFF(h)) {
814         if (h->mb_y & 1) {
815             if (!MB_MBAFF(h)) {
816                 top_border = h->top_borders[0][h->mb_x];
817                 AV_COPY128(top_border, src_y + 15 * linesize);
818                 if (pixel_shift)
819                     AV_COPY128(top_border + 16, src_y + 15 * linesize + 16);
820                 if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
821                     if (chroma444) {
822                         if (pixel_shift) {
823                             AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
824                             AV_COPY128(top_border + 48, src_cb + 15 * uvlinesize + 16);
825                             AV_COPY128(top_border + 64, src_cr + 15 * uvlinesize);
826                             AV_COPY128(top_border + 80, src_cr + 15 * uvlinesize + 16);
827                         } else {
828                             AV_COPY128(top_border + 16, src_cb + 15 * uvlinesize);
829                             AV_COPY128(top_border + 32, src_cr + 15 * uvlinesize);
830                         }
831                     } else if (chroma422) {
832                         if (pixel_shift) {
833                             AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
834                             AV_COPY128(top_border + 48, src_cr + 15 * uvlinesize);
835                         } else {
836                             AV_COPY64(top_border + 16, src_cb + 15 * uvlinesize);
837                             AV_COPY64(top_border + 24, src_cr + 15 * uvlinesize);
838                         }
839                     } else {
840                         if (pixel_shift) {
841                             AV_COPY128(top_border + 32, src_cb + 7 * uvlinesize);
842                             AV_COPY128(top_border + 48, src_cr + 7 * uvlinesize);
843                         } else {
844                             AV_COPY64(top_border + 16, src_cb + 7 * uvlinesize);
845                             AV_COPY64(top_border + 24, src_cr + 7 * uvlinesize);
846                         }
847                     }
848                 }
849             }
850         } else if (MB_MBAFF(h)) {
851             top_idx = 0;
852         } else
853             return;
854     }
855
856     top_border = h->top_borders[top_idx][h->mb_x];
857     /* There are two lines saved, the line above the top macroblock
858      * of a pair, and the line above the bottom macroblock. */
859     AV_COPY128(top_border, src_y + 16 * linesize);
860     if (pixel_shift)
861         AV_COPY128(top_border + 16, src_y + 16 * linesize + 16);
862
863     if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
864         if (chroma444) {
865             if (pixel_shift) {
866                 AV_COPY128(top_border + 32, src_cb + 16 * linesize);
867                 AV_COPY128(top_border + 48, src_cb + 16 * linesize + 16);
868                 AV_COPY128(top_border + 64, src_cr + 16 * linesize);
869                 AV_COPY128(top_border + 80, src_cr + 16 * linesize + 16);
870             } else {
871                 AV_COPY128(top_border + 16, src_cb + 16 * linesize);
872                 AV_COPY128(top_border + 32, src_cr + 16 * linesize);
873             }
874         } else if (chroma422) {
875             if (pixel_shift) {
876                 AV_COPY128(top_border + 32, src_cb + 16 * uvlinesize);
877                 AV_COPY128(top_border + 48, src_cr + 16 * uvlinesize);
878             } else {
879                 AV_COPY64(top_border + 16, src_cb + 16 * uvlinesize);
880                 AV_COPY64(top_border + 24, src_cr + 16 * uvlinesize);
881             }
882         } else {
883             if (pixel_shift) {
884                 AV_COPY128(top_border + 32, src_cb + 8 * uvlinesize);
885                 AV_COPY128(top_border + 48, src_cr + 8 * uvlinesize);
886             } else {
887                 AV_COPY64(top_border + 16, src_cb + 8 * uvlinesize);
888                 AV_COPY64(top_border + 24, src_cr + 8 * uvlinesize);
889             }
890         }
891     }
892 }
893
894 /**
895  * Initialize implicit_weight table.
896  * @param field  0/1 initialize the weight for interlaced MBAFF
897  *                -1 initializes the rest
898  */
899 static void implicit_weight_table(H264Context *h, int field)
900 {
901     int ref0, ref1, i, cur_poc, ref_start, ref_count0, ref_count1;
902
903     for (i = 0; i < 2; i++) {
904         h->luma_weight_flag[i]   = 0;
905         h->chroma_weight_flag[i] = 0;
906     }
907
908     if (field < 0) {
909         if (h->picture_structure == PICT_FRAME) {
910             cur_poc = h->cur_pic_ptr->poc;
911         } else {
912             cur_poc = h->cur_pic_ptr->field_poc[h->picture_structure - 1];
913         }
914         if (h->ref_count[0] == 1 && h->ref_count[1] == 1 && !FRAME_MBAFF(h) &&
915             h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2 * cur_poc) {
916             h->use_weight        = 0;
917             h->use_weight_chroma = 0;
918             return;
919         }
920         ref_start  = 0;
921         ref_count0 = h->ref_count[0];
922         ref_count1 = h->ref_count[1];
923     } else {
924         cur_poc    = h->cur_pic_ptr->field_poc[field];
925         ref_start  = 16;
926         ref_count0 = 16 + 2 * h->ref_count[0];
927         ref_count1 = 16 + 2 * h->ref_count[1];
928     }
929
930     h->use_weight               = 2;
931     h->use_weight_chroma        = 2;
932     h->luma_log2_weight_denom   = 5;
933     h->chroma_log2_weight_denom = 5;
934
935     for (ref0 = ref_start; ref0 < ref_count0; ref0++) {
936         int poc0 = h->ref_list[0][ref0].poc;
937         for (ref1 = ref_start; ref1 < ref_count1; ref1++) {
938             int w = 32;
939             if (!h->ref_list[0][ref0].long_ref && !h->ref_list[1][ref1].long_ref) {
940                 int poc1 = h->ref_list[1][ref1].poc;
941                 int td   = av_clip(poc1 - poc0, -128, 127);
942                 if (td) {
943                     int tb = av_clip(cur_poc - poc0, -128, 127);
944                     int tx = (16384 + (FFABS(td) >> 1)) / td;
945                     int dist_scale_factor = (tb * tx + 32) >> 8;
946                     if (dist_scale_factor >= -64 && dist_scale_factor <= 128)
947                         w = 64 - dist_scale_factor;
948                 }
949             }
950             if (field < 0) {
951                 h->implicit_weight[ref0][ref1][0] =
952                 h->implicit_weight[ref0][ref1][1] = w;
953             } else {
954                 h->implicit_weight[ref0][ref1][field] = w;
955             }
956         }
957     }
958 }
959
960 /**
961  * initialize scan tables
962  */
963 static void init_scan_tables(H264Context *h)
964 {
965     int i;
966     for (i = 0; i < 16; i++) {
967 #define TRANSPOSE(x) (x >> 2) | ((x << 2) & 0xF)
968         h->zigzag_scan[i] = TRANSPOSE(zigzag_scan[i]);
969         h->field_scan[i]  = TRANSPOSE(field_scan[i]);
970 #undef TRANSPOSE
971     }
972     for (i = 0; i < 64; i++) {
973 #define TRANSPOSE(x) (x >> 3) | ((x & 7) << 3)
974         h->zigzag_scan8x8[i]       = TRANSPOSE(ff_zigzag_direct[i]);
975         h->zigzag_scan8x8_cavlc[i] = TRANSPOSE(zigzag_scan8x8_cavlc[i]);
976         h->field_scan8x8[i]        = TRANSPOSE(field_scan8x8[i]);
977         h->field_scan8x8_cavlc[i]  = TRANSPOSE(field_scan8x8_cavlc[i]);
978 #undef TRANSPOSE
979     }
980     if (h->sps.transform_bypass) { // FIXME same ugly
981         memcpy(h->zigzag_scan_q0          , zigzag_scan             , sizeof(h->zigzag_scan_q0         ));
982         memcpy(h->zigzag_scan8x8_q0       , ff_zigzag_direct        , sizeof(h->zigzag_scan8x8_q0      ));
983         memcpy(h->zigzag_scan8x8_cavlc_q0 , zigzag_scan8x8_cavlc    , sizeof(h->zigzag_scan8x8_cavlc_q0));
984         memcpy(h->field_scan_q0           , field_scan              , sizeof(h->field_scan_q0          ));
985         memcpy(h->field_scan8x8_q0        , field_scan8x8           , sizeof(h->field_scan8x8_q0       ));
986         memcpy(h->field_scan8x8_cavlc_q0  , field_scan8x8_cavlc     , sizeof(h->field_scan8x8_cavlc_q0 ));
987     } else {
988         memcpy(h->zigzag_scan_q0          , h->zigzag_scan          , sizeof(h->zigzag_scan_q0         ));
989         memcpy(h->zigzag_scan8x8_q0       , h->zigzag_scan8x8       , sizeof(h->zigzag_scan8x8_q0      ));
990         memcpy(h->zigzag_scan8x8_cavlc_q0 , h->zigzag_scan8x8_cavlc , sizeof(h->zigzag_scan8x8_cavlc_q0));
991         memcpy(h->field_scan_q0           , h->field_scan           , sizeof(h->field_scan_q0          ));
992         memcpy(h->field_scan8x8_q0        , h->field_scan8x8        , sizeof(h->field_scan8x8_q0       ));
993         memcpy(h->field_scan8x8_cavlc_q0  , h->field_scan8x8_cavlc  , sizeof(h->field_scan8x8_cavlc_q0 ));
994     }
995 }
996
997 /**
998  * Replicate H264 "master" context to thread contexts.
999  */
1000 static int clone_slice(H264Context *dst, H264Context *src)
1001 {
1002     memcpy(dst->block_offset, src->block_offset, sizeof(dst->block_offset));
1003     dst->cur_pic_ptr = src->cur_pic_ptr;
1004     dst->cur_pic     = src->cur_pic;
1005     dst->linesize    = src->linesize;
1006     dst->uvlinesize  = src->uvlinesize;
1007     dst->first_field = src->first_field;
1008
1009     dst->prev_poc_msb          = src->prev_poc_msb;
1010     dst->prev_poc_lsb          = src->prev_poc_lsb;
1011     dst->prev_frame_num_offset = src->prev_frame_num_offset;
1012     dst->prev_frame_num        = src->prev_frame_num;
1013     dst->short_ref_count       = src->short_ref_count;
1014
1015     memcpy(dst->short_ref,        src->short_ref,        sizeof(dst->short_ref));
1016     memcpy(dst->long_ref,         src->long_ref,         sizeof(dst->long_ref));
1017     memcpy(dst->default_ref_list, src->default_ref_list, sizeof(dst->default_ref_list));
1018
1019     memcpy(dst->dequant4_coeff,   src->dequant4_coeff,   sizeof(src->dequant4_coeff));
1020     memcpy(dst->dequant8_coeff,   src->dequant8_coeff,   sizeof(src->dequant8_coeff));
1021
1022     return 0;
1023 }
1024
1025 static enum AVPixelFormat get_pixel_format(H264Context *h, int force_callback)
1026 {
1027     switch (h->sps.bit_depth_luma) {
1028     case 9:
1029         if (CHROMA444(h)) {
1030             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1031                 return AV_PIX_FMT_GBRP9;
1032             } else
1033                 return AV_PIX_FMT_YUV444P9;
1034         } else if (CHROMA422(h))
1035             return AV_PIX_FMT_YUV422P9;
1036         else
1037             return AV_PIX_FMT_YUV420P9;
1038         break;
1039     case 10:
1040         if (CHROMA444(h)) {
1041             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1042                 return AV_PIX_FMT_GBRP10;
1043             } else
1044                 return AV_PIX_FMT_YUV444P10;
1045         } else if (CHROMA422(h))
1046             return AV_PIX_FMT_YUV422P10;
1047         else
1048             return AV_PIX_FMT_YUV420P10;
1049         break;
1050     case 12:
1051         if (CHROMA444(h)) {
1052             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1053                 return AV_PIX_FMT_GBRP12;
1054             } else
1055                 return AV_PIX_FMT_YUV444P12;
1056         } else if (CHROMA422(h))
1057             return AV_PIX_FMT_YUV422P12;
1058         else
1059             return AV_PIX_FMT_YUV420P12;
1060         break;
1061     case 14:
1062         if (CHROMA444(h)) {
1063             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1064                 return AV_PIX_FMT_GBRP14;
1065             } else
1066                 return AV_PIX_FMT_YUV444P14;
1067         } else if (CHROMA422(h))
1068             return AV_PIX_FMT_YUV422P14;
1069         else
1070             return AV_PIX_FMT_YUV420P14;
1071         break;
1072     case 8:
1073         if (CHROMA444(h)) {
1074             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1075                 av_log(h->avctx, AV_LOG_DEBUG, "Detected GBR colorspace.\n");
1076                 return AV_PIX_FMT_GBR24P;
1077             } else if (h->avctx->colorspace == AVCOL_SPC_YCGCO) {
1078                 av_log(h->avctx, AV_LOG_WARNING, "Detected unsupported YCgCo colorspace.\n");
1079             }
1080             return h->avctx->color_range == AVCOL_RANGE_JPEG ? AV_PIX_FMT_YUVJ444P
1081                                                                 : AV_PIX_FMT_YUV444P;
1082         } else if (CHROMA422(h)) {
1083             return h->avctx->color_range == AVCOL_RANGE_JPEG ? AV_PIX_FMT_YUVJ422P
1084                                                              : AV_PIX_FMT_YUV422P;
1085         } else {
1086             int i;
1087             const enum AVPixelFormat * fmt = h->avctx->codec->pix_fmts ?
1088                                         h->avctx->codec->pix_fmts :
1089                                         h->avctx->color_range == AVCOL_RANGE_JPEG ?
1090                                         h264_hwaccel_pixfmt_list_jpeg_420 :
1091                                         h264_hwaccel_pixfmt_list_420;
1092
1093             for (i=0; fmt[i] != AV_PIX_FMT_NONE; i++)
1094                 if (fmt[i] == h->avctx->pix_fmt && !force_callback)
1095                     return fmt[i];
1096             return ff_thread_get_format(h->avctx, fmt);
1097         }
1098         break;
1099     default:
1100         av_log(h->avctx, AV_LOG_ERROR,
1101                "Unsupported bit depth %d\n", h->sps.bit_depth_luma);
1102         return AVERROR_INVALIDDATA;
1103     }
1104 }
1105
1106 /* export coded and cropped frame dimensions to AVCodecContext */
1107 static int init_dimensions(H264Context *h)
1108 {
1109     int width  = h->width  - (h->sps.crop_right + h->sps.crop_left);
1110     int height = h->height - (h->sps.crop_top   + h->sps.crop_bottom);
1111     av_assert0(h->sps.crop_right + h->sps.crop_left < (unsigned)h->width);
1112     av_assert0(h->sps.crop_top + h->sps.crop_bottom < (unsigned)h->height);
1113
1114     /* handle container cropping */
1115     if (!h->sps.crop &&
1116         FFALIGN(h->avctx->width,  16) == h->width &&
1117         FFALIGN(h->avctx->height, 16) == h->height) {
1118         width  = h->avctx->width;
1119         height = h->avctx->height;
1120     }
1121
1122     if (width <= 0 || height <= 0) {
1123         av_log(h->avctx, AV_LOG_ERROR, "Invalid cropped dimensions: %dx%d.\n",
1124                width, height);
1125         if (h->avctx->err_recognition & AV_EF_EXPLODE)
1126             return AVERROR_INVALIDDATA;
1127
1128         av_log(h->avctx, AV_LOG_WARNING, "Ignoring cropping information.\n");
1129         h->sps.crop_bottom = h->sps.crop_top = h->sps.crop_right = h->sps.crop_left = 0;
1130         h->sps.crop        = 0;
1131
1132         width  = h->width;
1133         height = h->height;
1134     }
1135
1136     h->avctx->coded_width  = h->width;
1137     h->avctx->coded_height = h->height;
1138     h->avctx->width        = width;
1139     h->avctx->height       = height;
1140
1141     return 0;
1142 }
1143
1144 static int h264_slice_header_init(H264Context *h, int reinit)
1145 {
1146     int nb_slices = (HAVE_THREADS &&
1147                      h->avctx->active_thread_type & FF_THREAD_SLICE) ?
1148                     h->avctx->thread_count : 1;
1149     int i, ret;
1150
1151     h->avctx->sample_aspect_ratio = h->sps.sar;
1152     av_assert0(h->avctx->sample_aspect_ratio.den);
1153     av_pix_fmt_get_chroma_sub_sample(h->avctx->pix_fmt,
1154                                      &h->chroma_x_shift, &h->chroma_y_shift);
1155
1156     if (h->sps.timing_info_present_flag) {
1157         int64_t den = h->sps.time_scale;
1158         if (h->x264_build < 44U)
1159             den *= 2;
1160         av_reduce(&h->avctx->time_base.num, &h->avctx->time_base.den,
1161                   h->sps.num_units_in_tick, den, 1 << 30);
1162     }
1163
1164     if (reinit)
1165         ff_h264_free_tables(h, 0);
1166     h->first_field           = 0;
1167     h->prev_interlaced_frame = 1;
1168
1169     init_scan_tables(h);
1170     ret = ff_h264_alloc_tables(h);
1171     if (ret < 0) {
1172         av_log(h->avctx, AV_LOG_ERROR, "Could not allocate memory\n");
1173         return ret;
1174     }
1175
1176     if (nb_slices > H264_MAX_THREADS || (nb_slices > h->mb_height && h->mb_height)) {
1177         int max_slices;
1178         if (h->mb_height)
1179             max_slices = FFMIN(H264_MAX_THREADS, h->mb_height);
1180         else
1181             max_slices = H264_MAX_THREADS;
1182         av_log(h->avctx, AV_LOG_WARNING, "too many threads/slices %d,"
1183                " reducing to %d\n", nb_slices, max_slices);
1184         nb_slices = max_slices;
1185     }
1186     h->slice_context_count = nb_slices;
1187
1188     if (!HAVE_THREADS || !(h->avctx->active_thread_type & FF_THREAD_SLICE)) {
1189         ret = ff_h264_context_init(h);
1190         if (ret < 0) {
1191             av_log(h->avctx, AV_LOG_ERROR, "context_init() failed.\n");
1192             return ret;
1193         }
1194     } else {
1195         for (i = 1; i < h->slice_context_count; i++) {
1196             H264Context *c;
1197             c                    = h->thread_context[i] = av_mallocz(sizeof(H264Context));
1198             if (!c)
1199                 return AVERROR(ENOMEM);
1200             c->avctx             = h->avctx;
1201             if (CONFIG_ERROR_RESILIENCE) {
1202                 c->dsp               = h->dsp;
1203             }
1204             c->vdsp              = h->vdsp;
1205             c->h264dsp           = h->h264dsp;
1206             c->h264qpel          = h->h264qpel;
1207             c->h264chroma        = h->h264chroma;
1208             c->sps               = h->sps;
1209             c->pps               = h->pps;
1210             c->pixel_shift       = h->pixel_shift;
1211             c->cur_chroma_format_idc = h->cur_chroma_format_idc;
1212             c->width             = h->width;
1213             c->height            = h->height;
1214             c->linesize          = h->linesize;
1215             c->uvlinesize        = h->uvlinesize;
1216             c->chroma_x_shift    = h->chroma_x_shift;
1217             c->chroma_y_shift    = h->chroma_y_shift;
1218             c->qscale            = h->qscale;
1219             c->droppable         = h->droppable;
1220             c->data_partitioning = h->data_partitioning;
1221             c->low_delay         = h->low_delay;
1222             c->mb_width          = h->mb_width;
1223             c->mb_height         = h->mb_height;
1224             c->mb_stride         = h->mb_stride;
1225             c->mb_num            = h->mb_num;
1226             c->flags             = h->flags;
1227             c->workaround_bugs   = h->workaround_bugs;
1228             c->pict_type         = h->pict_type;
1229
1230             init_scan_tables(c);
1231             clone_tables(c, h, i);
1232             c->context_initialized = 1;
1233         }
1234
1235         for (i = 0; i < h->slice_context_count; i++)
1236             if ((ret = ff_h264_context_init(h->thread_context[i])) < 0) {
1237                 av_log(h->avctx, AV_LOG_ERROR, "context_init() failed.\n");
1238                 return ret;
1239             }
1240     }
1241
1242     h->context_initialized = 1;
1243
1244     return 0;
1245 }
1246
1247 static enum AVPixelFormat non_j_pixfmt(enum AVPixelFormat a)
1248 {
1249     switch (a) {
1250     case AV_PIX_FMT_YUVJ420P: return AV_PIX_FMT_YUV420P;
1251     case AV_PIX_FMT_YUVJ422P: return AV_PIX_FMT_YUV422P;
1252     case AV_PIX_FMT_YUVJ444P: return AV_PIX_FMT_YUV444P;
1253     default:
1254         return a;
1255     }
1256 }
1257
1258 /**
1259  * Decode a slice header.
1260  * This will (re)intialize the decoder and call h264_frame_start() as needed.
1261  *
1262  * @param h h264context
1263  * @param h0 h264 master context (differs from 'h' when doing sliced based
1264  *           parallel decoding)
1265  *
1266  * @return 0 if okay, <0 if an error occurred, 1 if decoding must not be multithreaded
1267  */
1268 int ff_h264_decode_slice_header(H264Context *h, H264Context *h0)
1269 {
1270     unsigned int first_mb_in_slice;
1271     unsigned int pps_id;
1272     int ret;
1273     unsigned int slice_type, tmp, i, j;
1274     int last_pic_structure, last_pic_droppable;
1275     int must_reinit;
1276     int needs_reinit = 0;
1277     int field_pic_flag, bottom_field_flag;
1278
1279     h->qpel_put = h->h264qpel.put_h264_qpel_pixels_tab;
1280     h->qpel_avg = h->h264qpel.avg_h264_qpel_pixels_tab;
1281
1282     first_mb_in_slice = get_ue_golomb_long(&h->gb);
1283
1284     if (first_mb_in_slice == 0) { // FIXME better field boundary detection
1285         if (h0->current_slice && h->cur_pic_ptr && FIELD_PICTURE(h)) {
1286             ff_h264_field_end(h, 1);
1287         }
1288
1289         h0->current_slice = 0;
1290         if (!h0->first_field) {
1291             if (h->cur_pic_ptr && !h->droppable) {
1292                 ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
1293                                           h->picture_structure == PICT_BOTTOM_FIELD);
1294             }
1295             h->cur_pic_ptr = NULL;
1296         }
1297     }
1298
1299     slice_type = get_ue_golomb_31(&h->gb);
1300     if (slice_type > 9) {
1301         av_log(h->avctx, AV_LOG_ERROR,
1302                "slice type %d too large at %d %d\n",
1303                slice_type, h->mb_x, h->mb_y);
1304         return AVERROR_INVALIDDATA;
1305     }
1306     if (slice_type > 4) {
1307         slice_type -= 5;
1308         h->slice_type_fixed = 1;
1309     } else
1310         h->slice_type_fixed = 0;
1311
1312     slice_type = golomb_to_pict_type[slice_type];
1313     h->slice_type     = slice_type;
1314     h->slice_type_nos = slice_type & 3;
1315
1316     if (h->nal_unit_type  == NAL_IDR_SLICE &&
1317         h->slice_type_nos != AV_PICTURE_TYPE_I) {
1318         av_log(h->avctx, AV_LOG_ERROR, "A non-intra slice in an IDR NAL unit.\n");
1319         return AVERROR_INVALIDDATA;
1320     }
1321
1322     // to make a few old functions happy, it's wrong though
1323     h->pict_type = h->slice_type;
1324
1325     pps_id = get_ue_golomb(&h->gb);
1326     if (pps_id >= MAX_PPS_COUNT) {
1327         av_log(h->avctx, AV_LOG_ERROR, "pps_id %u out of range\n", pps_id);
1328         return AVERROR_INVALIDDATA;
1329     }
1330     if (!h0->pps_buffers[pps_id]) {
1331         av_log(h->avctx, AV_LOG_ERROR,
1332                "non-existing PPS %u referenced\n",
1333                pps_id);
1334         return AVERROR_INVALIDDATA;
1335     }
1336     if (h0->au_pps_id >= 0 && pps_id != h0->au_pps_id) {
1337         av_log(h->avctx, AV_LOG_ERROR,
1338                "PPS change from %d to %d forbidden\n",
1339                h0->au_pps_id, pps_id);
1340         return AVERROR_INVALIDDATA;
1341     }
1342     h->pps = *h0->pps_buffers[pps_id];
1343
1344     if (!h0->sps_buffers[h->pps.sps_id]) {
1345         av_log(h->avctx, AV_LOG_ERROR,
1346                "non-existing SPS %u referenced\n",
1347                h->pps.sps_id);
1348         return AVERROR_INVALIDDATA;
1349     }
1350
1351     if (h->pps.sps_id != h->sps.sps_id ||
1352         h->pps.sps_id != h->current_sps_id ||
1353         h0->sps_buffers[h->pps.sps_id]->new) {
1354
1355         h->sps = *h0->sps_buffers[h->pps.sps_id];
1356
1357         if (h->mb_width  != h->sps.mb_width ||
1358             h->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag) ||
1359             h->avctx->bits_per_raw_sample != h->sps.bit_depth_luma ||
1360             h->cur_chroma_format_idc != h->sps.chroma_format_idc
1361         )
1362             needs_reinit = 1;
1363
1364         if (h->bit_depth_luma    != h->sps.bit_depth_luma ||
1365             h->chroma_format_idc != h->sps.chroma_format_idc) {
1366             h->bit_depth_luma    = h->sps.bit_depth_luma;
1367             h->chroma_format_idc = h->sps.chroma_format_idc;
1368             needs_reinit         = 1;
1369         }
1370         if ((ret = ff_h264_set_parameter_from_sps(h)) < 0)
1371             return ret;
1372     }
1373
1374     h->avctx->profile = ff_h264_get_profile(&h->sps);
1375     h->avctx->level   = h->sps.level_idc;
1376     h->avctx->refs    = h->sps.ref_frame_count;
1377
1378     must_reinit = (h->context_initialized &&
1379                     (   16*h->sps.mb_width != h->avctx->coded_width
1380                      || 16*h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag) != h->avctx->coded_height
1381                      || h->avctx->bits_per_raw_sample != h->sps.bit_depth_luma
1382                      || h->cur_chroma_format_idc != h->sps.chroma_format_idc
1383                      || av_cmp_q(h->sps.sar, h->avctx->sample_aspect_ratio)
1384                      || h->mb_width  != h->sps.mb_width
1385                      || h->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag)
1386                     ));
1387     if (non_j_pixfmt(h0->avctx->pix_fmt) != non_j_pixfmt(get_pixel_format(h0, 0)))
1388         must_reinit = 1;
1389
1390     h->mb_width  = h->sps.mb_width;
1391     h->mb_height = h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag);
1392     h->mb_num    = h->mb_width * h->mb_height;
1393     h->mb_stride = h->mb_width + 1;
1394
1395     h->b_stride = h->mb_width * 4;
1396
1397     h->chroma_y_shift = h->sps.chroma_format_idc <= 1; // 400 uses yuv420p
1398
1399     h->width  = 16 * h->mb_width;
1400     h->height = 16 * h->mb_height;
1401
1402     ret = init_dimensions(h);
1403     if (ret < 0)
1404         return ret;
1405
1406     if (h->sps.video_signal_type_present_flag) {
1407         h->avctx->color_range = h->sps.full_range>0 ? AVCOL_RANGE_JPEG
1408                                                     : AVCOL_RANGE_MPEG;
1409         if (h->sps.colour_description_present_flag) {
1410             if (h->avctx->colorspace != h->sps.colorspace)
1411                 needs_reinit = 1;
1412             h->avctx->color_primaries = h->sps.color_primaries;
1413             h->avctx->color_trc       = h->sps.color_trc;
1414             h->avctx->colorspace      = h->sps.colorspace;
1415         }
1416     }
1417
1418     if (h->context_initialized &&
1419         (must_reinit || needs_reinit)) {
1420         if (h != h0) {
1421             av_log(h->avctx, AV_LOG_ERROR,
1422                    "changing width %d -> %d / height %d -> %d on "
1423                    "slice %d\n",
1424                    h->width, h->avctx->coded_width,
1425                    h->height, h->avctx->coded_height,
1426                    h0->current_slice + 1);
1427             return AVERROR_INVALIDDATA;
1428         }
1429
1430         ff_h264_flush_change(h);
1431
1432         if ((ret = get_pixel_format(h, 1)) < 0)
1433             return ret;
1434         h->avctx->pix_fmt = ret;
1435
1436         av_log(h->avctx, AV_LOG_INFO, "Reinit context to %dx%d, "
1437                "pix_fmt: %s\n", h->width, h->height, av_get_pix_fmt_name(h->avctx->pix_fmt));
1438
1439         if ((ret = h264_slice_header_init(h, 1)) < 0) {
1440             av_log(h->avctx, AV_LOG_ERROR,
1441                    "h264_slice_header_init() failed\n");
1442             return ret;
1443         }
1444     }
1445     if (!h->context_initialized) {
1446         if (h != h0) {
1447             av_log(h->avctx, AV_LOG_ERROR,
1448                    "Cannot (re-)initialize context during parallel decoding.\n");
1449             return AVERROR_PATCHWELCOME;
1450         }
1451
1452         if ((ret = get_pixel_format(h, 1)) < 0)
1453             return ret;
1454         h->avctx->pix_fmt = ret;
1455
1456         if ((ret = h264_slice_header_init(h, 0)) < 0) {
1457             av_log(h->avctx, AV_LOG_ERROR,
1458                    "h264_slice_header_init() failed\n");
1459             return ret;
1460         }
1461     }
1462
1463     if (h == h0 && h->dequant_coeff_pps != pps_id) {
1464         h->dequant_coeff_pps = pps_id;
1465         h264_init_dequant_tables(h);
1466     }
1467
1468     h->frame_num = get_bits(&h->gb, h->sps.log2_max_frame_num);
1469
1470     h->mb_mbaff        = 0;
1471     h->mb_aff_frame    = 0;
1472     last_pic_structure = h0->picture_structure;
1473     last_pic_droppable = h0->droppable;
1474     h->droppable       = h->nal_ref_idc == 0;
1475     if (h->sps.frame_mbs_only_flag) {
1476         h->picture_structure = PICT_FRAME;
1477     } else {
1478         if (!h->sps.direct_8x8_inference_flag && slice_type == AV_PICTURE_TYPE_B) {
1479             av_log(h->avctx, AV_LOG_ERROR, "This stream was generated by a broken encoder, invalid 8x8 inference\n");
1480             return -1;
1481         }
1482         field_pic_flag = get_bits1(&h->gb);
1483         if (field_pic_flag) {
1484             bottom_field_flag = get_bits1(&h->gb);
1485             h->picture_structure = PICT_TOP_FIELD + bottom_field_flag;
1486         } else {
1487             h->picture_structure = PICT_FRAME;
1488             h->mb_aff_frame      = h->sps.mb_aff;
1489         }
1490     }
1491     h->mb_field_decoding_flag = h->picture_structure != PICT_FRAME;
1492
1493     if (h0->current_slice != 0) {
1494         if (last_pic_structure != h->picture_structure ||
1495             last_pic_droppable != h->droppable) {
1496             av_log(h->avctx, AV_LOG_ERROR,
1497                    "Changing field mode (%d -> %d) between slices is not allowed\n",
1498                    last_pic_structure, h->picture_structure);
1499             h->picture_structure = last_pic_structure;
1500             h->droppable         = last_pic_droppable;
1501             return AVERROR_INVALIDDATA;
1502         } else if (!h0->cur_pic_ptr) {
1503             av_log(h->avctx, AV_LOG_ERROR,
1504                    "unset cur_pic_ptr on slice %d\n",
1505                    h0->current_slice + 1);
1506             return AVERROR_INVALIDDATA;
1507         }
1508     } else {
1509         /* Shorten frame num gaps so we don't have to allocate reference
1510          * frames just to throw them away */
1511         if (h->frame_num != h->prev_frame_num) {
1512             int unwrap_prev_frame_num = h->prev_frame_num;
1513             int max_frame_num         = 1 << h->sps.log2_max_frame_num;
1514
1515             if (unwrap_prev_frame_num > h->frame_num)
1516                 unwrap_prev_frame_num -= max_frame_num;
1517
1518             if ((h->frame_num - unwrap_prev_frame_num) > h->sps.ref_frame_count) {
1519                 unwrap_prev_frame_num = (h->frame_num - h->sps.ref_frame_count) - 1;
1520                 if (unwrap_prev_frame_num < 0)
1521                     unwrap_prev_frame_num += max_frame_num;
1522
1523                 h->prev_frame_num = unwrap_prev_frame_num;
1524             }
1525         }
1526
1527         /* See if we have a decoded first field looking for a pair...
1528          * Here, we're using that to see if we should mark previously
1529          * decode frames as "finished".
1530          * We have to do that before the "dummy" in-between frame allocation,
1531          * since that can modify h->cur_pic_ptr. */
1532         if (h0->first_field) {
1533             assert(h0->cur_pic_ptr);
1534             assert(h0->cur_pic_ptr->f.buf[0]);
1535             assert(h0->cur_pic_ptr->reference != DELAYED_PIC_REF);
1536
1537             /* Mark old field/frame as completed */
1538             if (h0->cur_pic_ptr->tf.owner == h0->avctx) {
1539                 ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1540                                           last_pic_structure == PICT_BOTTOM_FIELD);
1541             }
1542
1543             /* figure out if we have a complementary field pair */
1544             if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
1545                 /* Previous field is unmatched. Don't display it, but let it
1546                  * remain for reference if marked as such. */
1547                 if (last_pic_structure != PICT_FRAME) {
1548                     ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1549                                               last_pic_structure == PICT_TOP_FIELD);
1550                 }
1551             } else {
1552                 if (h0->cur_pic_ptr->frame_num != h->frame_num) {
1553                     /* This and previous field were reference, but had
1554                      * different frame_nums. Consider this field first in
1555                      * pair. Throw away previous field except for reference
1556                      * purposes. */
1557                     if (last_pic_structure != PICT_FRAME) {
1558                         ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1559                                                   last_pic_structure == PICT_TOP_FIELD);
1560                     }
1561                 } else {
1562                     /* Second field in complementary pair */
1563                     if (!((last_pic_structure   == PICT_TOP_FIELD &&
1564                            h->picture_structure == PICT_BOTTOM_FIELD) ||
1565                           (last_pic_structure   == PICT_BOTTOM_FIELD &&
1566                            h->picture_structure == PICT_TOP_FIELD))) {
1567                         av_log(h->avctx, AV_LOG_ERROR,
1568                                "Invalid field mode combination %d/%d\n",
1569                                last_pic_structure, h->picture_structure);
1570                         h->picture_structure = last_pic_structure;
1571                         h->droppable         = last_pic_droppable;
1572                         return AVERROR_INVALIDDATA;
1573                     } else if (last_pic_droppable != h->droppable) {
1574                         avpriv_request_sample(h->avctx,
1575                                               "Found reference and non-reference fields in the same frame, which");
1576                         h->picture_structure = last_pic_structure;
1577                         h->droppable         = last_pic_droppable;
1578                         return AVERROR_PATCHWELCOME;
1579                     }
1580                 }
1581             }
1582         }
1583
1584         while (h->frame_num != h->prev_frame_num && !h0->first_field &&
1585                h->frame_num != (h->prev_frame_num + 1) % (1 << h->sps.log2_max_frame_num)) {
1586             H264Picture *prev = h->short_ref_count ? h->short_ref[0] : NULL;
1587             av_log(h->avctx, AV_LOG_DEBUG, "Frame num gap %d %d\n",
1588                    h->frame_num, h->prev_frame_num);
1589             if (!h->sps.gaps_in_frame_num_allowed_flag)
1590                 for(i=0; i<FF_ARRAY_ELEMS(h->last_pocs); i++)
1591                     h->last_pocs[i] = INT_MIN;
1592             ret = h264_frame_start(h);
1593             if (ret < 0) {
1594                 h0->first_field = 0;
1595                 return ret;
1596             }
1597
1598             h->prev_frame_num++;
1599             h->prev_frame_num        %= 1 << h->sps.log2_max_frame_num;
1600             h->cur_pic_ptr->frame_num = h->prev_frame_num;
1601             h->cur_pic_ptr->invalid_gap = !h->sps.gaps_in_frame_num_allowed_flag;
1602             ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 0);
1603             ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 1);
1604             ret = ff_generate_sliding_window_mmcos(h, 1);
1605             if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1606                 return ret;
1607             ret = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
1608             if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1609                 return ret;
1610             /* Error concealment: If a ref is missing, copy the previous ref
1611              * in its place.
1612              * FIXME: Avoiding a memcpy would be nice, but ref handling makes
1613              * many assumptions about there being no actual duplicates.
1614              * FIXME: This does not copy padding for out-of-frame motion
1615              * vectors.  Given we are concealing a lost frame, this probably
1616              * is not noticeable by comparison, but it should be fixed. */
1617             if (h->short_ref_count) {
1618                 if (prev) {
1619                     av_image_copy(h->short_ref[0]->f.data,
1620                                   h->short_ref[0]->f.linesize,
1621                                   (const uint8_t **)prev->f.data,
1622                                   prev->f.linesize,
1623                                   h->avctx->pix_fmt,
1624                                   h->mb_width  * 16,
1625                                   h->mb_height * 16);
1626                     h->short_ref[0]->poc = prev->poc + 2;
1627                 }
1628                 h->short_ref[0]->frame_num = h->prev_frame_num;
1629             }
1630         }
1631
1632         /* See if we have a decoded first field looking for a pair...
1633          * We're using that to see whether to continue decoding in that
1634          * frame, or to allocate a new one. */
1635         if (h0->first_field) {
1636             assert(h0->cur_pic_ptr);
1637             assert(h0->cur_pic_ptr->f.buf[0]);
1638             assert(h0->cur_pic_ptr->reference != DELAYED_PIC_REF);
1639
1640             /* figure out if we have a complementary field pair */
1641             if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
1642                 /* Previous field is unmatched. Don't display it, but let it
1643                  * remain for reference if marked as such. */
1644                 h0->cur_pic_ptr = NULL;
1645                 h0->first_field = FIELD_PICTURE(h);
1646             } else {
1647                 if (h0->cur_pic_ptr->frame_num != h->frame_num) {
1648                     ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1649                                               h0->picture_structure==PICT_BOTTOM_FIELD);
1650                     /* This and the previous field had different frame_nums.
1651                      * Consider this field first in pair. Throw away previous
1652                      * one except for reference purposes. */
1653                     h0->first_field = 1;
1654                     h0->cur_pic_ptr = NULL;
1655                 } else {
1656                     /* Second field in complementary pair */
1657                     h0->first_field = 0;
1658                 }
1659             }
1660         } else {
1661             /* Frame or first field in a potentially complementary pair */
1662             h0->first_field = FIELD_PICTURE(h);
1663         }
1664
1665         if (!FIELD_PICTURE(h) || h0->first_field) {
1666             if (h264_frame_start(h) < 0) {
1667                 h0->first_field = 0;
1668                 return AVERROR_INVALIDDATA;
1669             }
1670         } else {
1671             release_unused_pictures(h, 0);
1672         }
1673         /* Some macroblocks can be accessed before they're available in case
1674         * of lost slices, MBAFF or threading. */
1675         if (FIELD_PICTURE(h)) {
1676             for(i = (h->picture_structure == PICT_BOTTOM_FIELD); i<h->mb_height; i++)
1677                 memset(h->slice_table + i*h->mb_stride, -1, (h->mb_stride - (i+1==h->mb_height)) * sizeof(*h->slice_table));
1678         } else {
1679             memset(h->slice_table, -1,
1680                 (h->mb_height * h->mb_stride - 1) * sizeof(*h->slice_table));
1681         }
1682         h0->last_slice_type = -1;
1683     }
1684     if (h != h0 && (ret = clone_slice(h, h0)) < 0)
1685         return ret;
1686
1687     /* can't be in alloc_tables because linesize isn't known there.
1688      * FIXME: redo bipred weight to not require extra buffer? */
1689     for (i = 0; i < h->slice_context_count; i++)
1690         if (h->thread_context[i]) {
1691             ret = alloc_scratch_buffers(h->thread_context[i], h->linesize);
1692             if (ret < 0)
1693                 return ret;
1694         }
1695
1696     h->cur_pic_ptr->frame_num = h->frame_num; // FIXME frame_num cleanup
1697
1698     av_assert1(h->mb_num == h->mb_width * h->mb_height);
1699     if (first_mb_in_slice << FIELD_OR_MBAFF_PICTURE(h) >= h->mb_num ||
1700         first_mb_in_slice >= h->mb_num) {
1701         av_log(h->avctx, AV_LOG_ERROR, "first_mb_in_slice overflow\n");
1702         return AVERROR_INVALIDDATA;
1703     }
1704     h->resync_mb_x = h->mb_x =  first_mb_in_slice % h->mb_width;
1705     h->resync_mb_y = h->mb_y = (first_mb_in_slice / h->mb_width) <<
1706                                FIELD_OR_MBAFF_PICTURE(h);
1707     if (h->picture_structure == PICT_BOTTOM_FIELD)
1708         h->resync_mb_y = h->mb_y = h->mb_y + 1;
1709     av_assert1(h->mb_y < h->mb_height);
1710
1711     if (h->picture_structure == PICT_FRAME) {
1712         h->curr_pic_num = h->frame_num;
1713         h->max_pic_num  = 1 << h->sps.log2_max_frame_num;
1714     } else {
1715         h->curr_pic_num = 2 * h->frame_num + 1;
1716         h->max_pic_num  = 1 << (h->sps.log2_max_frame_num + 1);
1717     }
1718
1719     if (h->nal_unit_type == NAL_IDR_SLICE)
1720         get_ue_golomb(&h->gb); /* idr_pic_id */
1721
1722     if (h->sps.poc_type == 0) {
1723         h->poc_lsb = get_bits(&h->gb, h->sps.log2_max_poc_lsb);
1724
1725         if (h->pps.pic_order_present == 1 && h->picture_structure == PICT_FRAME)
1726             h->delta_poc_bottom = get_se_golomb(&h->gb);
1727     }
1728
1729     if (h->sps.poc_type == 1 && !h->sps.delta_pic_order_always_zero_flag) {
1730         h->delta_poc[0] = get_se_golomb(&h->gb);
1731
1732         if (h->pps.pic_order_present == 1 && h->picture_structure == PICT_FRAME)
1733             h->delta_poc[1] = get_se_golomb(&h->gb);
1734     }
1735
1736     ff_init_poc(h, h->cur_pic_ptr->field_poc, &h->cur_pic_ptr->poc);
1737
1738     if (h->pps.redundant_pic_cnt_present)
1739         h->redundant_pic_count = get_ue_golomb(&h->gb);
1740
1741     ret = ff_set_ref_count(h);
1742     if (ret < 0)
1743         return ret;
1744
1745     if (slice_type != AV_PICTURE_TYPE_I &&
1746         (h0->current_slice == 0 ||
1747          slice_type != h0->last_slice_type ||
1748          memcmp(h0->last_ref_count, h0->ref_count, sizeof(h0->ref_count)))) {
1749
1750         ff_h264_fill_default_ref_list(h);
1751     }
1752
1753     if (h->slice_type_nos != AV_PICTURE_TYPE_I) {
1754        ret = ff_h264_decode_ref_pic_list_reordering(h);
1755        if (ret < 0) {
1756            h->ref_count[1] = h->ref_count[0] = 0;
1757            return ret;
1758        }
1759     }
1760
1761     if ((h->pps.weighted_pred && h->slice_type_nos == AV_PICTURE_TYPE_P) ||
1762         (h->pps.weighted_bipred_idc == 1 &&
1763          h->slice_type_nos == AV_PICTURE_TYPE_B))
1764         ff_pred_weight_table(h);
1765     else if (h->pps.weighted_bipred_idc == 2 &&
1766              h->slice_type_nos == AV_PICTURE_TYPE_B) {
1767         implicit_weight_table(h, -1);
1768     } else {
1769         h->use_weight = 0;
1770         for (i = 0; i < 2; i++) {
1771             h->luma_weight_flag[i]   = 0;
1772             h->chroma_weight_flag[i] = 0;
1773         }
1774     }
1775
1776     // If frame-mt is enabled, only update mmco tables for the first slice
1777     // in a field. Subsequent slices can temporarily clobber h->mmco_index
1778     // or h->mmco, which will cause ref list mix-ups and decoding errors
1779     // further down the line. This may break decoding if the first slice is
1780     // corrupt, thus we only do this if frame-mt is enabled.
1781     if (h->nal_ref_idc) {
1782         ret = ff_h264_decode_ref_pic_marking(h0, &h->gb,
1783                                              !(h->avctx->active_thread_type & FF_THREAD_FRAME) ||
1784                                              h0->current_slice == 0);
1785         if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1786             return AVERROR_INVALIDDATA;
1787     }
1788
1789     if (FRAME_MBAFF(h)) {
1790         ff_h264_fill_mbaff_ref_list(h);
1791
1792         if (h->pps.weighted_bipred_idc == 2 && h->slice_type_nos == AV_PICTURE_TYPE_B) {
1793             implicit_weight_table(h, 0);
1794             implicit_weight_table(h, 1);
1795         }
1796     }
1797
1798     if (h->slice_type_nos == AV_PICTURE_TYPE_B && !h->direct_spatial_mv_pred)
1799         ff_h264_direct_dist_scale_factor(h);
1800     ff_h264_direct_ref_list_init(h);
1801
1802     if (h->slice_type_nos != AV_PICTURE_TYPE_I && h->pps.cabac) {
1803         tmp = get_ue_golomb_31(&h->gb);
1804         if (tmp > 2) {
1805             av_log(h->avctx, AV_LOG_ERROR, "cabac_init_idc %u overflow\n", tmp);
1806             return AVERROR_INVALIDDATA;
1807         }
1808         h->cabac_init_idc = tmp;
1809     }
1810
1811     h->last_qscale_diff = 0;
1812     tmp = h->pps.init_qp + get_se_golomb(&h->gb);
1813     if (tmp > 51 + 6 * (h->sps.bit_depth_luma - 8)) {
1814         av_log(h->avctx, AV_LOG_ERROR, "QP %u out of range\n", tmp);
1815         return AVERROR_INVALIDDATA;
1816     }
1817     h->qscale       = tmp;
1818     h->chroma_qp[0] = get_chroma_qp(h, 0, h->qscale);
1819     h->chroma_qp[1] = get_chroma_qp(h, 1, h->qscale);
1820     // FIXME qscale / qp ... stuff
1821     if (h->slice_type == AV_PICTURE_TYPE_SP)
1822         get_bits1(&h->gb); /* sp_for_switch_flag */
1823     if (h->slice_type == AV_PICTURE_TYPE_SP ||
1824         h->slice_type == AV_PICTURE_TYPE_SI)
1825         get_se_golomb(&h->gb); /* slice_qs_delta */
1826
1827     h->deblocking_filter     = 1;
1828     h->slice_alpha_c0_offset = 0;
1829     h->slice_beta_offset     = 0;
1830     if (h->pps.deblocking_filter_parameters_present) {
1831         tmp = get_ue_golomb_31(&h->gb);
1832         if (tmp > 2) {
1833             av_log(h->avctx, AV_LOG_ERROR,
1834                    "deblocking_filter_idc %u out of range\n", tmp);
1835             return AVERROR_INVALIDDATA;
1836         }
1837         h->deblocking_filter = tmp;
1838         if (h->deblocking_filter < 2)
1839             h->deblocking_filter ^= 1;  // 1<->0
1840
1841         if (h->deblocking_filter) {
1842             h->slice_alpha_c0_offset = get_se_golomb(&h->gb) * 2;
1843             h->slice_beta_offset     = get_se_golomb(&h->gb) * 2;
1844             if (h->slice_alpha_c0_offset >  12 ||
1845                 h->slice_alpha_c0_offset < -12 ||
1846                 h->slice_beta_offset >  12     ||
1847                 h->slice_beta_offset < -12) {
1848                 av_log(h->avctx, AV_LOG_ERROR,
1849                        "deblocking filter parameters %d %d out of range\n",
1850                        h->slice_alpha_c0_offset, h->slice_beta_offset);
1851                 return AVERROR_INVALIDDATA;
1852             }
1853         }
1854     }
1855
1856     if (h->avctx->skip_loop_filter >= AVDISCARD_ALL ||
1857         (h->avctx->skip_loop_filter >= AVDISCARD_NONKEY &&
1858          h->slice_type_nos != AV_PICTURE_TYPE_I) ||
1859         (h->avctx->skip_loop_filter >= AVDISCARD_BIDIR  &&
1860          h->slice_type_nos == AV_PICTURE_TYPE_B) ||
1861         (h->avctx->skip_loop_filter >= AVDISCARD_NONREF &&
1862          h->nal_ref_idc == 0))
1863         h->deblocking_filter = 0;
1864
1865     if (h->deblocking_filter == 1 && h0->max_contexts > 1) {
1866         if (h->avctx->flags2 & CODEC_FLAG2_FAST) {
1867             /* Cheat slightly for speed:
1868              * Do not bother to deblock across slices. */
1869             h->deblocking_filter = 2;
1870         } else {
1871             h0->max_contexts = 1;
1872             if (!h0->single_decode_warning) {
1873                 av_log(h->avctx, AV_LOG_INFO,
1874                        "Cannot parallelize deblocking type 1, decoding such frames in sequential order\n");
1875                 h0->single_decode_warning = 1;
1876             }
1877             if (h != h0) {
1878                 av_log(h->avctx, AV_LOG_ERROR,
1879                        "Deblocking switched inside frame.\n");
1880                 return 1;
1881             }
1882         }
1883     }
1884     h->qp_thresh = 15 -
1885                    FFMIN(h->slice_alpha_c0_offset, h->slice_beta_offset) -
1886                    FFMAX3(0,
1887                           h->pps.chroma_qp_index_offset[0],
1888                           h->pps.chroma_qp_index_offset[1]) +
1889                    6 * (h->sps.bit_depth_luma - 8);
1890
1891     h0->last_slice_type = slice_type;
1892     memcpy(h0->last_ref_count, h0->ref_count, sizeof(h0->last_ref_count));
1893     h->slice_num        = ++h0->current_slice;
1894
1895     if (h->slice_num)
1896         h0->slice_row[(h->slice_num-1)&(MAX_SLICES-1)]= h->resync_mb_y;
1897     if (   h0->slice_row[h->slice_num&(MAX_SLICES-1)] + 3 >= h->resync_mb_y
1898         && h0->slice_row[h->slice_num&(MAX_SLICES-1)] <= h->resync_mb_y
1899         && h->slice_num >= MAX_SLICES) {
1900         //in case of ASO this check needs to be updated depending on how we decide to assign slice numbers in this case
1901         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);
1902     }
1903
1904     for (j = 0; j < 2; j++) {
1905         int id_list[16];
1906         int *ref2frm = h->ref2frm[h->slice_num & (MAX_SLICES - 1)][j];
1907         for (i = 0; i < 16; i++) {
1908             id_list[i] = 60;
1909             if (j < h->list_count && i < h->ref_count[j] &&
1910                 h->ref_list[j][i].f.buf[0]) {
1911                 int k;
1912                 AVBuffer *buf = h->ref_list[j][i].f.buf[0]->buffer;
1913                 for (k = 0; k < h->short_ref_count; k++)
1914                     if (h->short_ref[k]->f.buf[0]->buffer == buf) {
1915                         id_list[i] = k;
1916                         break;
1917                     }
1918                 for (k = 0; k < h->long_ref_count; k++)
1919                     if (h->long_ref[k] && h->long_ref[k]->f.buf[0]->buffer == buf) {
1920                         id_list[i] = h->short_ref_count + k;
1921                         break;
1922                     }
1923             }
1924         }
1925
1926         ref2frm[0] =
1927         ref2frm[1] = -1;
1928         for (i = 0; i < 16; i++)
1929             ref2frm[i + 2] = 4 * id_list[i] + (h->ref_list[j][i].reference & 3);
1930         ref2frm[18 + 0] =
1931         ref2frm[18 + 1] = -1;
1932         for (i = 16; i < 48; i++)
1933             ref2frm[i + 4] = 4 * id_list[(i - 16) >> 1] +
1934                              (h->ref_list[j][i].reference & 3);
1935     }
1936
1937     if (h->ref_count[0]) ff_h264_set_erpic(&h->er.last_pic, &h->ref_list[0][0]);
1938     if (h->ref_count[1]) ff_h264_set_erpic(&h->er.next_pic, &h->ref_list[1][0]);
1939
1940     h->er.ref_count = h->ref_count[0];
1941     h0->au_pps_id = pps_id;
1942     h->sps.new =
1943     h0->sps_buffers[h->pps.sps_id]->new = 0;
1944     h->current_sps_id = h->pps.sps_id;
1945
1946     if (h->avctx->debug & FF_DEBUG_PICT_INFO) {
1947         av_log(h->avctx, AV_LOG_DEBUG,
1948                "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",
1949                h->slice_num,
1950                (h->picture_structure == PICT_FRAME ? "F" : h->picture_structure == PICT_TOP_FIELD ? "T" : "B"),
1951                first_mb_in_slice,
1952                av_get_picture_type_char(h->slice_type),
1953                h->slice_type_fixed ? " fix" : "",
1954                h->nal_unit_type == NAL_IDR_SLICE ? " IDR" : "",
1955                pps_id, h->frame_num,
1956                h->cur_pic_ptr->field_poc[0],
1957                h->cur_pic_ptr->field_poc[1],
1958                h->ref_count[0], h->ref_count[1],
1959                h->qscale,
1960                h->deblocking_filter,
1961                h->slice_alpha_c0_offset, h->slice_beta_offset,
1962                h->use_weight,
1963                h->use_weight == 1 && h->use_weight_chroma ? "c" : "",
1964                h->slice_type == AV_PICTURE_TYPE_B ? (h->direct_spatial_mv_pred ? "SPAT" : "TEMP") : "");
1965     }
1966
1967     return 0;
1968 }
1969
1970 int ff_h264_get_slice_type(const H264Context *h)
1971 {
1972     switch (h->slice_type) {
1973     case AV_PICTURE_TYPE_P:
1974         return 0;
1975     case AV_PICTURE_TYPE_B:
1976         return 1;
1977     case AV_PICTURE_TYPE_I:
1978         return 2;
1979     case AV_PICTURE_TYPE_SP:
1980         return 3;
1981     case AV_PICTURE_TYPE_SI:
1982         return 4;
1983     default:
1984         return AVERROR_INVALIDDATA;
1985     }
1986 }
1987
1988 static av_always_inline void fill_filter_caches_inter(H264Context *h,
1989                                                       int mb_type, int top_xy,
1990                                                       int left_xy[LEFT_MBS],
1991                                                       int top_type,
1992                                                       int left_type[LEFT_MBS],
1993                                                       int mb_xy, int list)
1994 {
1995     int b_stride = h->b_stride;
1996     int16_t(*mv_dst)[2] = &h->mv_cache[list][scan8[0]];
1997     int8_t *ref_cache = &h->ref_cache[list][scan8[0]];
1998     if (IS_INTER(mb_type) || IS_DIRECT(mb_type)) {
1999         if (USES_LIST(top_type, list)) {
2000             const int b_xy  = h->mb2b_xy[top_xy] + 3 * b_stride;
2001             const int b8_xy = 4 * top_xy + 2;
2002             int (*ref2frm)[64] = (void*)(h->ref2frm[h->slice_table[top_xy] & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
2003             AV_COPY128(mv_dst - 1 * 8, h->cur_pic.motion_val[list][b_xy + 0]);
2004             ref_cache[0 - 1 * 8] =
2005             ref_cache[1 - 1 * 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 0]];
2006             ref_cache[2 - 1 * 8] =
2007             ref_cache[3 - 1 * 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 1]];
2008         } else {
2009             AV_ZERO128(mv_dst - 1 * 8);
2010             AV_WN32A(&ref_cache[0 - 1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2011         }
2012
2013         if (!IS_INTERLACED(mb_type ^ left_type[LTOP])) {
2014             if (USES_LIST(left_type[LTOP], list)) {
2015                 const int b_xy  = h->mb2b_xy[left_xy[LTOP]] + 3;
2016                 const int b8_xy = 4 * left_xy[LTOP] + 1;
2017                 int (*ref2frm)[64] =(void*)( h->ref2frm[h->slice_table[left_xy[LTOP]] & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
2018                 AV_COPY32(mv_dst - 1 +  0, h->cur_pic.motion_val[list][b_xy + b_stride * 0]);
2019                 AV_COPY32(mv_dst - 1 +  8, h->cur_pic.motion_val[list][b_xy + b_stride * 1]);
2020                 AV_COPY32(mv_dst - 1 + 16, h->cur_pic.motion_val[list][b_xy + b_stride * 2]);
2021                 AV_COPY32(mv_dst - 1 + 24, h->cur_pic.motion_val[list][b_xy + b_stride * 3]);
2022                 ref_cache[-1 +  0] =
2023                 ref_cache[-1 +  8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 2 * 0]];
2024                 ref_cache[-1 + 16] =
2025                 ref_cache[-1 + 24] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 2 * 1]];
2026             } else {
2027                 AV_ZERO32(mv_dst - 1 +  0);
2028                 AV_ZERO32(mv_dst - 1 +  8);
2029                 AV_ZERO32(mv_dst - 1 + 16);
2030                 AV_ZERO32(mv_dst - 1 + 24);
2031                 ref_cache[-1 +  0] =
2032                 ref_cache[-1 +  8] =
2033                 ref_cache[-1 + 16] =
2034                 ref_cache[-1 + 24] = LIST_NOT_USED;
2035             }
2036         }
2037     }
2038
2039     if (!USES_LIST(mb_type, list)) {
2040         fill_rectangle(mv_dst, 4, 4, 8, pack16to32(0, 0), 4);
2041         AV_WN32A(&ref_cache[0 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2042         AV_WN32A(&ref_cache[1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2043         AV_WN32A(&ref_cache[2 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2044         AV_WN32A(&ref_cache[3 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2045         return;
2046     }
2047
2048     {
2049         int8_t *ref = &h->cur_pic.ref_index[list][4 * mb_xy];
2050         int (*ref2frm)[64] = (void*)(h->ref2frm[h->slice_num & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
2051         uint32_t ref01 = (pack16to32(ref2frm[list][ref[0]], ref2frm[list][ref[1]]) & 0x00FF00FF) * 0x0101;
2052         uint32_t ref23 = (pack16to32(ref2frm[list][ref[2]], ref2frm[list][ref[3]]) & 0x00FF00FF) * 0x0101;
2053         AV_WN32A(&ref_cache[0 * 8], ref01);
2054         AV_WN32A(&ref_cache[1 * 8], ref01);
2055         AV_WN32A(&ref_cache[2 * 8], ref23);
2056         AV_WN32A(&ref_cache[3 * 8], ref23);
2057     }
2058
2059     {
2060         int16_t(*mv_src)[2] = &h->cur_pic.motion_val[list][4 * h->mb_x + 4 * h->mb_y * b_stride];
2061         AV_COPY128(mv_dst + 8 * 0, mv_src + 0 * b_stride);
2062         AV_COPY128(mv_dst + 8 * 1, mv_src + 1 * b_stride);
2063         AV_COPY128(mv_dst + 8 * 2, mv_src + 2 * b_stride);
2064         AV_COPY128(mv_dst + 8 * 3, mv_src + 3 * b_stride);
2065     }
2066 }
2067
2068 /**
2069  *
2070  * @return non zero if the loop filter can be skipped
2071  */
2072 static int fill_filter_caches(H264Context *h, int mb_type)
2073 {
2074     const int mb_xy = h->mb_xy;
2075     int top_xy, left_xy[LEFT_MBS];
2076     int top_type, left_type[LEFT_MBS];
2077     uint8_t *nnz;
2078     uint8_t *nnz_cache;
2079
2080     top_xy = mb_xy - (h->mb_stride << MB_FIELD(h));
2081
2082     /* Wow, what a mess, why didn't they simplify the interlacing & intra
2083      * stuff, I can't imagine that these complex rules are worth it. */
2084
2085     left_xy[LBOT] = left_xy[LTOP] = mb_xy - 1;
2086     if (FRAME_MBAFF(h)) {
2087         const int left_mb_field_flag = IS_INTERLACED(h->cur_pic.mb_type[mb_xy - 1]);
2088         const int curr_mb_field_flag = IS_INTERLACED(mb_type);
2089         if (h->mb_y & 1) {
2090             if (left_mb_field_flag != curr_mb_field_flag)
2091                 left_xy[LTOP] -= h->mb_stride;
2092         } else {
2093             if (curr_mb_field_flag)
2094                 top_xy += h->mb_stride &
2095                           (((h->cur_pic.mb_type[top_xy] >> 7) & 1) - 1);
2096             if (left_mb_field_flag != curr_mb_field_flag)
2097                 left_xy[LBOT] += h->mb_stride;
2098         }
2099     }
2100
2101     h->top_mb_xy        = top_xy;
2102     h->left_mb_xy[LTOP] = left_xy[LTOP];
2103     h->left_mb_xy[LBOT] = left_xy[LBOT];
2104     {
2105         /* For sufficiently low qp, filtering wouldn't do anything.
2106          * This is a conservative estimate: could also check beta_offset
2107          * and more accurate chroma_qp. */
2108         int qp_thresh = h->qp_thresh; // FIXME strictly we should store qp_thresh for each mb of a slice
2109         int qp        = h->cur_pic.qscale_table[mb_xy];
2110         if (qp <= qp_thresh &&
2111             (left_xy[LTOP] < 0 ||
2112              ((qp + h->cur_pic.qscale_table[left_xy[LTOP]] + 1) >> 1) <= qp_thresh) &&
2113             (top_xy < 0 ||
2114              ((qp + h->cur_pic.qscale_table[top_xy] + 1) >> 1) <= qp_thresh)) {
2115             if (!FRAME_MBAFF(h))
2116                 return 1;
2117             if ((left_xy[LTOP] < 0 ||
2118                  ((qp + h->cur_pic.qscale_table[left_xy[LBOT]] + 1) >> 1) <= qp_thresh) &&
2119                 (top_xy < h->mb_stride ||
2120                  ((qp + h->cur_pic.qscale_table[top_xy - h->mb_stride] + 1) >> 1) <= qp_thresh))
2121                 return 1;
2122         }
2123     }
2124
2125     top_type        = h->cur_pic.mb_type[top_xy];
2126     left_type[LTOP] = h->cur_pic.mb_type[left_xy[LTOP]];
2127     left_type[LBOT] = h->cur_pic.mb_type[left_xy[LBOT]];
2128     if (h->deblocking_filter == 2) {
2129         if (h->slice_table[top_xy] != h->slice_num)
2130             top_type = 0;
2131         if (h->slice_table[left_xy[LBOT]] != h->slice_num)
2132             left_type[LTOP] = left_type[LBOT] = 0;
2133     } else {
2134         if (h->slice_table[top_xy] == 0xFFFF)
2135             top_type = 0;
2136         if (h->slice_table[left_xy[LBOT]] == 0xFFFF)
2137             left_type[LTOP] = left_type[LBOT] = 0;
2138     }
2139     h->top_type        = top_type;
2140     h->left_type[LTOP] = left_type[LTOP];
2141     h->left_type[LBOT] = left_type[LBOT];
2142
2143     if (IS_INTRA(mb_type))
2144         return 0;
2145
2146     fill_filter_caches_inter(h, mb_type, top_xy, left_xy,
2147                              top_type, left_type, mb_xy, 0);
2148     if (h->list_count == 2)
2149         fill_filter_caches_inter(h, mb_type, top_xy, left_xy,
2150                                  top_type, left_type, mb_xy, 1);
2151
2152     nnz       = h->non_zero_count[mb_xy];
2153     nnz_cache = h->non_zero_count_cache;
2154     AV_COPY32(&nnz_cache[4 + 8 * 1], &nnz[0]);
2155     AV_COPY32(&nnz_cache[4 + 8 * 2], &nnz[4]);
2156     AV_COPY32(&nnz_cache[4 + 8 * 3], &nnz[8]);
2157     AV_COPY32(&nnz_cache[4 + 8 * 4], &nnz[12]);
2158     h->cbp = h->cbp_table[mb_xy];
2159
2160     if (top_type) {
2161         nnz = h->non_zero_count[top_xy];
2162         AV_COPY32(&nnz_cache[4 + 8 * 0], &nnz[3 * 4]);
2163     }
2164
2165     if (left_type[LTOP]) {
2166         nnz = h->non_zero_count[left_xy[LTOP]];
2167         nnz_cache[3 + 8 * 1] = nnz[3 + 0 * 4];
2168         nnz_cache[3 + 8 * 2] = nnz[3 + 1 * 4];
2169         nnz_cache[3 + 8 * 3] = nnz[3 + 2 * 4];
2170         nnz_cache[3 + 8 * 4] = nnz[3 + 3 * 4];
2171     }
2172
2173     /* CAVLC 8x8dct requires NNZ values for residual decoding that differ
2174      * from what the loop filter needs */
2175     if (!CABAC(h) && h->pps.transform_8x8_mode) {
2176         if (IS_8x8DCT(top_type)) {
2177             nnz_cache[4 + 8 * 0] =
2178             nnz_cache[5 + 8 * 0] = (h->cbp_table[top_xy] & 0x4000) >> 12;
2179             nnz_cache[6 + 8 * 0] =
2180             nnz_cache[7 + 8 * 0] = (h->cbp_table[top_xy] & 0x8000) >> 12;
2181         }
2182         if (IS_8x8DCT(left_type[LTOP])) {
2183             nnz_cache[3 + 8 * 1] =
2184             nnz_cache[3 + 8 * 2] = (h->cbp_table[left_xy[LTOP]] & 0x2000) >> 12; // FIXME check MBAFF
2185         }
2186         if (IS_8x8DCT(left_type[LBOT])) {
2187             nnz_cache[3 + 8 * 3] =
2188             nnz_cache[3 + 8 * 4] = (h->cbp_table[left_xy[LBOT]] & 0x8000) >> 12; // FIXME check MBAFF
2189         }
2190
2191         if (IS_8x8DCT(mb_type)) {
2192             nnz_cache[scan8[0]] =
2193             nnz_cache[scan8[1]] =
2194             nnz_cache[scan8[2]] =
2195             nnz_cache[scan8[3]] = (h->cbp & 0x1000) >> 12;
2196
2197             nnz_cache[scan8[0 + 4]] =
2198             nnz_cache[scan8[1 + 4]] =
2199             nnz_cache[scan8[2 + 4]] =
2200             nnz_cache[scan8[3 + 4]] = (h->cbp & 0x2000) >> 12;
2201
2202             nnz_cache[scan8[0 + 8]] =
2203             nnz_cache[scan8[1 + 8]] =
2204             nnz_cache[scan8[2 + 8]] =
2205             nnz_cache[scan8[3 + 8]] = (h->cbp & 0x4000) >> 12;
2206
2207             nnz_cache[scan8[0 + 12]] =
2208             nnz_cache[scan8[1 + 12]] =
2209             nnz_cache[scan8[2 + 12]] =
2210             nnz_cache[scan8[3 + 12]] = (h->cbp & 0x8000) >> 12;
2211         }
2212     }
2213
2214     return 0;
2215 }
2216
2217 static void loop_filter(H264Context *h, int start_x, int end_x)
2218 {
2219     uint8_t *dest_y, *dest_cb, *dest_cr;
2220     int linesize, uvlinesize, mb_x, mb_y;
2221     const int end_mb_y       = h->mb_y + FRAME_MBAFF(h);
2222     const int old_slice_type = h->slice_type;
2223     const int pixel_shift    = h->pixel_shift;
2224     const int block_h        = 16 >> h->chroma_y_shift;
2225
2226     if (h->deblocking_filter) {
2227         for (mb_x = start_x; mb_x < end_x; mb_x++)
2228             for (mb_y = end_mb_y - FRAME_MBAFF(h); mb_y <= end_mb_y; mb_y++) {
2229                 int mb_xy, mb_type;
2230                 mb_xy         = h->mb_xy = mb_x + mb_y * h->mb_stride;
2231                 h->slice_num  = h->slice_table[mb_xy];
2232                 mb_type       = h->cur_pic.mb_type[mb_xy];
2233                 h->list_count = h->list_counts[mb_xy];
2234
2235                 if (FRAME_MBAFF(h))
2236                     h->mb_mbaff               =
2237                     h->mb_field_decoding_flag = !!IS_INTERLACED(mb_type);
2238
2239                 h->mb_x = mb_x;
2240                 h->mb_y = mb_y;
2241                 dest_y  = h->cur_pic.f.data[0] +
2242                           ((mb_x << pixel_shift) + mb_y * h->linesize) * 16;
2243                 dest_cb = h->cur_pic.f.data[1] +
2244                           (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
2245                           mb_y * h->uvlinesize * block_h;
2246                 dest_cr = h->cur_pic.f.data[2] +
2247                           (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
2248                           mb_y * h->uvlinesize * block_h;
2249                 // FIXME simplify above
2250
2251                 if (MB_FIELD(h)) {
2252                     linesize   = h->mb_linesize   = h->linesize   * 2;
2253                     uvlinesize = h->mb_uvlinesize = h->uvlinesize * 2;
2254                     if (mb_y & 1) { // FIXME move out of this function?
2255                         dest_y  -= h->linesize   * 15;
2256                         dest_cb -= h->uvlinesize * (block_h - 1);
2257                         dest_cr -= h->uvlinesize * (block_h - 1);
2258                     }
2259                 } else {
2260                     linesize   = h->mb_linesize   = h->linesize;
2261                     uvlinesize = h->mb_uvlinesize = h->uvlinesize;
2262                 }
2263                 backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize,
2264                                  uvlinesize, 0);
2265                 if (fill_filter_caches(h, mb_type))
2266                     continue;
2267                 h->chroma_qp[0] = get_chroma_qp(h, 0, h->cur_pic.qscale_table[mb_xy]);
2268                 h->chroma_qp[1] = get_chroma_qp(h, 1, h->cur_pic.qscale_table[mb_xy]);
2269
2270                 if (FRAME_MBAFF(h)) {
2271                     ff_h264_filter_mb(h, mb_x, mb_y, dest_y, dest_cb, dest_cr,
2272                                       linesize, uvlinesize);
2273                 } else {
2274                     ff_h264_filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb,
2275                                            dest_cr, linesize, uvlinesize);
2276                 }
2277             }
2278     }
2279     h->slice_type   = old_slice_type;
2280     h->mb_x         = end_x;
2281     h->mb_y         = end_mb_y - FRAME_MBAFF(h);
2282     h->chroma_qp[0] = get_chroma_qp(h, 0, h->qscale);
2283     h->chroma_qp[1] = get_chroma_qp(h, 1, h->qscale);
2284 }
2285
2286 static void predict_field_decoding_flag(H264Context *h)
2287 {
2288     const int mb_xy = h->mb_x + h->mb_y * h->mb_stride;
2289     int mb_type     = (h->slice_table[mb_xy - 1] == h->slice_num) ?
2290                       h->cur_pic.mb_type[mb_xy - 1] :
2291                       (h->slice_table[mb_xy - h->mb_stride] == h->slice_num) ?
2292                       h->cur_pic.mb_type[mb_xy - h->mb_stride] : 0;
2293     h->mb_mbaff     = h->mb_field_decoding_flag = IS_INTERLACED(mb_type) ? 1 : 0;
2294 }
2295
2296 /**
2297  * Draw edges and report progress for the last MB row.
2298  */
2299 static void decode_finish_row(H264Context *h)
2300 {
2301     int top            = 16 * (h->mb_y      >> FIELD_PICTURE(h));
2302     int pic_height     = 16 *  h->mb_height >> FIELD_PICTURE(h);
2303     int height         =  16      << FRAME_MBAFF(h);
2304     int deblock_border = (16 + 4) << FRAME_MBAFF(h);
2305
2306     if (h->deblocking_filter) {
2307         if ((top + height) >= pic_height)
2308             height += deblock_border;
2309         top -= deblock_border;
2310     }
2311
2312     if (top >= pic_height || (top + height) < 0)
2313         return;
2314
2315     height = FFMIN(height, pic_height - top);
2316     if (top < 0) {
2317         height = top + height;
2318         top    = 0;
2319     }
2320
2321     ff_h264_draw_horiz_band(h, top, height);
2322
2323     if (h->droppable || h->er.error_occurred)
2324         return;
2325
2326     ff_thread_report_progress(&h->cur_pic_ptr->tf, top + height - 1,
2327                               h->picture_structure == PICT_BOTTOM_FIELD);
2328 }
2329
2330 static void er_add_slice(H264Context *h, int startx, int starty,
2331                          int endx, int endy, int status)
2332 {
2333     if (CONFIG_ERROR_RESILIENCE) {
2334         ERContext *er = &h->er;
2335
2336         ff_er_add_slice(er, startx, starty, endx, endy, status);
2337     }
2338 }
2339
2340 static int decode_slice(struct AVCodecContext *avctx, void *arg)
2341 {
2342     H264Context *h = *(void **)arg;
2343     int lf_x_start = h->mb_x;
2344
2345     h->mb_skip_run = -1;
2346
2347     av_assert0(h->block_offset[15] == (4 * ((scan8[15] - scan8[0]) & 7) << h->pixel_shift) + 4 * h->linesize * ((scan8[15] - scan8[0]) >> 3));
2348
2349     h->is_complex = FRAME_MBAFF(h) || h->picture_structure != PICT_FRAME ||
2350                     avctx->codec_id != AV_CODEC_ID_H264 ||
2351                     (CONFIG_GRAY && (h->flags & CODEC_FLAG_GRAY));
2352
2353     if (!(h->avctx->active_thread_type & FF_THREAD_SLICE) && h->picture_structure == PICT_FRAME && h->er.error_status_table) {
2354         const int start_i  = av_clip(h->resync_mb_x + h->resync_mb_y * h->mb_width, 0, h->mb_num - 1);
2355         if (start_i) {
2356             int prev_status = h->er.error_status_table[h->er.mb_index2xy[start_i - 1]];
2357             prev_status &= ~ VP_START;
2358             if (prev_status != (ER_MV_END | ER_DC_END | ER_AC_END))
2359                 h->er.error_occurred = 1;
2360         }
2361     }
2362
2363     if (h->pps.cabac) {
2364         /* realign */
2365         align_get_bits(&h->gb);
2366
2367         /* init cabac */
2368         ff_init_cabac_decoder(&h->cabac,
2369                               h->gb.buffer + get_bits_count(&h->gb) / 8,
2370                               (get_bits_left(&h->gb) + 7) / 8);
2371
2372         ff_h264_init_cabac_states(h);
2373
2374         for (;;) {
2375             // START_TIMER
2376             int ret = ff_h264_decode_mb_cabac(h);
2377             int eos;
2378             // STOP_TIMER("decode_mb_cabac")
2379
2380             if (ret >= 0)
2381                 ff_h264_hl_decode_mb(h);
2382
2383             // FIXME optimal? or let mb_decode decode 16x32 ?
2384             if (ret >= 0 && FRAME_MBAFF(h)) {
2385                 h->mb_y++;
2386
2387                 ret = ff_h264_decode_mb_cabac(h);
2388
2389                 if (ret >= 0)
2390                     ff_h264_hl_decode_mb(h);
2391                 h->mb_y--;
2392             }
2393             eos = get_cabac_terminate(&h->cabac);
2394
2395             if ((h->workaround_bugs & FF_BUG_TRUNCATED) &&
2396                 h->cabac.bytestream > h->cabac.bytestream_end + 2) {
2397                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x - 1,
2398                              h->mb_y, ER_MB_END);
2399                 if (h->mb_x >= lf_x_start)
2400                     loop_filter(h, lf_x_start, h->mb_x + 1);
2401                 return 0;
2402             }
2403             if (h->cabac.bytestream > h->cabac.bytestream_end + 2 )
2404                 av_log(h->avctx, AV_LOG_DEBUG, "bytestream overread %"PTRDIFF_SPECIFIER"\n", h->cabac.bytestream_end - h->cabac.bytestream);
2405             if (ret < 0 || h->cabac.bytestream > h->cabac.bytestream_end + 4) {
2406                 av_log(h->avctx, AV_LOG_ERROR,
2407                        "error while decoding MB %d %d, bytestream %"PTRDIFF_SPECIFIER"\n",
2408                        h->mb_x, h->mb_y,
2409                        h->cabac.bytestream_end - h->cabac.bytestream);
2410                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
2411                              h->mb_y, ER_MB_ERROR);
2412                 return AVERROR_INVALIDDATA;
2413             }
2414
2415             if (++h->mb_x >= h->mb_width) {
2416                 loop_filter(h, lf_x_start, h->mb_x);
2417                 h->mb_x = lf_x_start = 0;
2418                 decode_finish_row(h);
2419                 ++h->mb_y;
2420                 if (FIELD_OR_MBAFF_PICTURE(h)) {
2421                     ++h->mb_y;
2422                     if (FRAME_MBAFF(h) && h->mb_y < h->mb_height)
2423                         predict_field_decoding_flag(h);
2424                 }
2425             }
2426
2427             if (eos || h->mb_y >= h->mb_height) {
2428                 tprintf(h->avctx, "slice end %d %d\n",
2429                         get_bits_count(&h->gb), h->gb.size_in_bits);
2430                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x - 1,
2431                              h->mb_y, ER_MB_END);
2432                 if (h->mb_x > lf_x_start)
2433                     loop_filter(h, lf_x_start, h->mb_x);
2434                 return 0;
2435             }
2436         }
2437     } else {
2438         for (;;) {
2439             int ret = ff_h264_decode_mb_cavlc(h);
2440
2441             if (ret >= 0)
2442                 ff_h264_hl_decode_mb(h);
2443
2444             // FIXME optimal? or let mb_decode decode 16x32 ?
2445             if (ret >= 0 && FRAME_MBAFF(h)) {
2446                 h->mb_y++;
2447                 ret = ff_h264_decode_mb_cavlc(h);
2448
2449                 if (ret >= 0)
2450                     ff_h264_hl_decode_mb(h);
2451                 h->mb_y--;
2452             }
2453
2454             if (ret < 0) {
2455                 av_log(h->avctx, AV_LOG_ERROR,
2456                        "error while decoding MB %d %d\n", h->mb_x, h->mb_y);
2457                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
2458                              h->mb_y, ER_MB_ERROR);
2459                 return ret;
2460             }
2461
2462             if (++h->mb_x >= h->mb_width) {
2463                 loop_filter(h, lf_x_start, h->mb_x);
2464                 h->mb_x = lf_x_start = 0;
2465                 decode_finish_row(h);
2466                 ++h->mb_y;
2467                 if (FIELD_OR_MBAFF_PICTURE(h)) {
2468                     ++h->mb_y;
2469                     if (FRAME_MBAFF(h) && h->mb_y < h->mb_height)
2470                         predict_field_decoding_flag(h);
2471                 }
2472                 if (h->mb_y >= h->mb_height) {
2473                     tprintf(h->avctx, "slice end %d %d\n",
2474                             get_bits_count(&h->gb), h->gb.size_in_bits);
2475
2476                     if (   get_bits_left(&h->gb) == 0
2477                         || get_bits_left(&h->gb) > 0 && !(h->avctx->err_recognition & AV_EF_AGGRESSIVE)) {
2478                         er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
2479                                      h->mb_x - 1, h->mb_y,
2480                                      ER_MB_END);
2481
2482                         return 0;
2483                     } else {
2484                         er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
2485                                      h->mb_x, h->mb_y,
2486                                      ER_MB_END);
2487
2488                         return AVERROR_INVALIDDATA;
2489                     }
2490                 }
2491             }
2492
2493             if (get_bits_left(&h->gb) <= 0 && h->mb_skip_run <= 0) {
2494                 tprintf(h->avctx, "slice end %d %d\n",
2495                         get_bits_count(&h->gb), h->gb.size_in_bits);
2496
2497                 if (get_bits_left(&h->gb) == 0) {
2498                     er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
2499                                  h->mb_x - 1, h->mb_y,
2500                                  ER_MB_END);
2501                     if (h->mb_x > lf_x_start)
2502                         loop_filter(h, lf_x_start, h->mb_x);
2503
2504                     return 0;
2505                 } else {
2506                     er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
2507                                  h->mb_y, ER_MB_ERROR);
2508
2509                     return AVERROR_INVALIDDATA;
2510                 }
2511             }
2512         }
2513     }
2514 }
2515
2516 /**
2517  * Call decode_slice() for each context.
2518  *
2519  * @param h h264 master context
2520  * @param context_count number of contexts to execute
2521  */
2522 int ff_h264_execute_decode_slices(H264Context *h, unsigned context_count)
2523 {
2524     AVCodecContext *const avctx = h->avctx;
2525     H264Context *hx;
2526     int i;
2527
2528     av_assert0(h->mb_y < h->mb_height);
2529
2530     if (h->avctx->hwaccel ||
2531         h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
2532         return 0;
2533     if (context_count == 1) {
2534         return decode_slice(avctx, &h);
2535     } else {
2536         av_assert0(context_count > 0);
2537         for (i = 1; i < context_count; i++) {
2538             hx                 = h->thread_context[i];
2539             if (CONFIG_ERROR_RESILIENCE) {
2540                 hx->er.error_count = 0;
2541             }
2542             hx->x264_build     = h->x264_build;
2543         }
2544
2545         avctx->execute(avctx, decode_slice, h->thread_context,
2546                        NULL, context_count, sizeof(void *));
2547
2548         /* pull back stuff from slices to master context */
2549         hx                   = h->thread_context[context_count - 1];
2550         h->mb_x              = hx->mb_x;
2551         h->mb_y              = hx->mb_y;
2552         h->droppable         = hx->droppable;
2553         h->picture_structure = hx->picture_structure;
2554         if (CONFIG_ERROR_RESILIENCE) {
2555             for (i = 1; i < context_count; i++)
2556                 h->er.error_count += h->thread_context[i]->er.error_count;
2557         }
2558     }
2559
2560     return 0;
2561 }