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