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