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