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