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