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