]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264.c
Merge commit 'd1c229cdbc07ef8eb703d68d1c5b509baee85245'
[ffmpeg] / libavcodec / h264.c
1 /*
2  * H.26L/H.264/AVC/JVT/14496-10/... decoder
3  * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * H.264 / AVC / MPEG4 part10 codec.
25  * @author Michael Niedermayer <michaelni@gmx.at>
26  */
27
28 #define UNCHECKED_BITSTREAM_READER 1
29
30 #include "libavutil/avassert.h"
31 #include "libavutil/imgutils.h"
32 #include "libavutil/opt.h"
33 #include "internal.h"
34 #include "cabac.h"
35 #include "cabac_functions.h"
36 #include "dsputil.h"
37 #include "error_resilience.h"
38 #include "avcodec.h"
39 #include "mpegvideo.h"
40 #include "h264.h"
41 #include "h264data.h"
42 #include "h264chroma.h"
43 #include "h264_mvpred.h"
44 #include "golomb.h"
45 #include "mathops.h"
46 #include "rectangle.h"
47 #include "svq3.h"
48 #include "thread.h"
49 #include "vdpau_internal.h"
50
51 #include <assert.h>
52
53 static void flush_change(H264Context *h);
54
55 const uint16_t ff_h264_mb_sizes[4] = { 256, 384, 512, 768 };
56
57 static const uint8_t rem6[QP_MAX_NUM + 1] = {
58     0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2,
59     3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5,
60     0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2,
61     3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5,
62     0, 1, 2, 3,
63 };
64
65 static const uint8_t div6[QP_MAX_NUM + 1] = {
66     0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3,  3,  3,
67     3, 3, 3, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6,  6,  6,
68     7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 10, 10, 10,
69    10,10,10,11,11,11,11,11,11,12,12,12,12,12,12,13,13,13, 13, 13, 13,
70    14,14,14,14,
71 };
72
73 static const uint8_t field_scan[16+1] = {
74     0 + 0 * 4, 0 + 1 * 4, 1 + 0 * 4, 0 + 2 * 4,
75     0 + 3 * 4, 1 + 1 * 4, 1 + 2 * 4, 1 + 3 * 4,
76     2 + 0 * 4, 2 + 1 * 4, 2 + 2 * 4, 2 + 3 * 4,
77     3 + 0 * 4, 3 + 1 * 4, 3 + 2 * 4, 3 + 3 * 4,
78 };
79
80 static const uint8_t field_scan8x8[64+1] = {
81     0 + 0 * 8, 0 + 1 * 8, 0 + 2 * 8, 1 + 0 * 8,
82     1 + 1 * 8, 0 + 3 * 8, 0 + 4 * 8, 1 + 2 * 8,
83     2 + 0 * 8, 1 + 3 * 8, 0 + 5 * 8, 0 + 6 * 8,
84     0 + 7 * 8, 1 + 4 * 8, 2 + 1 * 8, 3 + 0 * 8,
85     2 + 2 * 8, 1 + 5 * 8, 1 + 6 * 8, 1 + 7 * 8,
86     2 + 3 * 8, 3 + 1 * 8, 4 + 0 * 8, 3 + 2 * 8,
87     2 + 4 * 8, 2 + 5 * 8, 2 + 6 * 8, 2 + 7 * 8,
88     3 + 3 * 8, 4 + 1 * 8, 5 + 0 * 8, 4 + 2 * 8,
89     3 + 4 * 8, 3 + 5 * 8, 3 + 6 * 8, 3 + 7 * 8,
90     4 + 3 * 8, 5 + 1 * 8, 6 + 0 * 8, 5 + 2 * 8,
91     4 + 4 * 8, 4 + 5 * 8, 4 + 6 * 8, 4 + 7 * 8,
92     5 + 3 * 8, 6 + 1 * 8, 6 + 2 * 8, 5 + 4 * 8,
93     5 + 5 * 8, 5 + 6 * 8, 5 + 7 * 8, 6 + 3 * 8,
94     7 + 0 * 8, 7 + 1 * 8, 6 + 4 * 8, 6 + 5 * 8,
95     6 + 6 * 8, 6 + 7 * 8, 7 + 2 * 8, 7 + 3 * 8,
96     7 + 4 * 8, 7 + 5 * 8, 7 + 6 * 8, 7 + 7 * 8,
97 };
98
99 static const uint8_t field_scan8x8_cavlc[64+1] = {
100     0 + 0 * 8, 1 + 1 * 8, 2 + 0 * 8, 0 + 7 * 8,
101     2 + 2 * 8, 2 + 3 * 8, 2 + 4 * 8, 3 + 3 * 8,
102     3 + 4 * 8, 4 + 3 * 8, 4 + 4 * 8, 5 + 3 * 8,
103     5 + 5 * 8, 7 + 0 * 8, 6 + 6 * 8, 7 + 4 * 8,
104     0 + 1 * 8, 0 + 3 * 8, 1 + 3 * 8, 1 + 4 * 8,
105     1 + 5 * 8, 3 + 1 * 8, 2 + 5 * 8, 4 + 1 * 8,
106     3 + 5 * 8, 5 + 1 * 8, 4 + 5 * 8, 6 + 1 * 8,
107     5 + 6 * 8, 7 + 1 * 8, 6 + 7 * 8, 7 + 5 * 8,
108     0 + 2 * 8, 0 + 4 * 8, 0 + 5 * 8, 2 + 1 * 8,
109     1 + 6 * 8, 4 + 0 * 8, 2 + 6 * 8, 5 + 0 * 8,
110     3 + 6 * 8, 6 + 0 * 8, 4 + 6 * 8, 6 + 2 * 8,
111     5 + 7 * 8, 6 + 4 * 8, 7 + 2 * 8, 7 + 6 * 8,
112     1 + 0 * 8, 1 + 2 * 8, 0 + 6 * 8, 3 + 0 * 8,
113     1 + 7 * 8, 3 + 2 * 8, 2 + 7 * 8, 4 + 2 * 8,
114     3 + 7 * 8, 5 + 2 * 8, 4 + 7 * 8, 5 + 4 * 8,
115     6 + 3 * 8, 6 + 5 * 8, 7 + 3 * 8, 7 + 7 * 8,
116 };
117
118 // zigzag_scan8x8_cavlc[i] = zigzag_scan8x8[(i/4) + 16*(i%4)]
119 static const uint8_t zigzag_scan8x8_cavlc[64+1] = {
120     0 + 0 * 8, 1 + 1 * 8, 1 + 2 * 8, 2 + 2 * 8,
121     4 + 1 * 8, 0 + 5 * 8, 3 + 3 * 8, 7 + 0 * 8,
122     3 + 4 * 8, 1 + 7 * 8, 5 + 3 * 8, 6 + 3 * 8,
123     2 + 7 * 8, 6 + 4 * 8, 5 + 6 * 8, 7 + 5 * 8,
124     1 + 0 * 8, 2 + 0 * 8, 0 + 3 * 8, 3 + 1 * 8,
125     3 + 2 * 8, 0 + 6 * 8, 4 + 2 * 8, 6 + 1 * 8,
126     2 + 5 * 8, 2 + 6 * 8, 6 + 2 * 8, 5 + 4 * 8,
127     3 + 7 * 8, 7 + 3 * 8, 4 + 7 * 8, 7 + 6 * 8,
128     0 + 1 * 8, 3 + 0 * 8, 0 + 4 * 8, 4 + 0 * 8,
129     2 + 3 * 8, 1 + 5 * 8, 5 + 1 * 8, 5 + 2 * 8,
130     1 + 6 * 8, 3 + 5 * 8, 7 + 1 * 8, 4 + 5 * 8,
131     4 + 6 * 8, 7 + 4 * 8, 5 + 7 * 8, 6 + 7 * 8,
132     0 + 2 * 8, 2 + 1 * 8, 1 + 3 * 8, 5 + 0 * 8,
133     1 + 4 * 8, 2 + 4 * 8, 6 + 0 * 8, 4 + 3 * 8,
134     0 + 7 * 8, 4 + 4 * 8, 7 + 2 * 8, 3 + 6 * 8,
135     5 + 5 * 8, 6 + 5 * 8, 6 + 6 * 8, 7 + 7 * 8,
136 };
137
138 static const uint8_t dequant4_coeff_init[6][3] = {
139     { 10, 13, 16 },
140     { 11, 14, 18 },
141     { 13, 16, 20 },
142     { 14, 18, 23 },
143     { 16, 20, 25 },
144     { 18, 23, 29 },
145 };
146
147 static const uint8_t dequant8_coeff_init_scan[16] = {
148     0, 3, 4, 3, 3, 1, 5, 1, 4, 5, 2, 5, 3, 1, 5, 1
149 };
150
151 static const uint8_t dequant8_coeff_init[6][6] = {
152     { 20, 18, 32, 19, 25, 24 },
153     { 22, 19, 35, 21, 28, 26 },
154     { 26, 23, 42, 24, 33, 31 },
155     { 28, 25, 45, 26, 35, 33 },
156     { 32, 28, 51, 30, 40, 38 },
157     { 36, 32, 58, 34, 46, 43 },
158 };
159
160 static const enum AVPixelFormat h264_hwaccel_pixfmt_list_420[] = {
161 #if CONFIG_H264_DXVA2_HWACCEL
162     AV_PIX_FMT_DXVA2_VLD,
163 #endif
164 #if CONFIG_H264_VAAPI_HWACCEL
165     AV_PIX_FMT_VAAPI_VLD,
166 #endif
167 #if CONFIG_H264_VDA_HWACCEL
168     AV_PIX_FMT_VDA_VLD,
169 #endif
170 #if CONFIG_H264_VDPAU_HWACCEL
171     AV_PIX_FMT_VDPAU,
172 #endif
173     AV_PIX_FMT_YUV420P,
174     AV_PIX_FMT_NONE
175 };
176
177 static const enum AVPixelFormat h264_hwaccel_pixfmt_list_jpeg_420[] = {
178 #if CONFIG_H264_DXVA2_HWACCEL
179     AV_PIX_FMT_DXVA2_VLD,
180 #endif
181 #if CONFIG_H264_VAAPI_HWACCEL
182     AV_PIX_FMT_VAAPI_VLD,
183 #endif
184 #if CONFIG_H264_VDA_HWACCEL
185     AV_PIX_FMT_VDA_VLD,
186 #endif
187 #if CONFIG_H264_VDPAU_HWACCEL
188     AV_PIX_FMT_VDPAU,
189 #endif
190     AV_PIX_FMT_YUVJ420P,
191     AV_PIX_FMT_NONE
192 };
193
194 int avpriv_h264_has_num_reorder_frames(AVCodecContext *avctx)
195 {
196     H264Context *h = avctx->priv_data;
197     return h ? h->sps.num_reorder_frames : 0;
198 }
199
200 static void h264_er_decode_mb(void *opaque, int ref, int mv_dir, int mv_type,
201                               int (*mv)[2][4][2],
202                               int mb_x, int mb_y, int mb_intra, int mb_skipped)
203 {
204     H264Context *h = opaque;
205
206     h->mb_x  = mb_x;
207     h->mb_y  = mb_y;
208     h->mb_xy = mb_x + mb_y * h->mb_stride;
209     memset(h->non_zero_count_cache, 0, sizeof(h->non_zero_count_cache));
210     av_assert1(ref >= 0);
211     /* FIXME: It is possible albeit uncommon that slice references
212      * differ between slices. We take the easy approach and ignore
213      * it for now. If this turns out to have any relevance in
214      * practice then correct remapping should be added. */
215     if (ref >= h->ref_count[0])
216         ref = 0;
217     if (!h->ref_list[0][ref].f.data[0]) {
218         av_log(h->avctx, AV_LOG_DEBUG, "Reference not available for error concealing\n");
219         ref = 0;
220     }
221     if ((h->ref_list[0][ref].reference&3) != 3) {
222         av_log(h->avctx, AV_LOG_DEBUG, "Reference invalid\n");
223         return;
224     }
225     fill_rectangle(&h->cur_pic.ref_index[0][4 * h->mb_xy],
226                    2, 2, 2, ref, 1);
227     fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, ref, 1);
228     fill_rectangle(h->mv_cache[0][scan8[0]], 4, 4, 8,
229                    pack16to32((*mv)[0][0][0], (*mv)[0][0][1]), 4);
230     h->mb_mbaff =
231     h->mb_field_decoding_flag = 0;
232     ff_h264_hl_decode_mb(h);
233 }
234
235 void ff_h264_draw_horiz_band(H264Context *h, int y, int height)
236 {
237     AVCodecContext *avctx = h->avctx;
238     Picture *cur  = &h->cur_pic;
239     Picture *last = h->ref_list[0][0].f.data[0] ? &h->ref_list[0][0] : NULL;
240     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
241     int vshift = desc->log2_chroma_h;
242     const int field_pic = h->picture_structure != PICT_FRAME;
243     if (field_pic) {
244         height <<= 1;
245         y      <<= 1;
246     }
247
248     height = FFMIN(height, avctx->height - y);
249
250     if (field_pic && h->first_field && !(avctx->slice_flags & SLICE_FLAG_ALLOW_FIELD))
251         return;
252
253     if (avctx->draw_horiz_band) {
254         AVFrame *src;
255         int offset[AV_NUM_DATA_POINTERS];
256         int i;
257
258         if (cur->f.pict_type == AV_PICTURE_TYPE_B || h->low_delay ||
259             (avctx->slice_flags & SLICE_FLAG_CODED_ORDER))
260             src = &cur->f;
261         else if (last)
262             src = &last->f;
263         else
264             return;
265
266         offset[0] = y * src->linesize[0];
267         offset[1] =
268         offset[2] = (y >> vshift) * src->linesize[1];
269         for (i = 3; i < AV_NUM_DATA_POINTERS; i++)
270             offset[i] = 0;
271
272         emms_c();
273
274         avctx->draw_horiz_band(avctx, src, offset,
275                                y, h->picture_structure, height);
276     }
277 }
278
279 static void unref_picture(H264Context *h, Picture *pic)
280 {
281     int off = offsetof(Picture, tf) + sizeof(pic->tf);
282     int i;
283
284     if (!pic->f.data[0])
285         return;
286
287     ff_thread_release_buffer(h->avctx, &pic->tf);
288     av_buffer_unref(&pic->hwaccel_priv_buf);
289
290     av_buffer_unref(&pic->qscale_table_buf);
291     av_buffer_unref(&pic->mb_type_buf);
292     for (i = 0; i < 2; i++) {
293         av_buffer_unref(&pic->motion_val_buf[i]);
294         av_buffer_unref(&pic->ref_index_buf[i]);
295     }
296
297     memset((uint8_t*)pic + off, 0, sizeof(*pic) - off);
298 }
299
300 static void release_unused_pictures(H264Context *h, int remove_current)
301 {
302     int i;
303
304     /* release non reference frames */
305     for (i = 0; i < MAX_PICTURE_COUNT; i++) {
306         if (h->DPB[i].f.data[0] && !h->DPB[i].reference &&
307             (remove_current || &h->DPB[i] != h->cur_pic_ptr)) {
308             unref_picture(h, &h->DPB[i]);
309         }
310     }
311 }
312
313 static int ref_picture(H264Context *h, Picture *dst, Picture *src)
314 {
315     int ret, i;
316
317     av_assert0(!dst->f.buf[0]);
318     av_assert0(src->f.buf[0]);
319
320     src->tf.f = &src->f;
321     dst->tf.f = &dst->f;
322     ret = ff_thread_ref_frame(&dst->tf, &src->tf);
323     if (ret < 0)
324         goto fail;
325
326     dst->qscale_table_buf = av_buffer_ref(src->qscale_table_buf);
327     dst->mb_type_buf      = av_buffer_ref(src->mb_type_buf);
328     if (!dst->qscale_table_buf || !dst->mb_type_buf)
329         goto fail;
330     dst->qscale_table = src->qscale_table;
331     dst->mb_type      = src->mb_type;
332
333     for (i = 0; i < 2; i++) {
334         dst->motion_val_buf[i] = av_buffer_ref(src->motion_val_buf[i]);
335         dst->ref_index_buf[i]  = av_buffer_ref(src->ref_index_buf[i]);
336         if (!dst->motion_val_buf[i] || !dst->ref_index_buf[i])
337             goto fail;
338         dst->motion_val[i] = src->motion_val[i];
339         dst->ref_index[i]  = src->ref_index[i];
340     }
341
342     if (src->hwaccel_picture_private) {
343         dst->hwaccel_priv_buf = av_buffer_ref(src->hwaccel_priv_buf);
344         if (!dst->hwaccel_priv_buf)
345             goto fail;
346         dst->hwaccel_picture_private = dst->hwaccel_priv_buf->data;
347     }
348
349     for (i = 0; i < 2; i++)
350         dst->field_poc[i] = src->field_poc[i];
351
352     memcpy(dst->ref_poc,   src->ref_poc,   sizeof(src->ref_poc));
353     memcpy(dst->ref_count, src->ref_count, sizeof(src->ref_count));
354
355     dst->poc           = src->poc;
356     dst->frame_num     = src->frame_num;
357     dst->mmco_reset    = src->mmco_reset;
358     dst->pic_id        = src->pic_id;
359     dst->long_ref      = src->long_ref;
360     dst->mbaff         = src->mbaff;
361     dst->field_picture = src->field_picture;
362     dst->needs_realloc = src->needs_realloc;
363     dst->reference     = src->reference;
364     dst->crop          = src->crop;
365     dst->crop_left     = src->crop_left;
366     dst->crop_top      = src->crop_top;
367     dst->recovered     = src->recovered;
368
369     return 0;
370 fail:
371     unref_picture(h, dst);
372     return ret;
373 }
374
375 static int alloc_scratch_buffers(H264Context *h, int linesize)
376 {
377     int alloc_size = FFALIGN(FFABS(linesize) + 32, 32);
378
379     if (h->bipred_scratchpad)
380         return 0;
381
382     h->bipred_scratchpad = av_malloc(16 * 6 * alloc_size);
383     // edge emu needs blocksize + filter length - 1
384     // (= 21x21 for  h264)
385     h->edge_emu_buffer = av_mallocz(alloc_size * 2 * 21);
386     h->me.scratchpad   = av_mallocz(alloc_size * 2 * 16 * 2);
387
388     if (!h->bipred_scratchpad || !h->edge_emu_buffer || !h->me.scratchpad) {
389         av_freep(&h->bipred_scratchpad);
390         av_freep(&h->edge_emu_buffer);
391         av_freep(&h->me.scratchpad);
392         return AVERROR(ENOMEM);
393     }
394
395     h->me.temp = h->me.scratchpad;
396
397     return 0;
398 }
399
400 static int init_table_pools(H264Context *h)
401 {
402     const int big_mb_num    = h->mb_stride * (h->mb_height + 1) + 1;
403     const int mb_array_size = h->mb_stride * h->mb_height;
404     const int b4_stride     = h->mb_width * 4 + 1;
405     const int b4_array_size = b4_stride * h->mb_height * 4;
406
407     h->qscale_table_pool = av_buffer_pool_init(big_mb_num + h->mb_stride,
408                                                av_buffer_allocz);
409     h->mb_type_pool      = av_buffer_pool_init((big_mb_num + h->mb_stride) *
410                                                sizeof(uint32_t), av_buffer_allocz);
411     h->motion_val_pool = av_buffer_pool_init(2 * (b4_array_size + 4) *
412                                              sizeof(int16_t), av_buffer_allocz);
413     h->ref_index_pool  = av_buffer_pool_init(4 * mb_array_size, av_buffer_allocz);
414
415     if (!h->qscale_table_pool || !h->mb_type_pool || !h->motion_val_pool ||
416         !h->ref_index_pool) {
417         av_buffer_pool_uninit(&h->qscale_table_pool);
418         av_buffer_pool_uninit(&h->mb_type_pool);
419         av_buffer_pool_uninit(&h->motion_val_pool);
420         av_buffer_pool_uninit(&h->ref_index_pool);
421         return AVERROR(ENOMEM);
422     }
423
424     return 0;
425 }
426
427 static int alloc_picture(H264Context *h, Picture *pic)
428 {
429     int i, ret = 0;
430
431     av_assert0(!pic->f.data[0]);
432
433     pic->tf.f = &pic->f;
434     ret = ff_thread_get_buffer(h->avctx, &pic->tf, pic->reference ?
435                                                    AV_GET_BUFFER_FLAG_REF : 0);
436     if (ret < 0)
437         goto fail;
438
439     h->linesize   = pic->f.linesize[0];
440     h->uvlinesize = pic->f.linesize[1];
441     pic->crop     = h->sps.crop;
442     pic->crop_top = h->sps.crop_top;
443     pic->crop_left= h->sps.crop_left;
444
445     if (h->avctx->hwaccel) {
446         const AVHWAccel *hwaccel = h->avctx->hwaccel;
447         av_assert0(!pic->hwaccel_picture_private);
448         if (hwaccel->priv_data_size) {
449             pic->hwaccel_priv_buf = av_buffer_allocz(hwaccel->priv_data_size);
450             if (!pic->hwaccel_priv_buf)
451                 return AVERROR(ENOMEM);
452             pic->hwaccel_picture_private = pic->hwaccel_priv_buf->data;
453         }
454     }
455
456     if (!h->qscale_table_pool) {
457         ret = init_table_pools(h);
458         if (ret < 0)
459             goto fail;
460     }
461
462     pic->qscale_table_buf = av_buffer_pool_get(h->qscale_table_pool);
463     pic->mb_type_buf      = av_buffer_pool_get(h->mb_type_pool);
464     if (!pic->qscale_table_buf || !pic->mb_type_buf)
465         goto fail;
466
467     pic->mb_type      = (uint32_t*)pic->mb_type_buf->data + 2 * h->mb_stride + 1;
468     pic->qscale_table = pic->qscale_table_buf->data + 2 * h->mb_stride + 1;
469
470     for (i = 0; i < 2; i++) {
471         pic->motion_val_buf[i] = av_buffer_pool_get(h->motion_val_pool);
472         pic->ref_index_buf[i]  = av_buffer_pool_get(h->ref_index_pool);
473         if (!pic->motion_val_buf[i] || !pic->ref_index_buf[i])
474             goto fail;
475
476         pic->motion_val[i] = (int16_t (*)[2])pic->motion_val_buf[i]->data + 4;
477         pic->ref_index[i]  = pic->ref_index_buf[i]->data;
478     }
479
480     return 0;
481 fail:
482     unref_picture(h, pic);
483     return (ret < 0) ? ret : AVERROR(ENOMEM);
484 }
485
486 static inline int pic_is_unused(H264Context *h, Picture *pic)
487 {
488     if (pic->f.data[0] == NULL)
489         return 1;
490     if (pic->needs_realloc && !(pic->reference & DELAYED_PIC_REF))
491         return 1;
492     return 0;
493 }
494
495 static int find_unused_picture(H264Context *h)
496 {
497     int i;
498
499     for (i = 0; i < MAX_PICTURE_COUNT; i++) {
500         if (pic_is_unused(h, &h->DPB[i]))
501             break;
502     }
503     if (i == MAX_PICTURE_COUNT)
504         return AVERROR_INVALIDDATA;
505
506     if (h->DPB[i].needs_realloc) {
507         h->DPB[i].needs_realloc = 0;
508         unref_picture(h, &h->DPB[i]);
509     }
510
511     return i;
512 }
513
514 /**
515  * Check if the top & left blocks are available if needed and
516  * change the dc mode so it only uses the available blocks.
517  */
518 int ff_h264_check_intra4x4_pred_mode(H264Context *h)
519 {
520     static const int8_t top[12] = {
521         -1, 0, LEFT_DC_PRED, -1, -1, -1, -1, -1, 0
522     };
523     static const int8_t left[12] = {
524         0, -1, TOP_DC_PRED, 0, -1, -1, -1, 0, -1, DC_128_PRED
525     };
526     int i;
527
528     if (!(h->top_samples_available & 0x8000)) {
529         for (i = 0; i < 4; i++) {
530             int status = top[h->intra4x4_pred_mode_cache[scan8[0] + i]];
531             if (status < 0) {
532                 av_log(h->avctx, AV_LOG_ERROR,
533                        "top block unavailable for requested intra4x4 mode %d at %d %d\n",
534                        status, h->mb_x, h->mb_y);
535                 return AVERROR_INVALIDDATA;
536             } else if (status) {
537                 h->intra4x4_pred_mode_cache[scan8[0] + i] = status;
538             }
539         }
540     }
541
542     if ((h->left_samples_available & 0x8888) != 0x8888) {
543         static const int mask[4] = { 0x8000, 0x2000, 0x80, 0x20 };
544         for (i = 0; i < 4; i++)
545             if (!(h->left_samples_available & mask[i])) {
546                 int status = left[h->intra4x4_pred_mode_cache[scan8[0] + 8 * i]];
547                 if (status < 0) {
548                     av_log(h->avctx, AV_LOG_ERROR,
549                            "left block unavailable for requested intra4x4 mode %d at %d %d\n",
550                            status, h->mb_x, h->mb_y);
551                     return AVERROR_INVALIDDATA;
552                 } else if (status) {
553                     h->intra4x4_pred_mode_cache[scan8[0] + 8 * i] = status;
554                 }
555             }
556     }
557
558     return 0;
559 } // FIXME cleanup like ff_h264_check_intra_pred_mode
560
561 /**
562  * Check if the top & left blocks are available if needed and
563  * change the dc mode so it only uses the available blocks.
564  */
565 int ff_h264_check_intra_pred_mode(H264Context *h, int mode, int is_chroma)
566 {
567     static const int8_t top[4]  = { LEFT_DC_PRED8x8, 1, -1, -1 };
568     static const int8_t left[5] = { TOP_DC_PRED8x8, -1, 2, -1, DC_128_PRED8x8 };
569
570     if (mode > 3U) {
571         av_log(h->avctx, AV_LOG_ERROR,
572                "out of range intra chroma pred mode at %d %d\n",
573                h->mb_x, h->mb_y);
574         return AVERROR_INVALIDDATA;
575     }
576
577     if (!(h->top_samples_available & 0x8000)) {
578         mode = top[mode];
579         if (mode < 0) {
580             av_log(h->avctx, AV_LOG_ERROR,
581                    "top block unavailable for requested intra mode at %d %d\n",
582                    h->mb_x, h->mb_y);
583             return AVERROR_INVALIDDATA;
584         }
585     }
586
587     if ((h->left_samples_available & 0x8080) != 0x8080) {
588         mode = left[mode];
589         if (is_chroma && (h->left_samples_available & 0x8080)) {
590             // mad cow disease mode, aka MBAFF + constrained_intra_pred
591             mode = ALZHEIMER_DC_L0T_PRED8x8 +
592                    (!(h->left_samples_available & 0x8000)) +
593                    2 * (mode == DC_128_PRED8x8);
594         }
595         if (mode < 0) {
596             av_log(h->avctx, AV_LOG_ERROR,
597                    "left block unavailable for requested intra mode at %d %d\n",
598                    h->mb_x, h->mb_y);
599             return AVERROR_INVALIDDATA;
600         }
601     }
602
603     return mode;
604 }
605
606 const uint8_t *ff_h264_decode_nal(H264Context *h, const uint8_t *src,
607                                   int *dst_length, int *consumed, int length)
608 {
609     int i, si, di;
610     uint8_t *dst;
611     int bufidx;
612
613     // src[0]&0x80; // forbidden bit
614     h->nal_ref_idc   = src[0] >> 5;
615     h->nal_unit_type = src[0] & 0x1F;
616
617     src++;
618     length--;
619
620 #define STARTCODE_TEST                                                  \
621     if (i + 2 < length && src[i + 1] == 0 && src[i + 2] <= 3) {         \
622         if (src[i + 2] != 3) {                                          \
623             /* startcode, so we must be past the end */                 \
624             length = i;                                                 \
625         }                                                               \
626         break;                                                          \
627     }
628
629 #if HAVE_FAST_UNALIGNED
630 #define FIND_FIRST_ZERO                                                 \
631     if (i > 0 && !src[i])                                               \
632         i--;                                                            \
633     while (src[i])                                                      \
634         i++
635
636 #if HAVE_FAST_64BIT
637     for (i = 0; i + 1 < length; i += 9) {
638         if (!((~AV_RN64A(src + i) &
639                (AV_RN64A(src + i) - 0x0100010001000101ULL)) &
640               0x8000800080008080ULL))
641             continue;
642         FIND_FIRST_ZERO;
643         STARTCODE_TEST;
644         i -= 7;
645     }
646 #else
647     for (i = 0; i + 1 < length; i += 5) {
648         if (!((~AV_RN32A(src + i) &
649                (AV_RN32A(src + i) - 0x01000101U)) &
650               0x80008080U))
651             continue;
652         FIND_FIRST_ZERO;
653         STARTCODE_TEST;
654         i -= 3;
655     }
656 #endif
657 #else
658     for (i = 0; i + 1 < length; i += 2) {
659         if (src[i])
660             continue;
661         if (i > 0 && src[i - 1] == 0)
662             i--;
663         STARTCODE_TEST;
664     }
665 #endif
666
667     // use second escape buffer for inter data
668     bufidx = h->nal_unit_type == NAL_DPC ? 1 : 0;
669
670     si = h->rbsp_buffer_size[bufidx];
671     av_fast_padded_malloc(&h->rbsp_buffer[bufidx], &h->rbsp_buffer_size[bufidx], length+MAX_MBPAIR_SIZE);
672     dst = h->rbsp_buffer[bufidx];
673
674     if (dst == NULL)
675         return NULL;
676
677     if(i>=length-1){ //no escaped 0
678         *dst_length= length;
679         *consumed= length+1; //+1 for the header
680         if(h->avctx->flags2 & CODEC_FLAG2_FAST){
681             return src;
682         }else{
683             memcpy(dst, src, length);
684             return dst;
685         }
686     }
687
688     memcpy(dst, src, i);
689     si = di = i;
690     while (si + 2 < length) {
691         // remove escapes (very rare 1:2^22)
692         if (src[si + 2] > 3) {
693             dst[di++] = src[si++];
694             dst[di++] = src[si++];
695         } else if (src[si] == 0 && src[si + 1] == 0) {
696             if (src[si + 2] == 3) { // escape
697                 dst[di++]  = 0;
698                 dst[di++]  = 0;
699                 si        += 3;
700                 continue;
701             } else // next start code
702                 goto nsc;
703         }
704
705         dst[di++] = src[si++];
706     }
707     while (si < length)
708         dst[di++] = src[si++];
709
710 nsc:
711     memset(dst + di, 0, FF_INPUT_BUFFER_PADDING_SIZE);
712
713     *dst_length = di;
714     *consumed   = si + 1; // +1 for the header
715     /* FIXME store exact number of bits in the getbitcontext
716      * (it is needed for decoding) */
717     return dst;
718 }
719
720 /**
721  * Identify the exact end of the bitstream
722  * @return the length of the trailing, or 0 if damaged
723  */
724 static int decode_rbsp_trailing(H264Context *h, const uint8_t *src)
725 {
726     int v = *src;
727     int r;
728
729     tprintf(h->avctx, "rbsp trailing %X\n", v);
730
731     for (r = 1; r < 9; r++) {
732         if (v & 1)
733             return r;
734         v >>= 1;
735     }
736     return 0;
737 }
738
739 static inline int get_lowest_part_list_y(H264Context *h, Picture *pic, int n,
740                                          int height, int y_offset, int list)
741 {
742     int raw_my             = h->mv_cache[list][scan8[n]][1];
743     int filter_height_down = (raw_my & 3) ? 3 : 0;
744     int full_my            = (raw_my >> 2) + y_offset;
745     int bottom             = full_my + filter_height_down + height;
746
747     av_assert2(height >= 0);
748
749     return FFMAX(0, bottom);
750 }
751
752 static inline void get_lowest_part_y(H264Context *h, int refs[2][48], int n,
753                                      int height, int y_offset, int list0,
754                                      int list1, int *nrefs)
755 {
756     int my;
757
758     y_offset += 16 * (h->mb_y >> MB_FIELD(h));
759
760     if (list0) {
761         int ref_n    = h->ref_cache[0][scan8[n]];
762         Picture *ref = &h->ref_list[0][ref_n];
763
764         // Error resilience puts the current picture in the ref list.
765         // Don't try to wait on these as it will cause a deadlock.
766         // Fields can wait on each other, though.
767         if (ref->tf.progress->data != h->cur_pic.tf.progress->data ||
768             (ref->reference & 3) != h->picture_structure) {
769             my = get_lowest_part_list_y(h, ref, n, height, y_offset, 0);
770             if (refs[0][ref_n] < 0)
771                 nrefs[0] += 1;
772             refs[0][ref_n] = FFMAX(refs[0][ref_n], my);
773         }
774     }
775
776     if (list1) {
777         int ref_n    = h->ref_cache[1][scan8[n]];
778         Picture *ref = &h->ref_list[1][ref_n];
779
780         if (ref->tf.progress->data != h->cur_pic.tf.progress->data ||
781             (ref->reference & 3) != h->picture_structure) {
782             my = get_lowest_part_list_y(h, ref, n, height, y_offset, 1);
783             if (refs[1][ref_n] < 0)
784                 nrefs[1] += 1;
785             refs[1][ref_n] = FFMAX(refs[1][ref_n], my);
786         }
787     }
788 }
789
790 /**
791  * Wait until all reference frames are available for MC operations.
792  *
793  * @param h the H264 context
794  */
795 static void await_references(H264Context *h)
796 {
797     const int mb_xy   = h->mb_xy;
798     const int mb_type = h->cur_pic.mb_type[mb_xy];
799     int refs[2][48];
800     int nrefs[2] = { 0 };
801     int ref, list;
802
803     memset(refs, -1, sizeof(refs));
804
805     if (IS_16X16(mb_type)) {
806         get_lowest_part_y(h, refs, 0, 16, 0,
807                           IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1), nrefs);
808     } else if (IS_16X8(mb_type)) {
809         get_lowest_part_y(h, refs, 0, 8, 0,
810                           IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1), nrefs);
811         get_lowest_part_y(h, refs, 8, 8, 8,
812                           IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1), nrefs);
813     } else if (IS_8X16(mb_type)) {
814         get_lowest_part_y(h, refs, 0, 16, 0,
815                           IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1), nrefs);
816         get_lowest_part_y(h, refs, 4, 16, 0,
817                           IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1), nrefs);
818     } else {
819         int i;
820
821         av_assert2(IS_8X8(mb_type));
822
823         for (i = 0; i < 4; i++) {
824             const int sub_mb_type = h->sub_mb_type[i];
825             const int n           = 4 * i;
826             int y_offset          = (i & 2) << 2;
827
828             if (IS_SUB_8X8(sub_mb_type)) {
829                 get_lowest_part_y(h, refs, n, 8, y_offset,
830                                   IS_DIR(sub_mb_type, 0, 0),
831                                   IS_DIR(sub_mb_type, 0, 1),
832                                   nrefs);
833             } else if (IS_SUB_8X4(sub_mb_type)) {
834                 get_lowest_part_y(h, refs, n, 4, y_offset,
835                                   IS_DIR(sub_mb_type, 0, 0),
836                                   IS_DIR(sub_mb_type, 0, 1),
837                                   nrefs);
838                 get_lowest_part_y(h, refs, n + 2, 4, y_offset + 4,
839                                   IS_DIR(sub_mb_type, 0, 0),
840                                   IS_DIR(sub_mb_type, 0, 1),
841                                   nrefs);
842             } else if (IS_SUB_4X8(sub_mb_type)) {
843                 get_lowest_part_y(h, refs, n, 8, y_offset,
844                                   IS_DIR(sub_mb_type, 0, 0),
845                                   IS_DIR(sub_mb_type, 0, 1),
846                                   nrefs);
847                 get_lowest_part_y(h, refs, n + 1, 8, y_offset,
848                                   IS_DIR(sub_mb_type, 0, 0),
849                                   IS_DIR(sub_mb_type, 0, 1),
850                                   nrefs);
851             } else {
852                 int j;
853                 av_assert2(IS_SUB_4X4(sub_mb_type));
854                 for (j = 0; j < 4; j++) {
855                     int sub_y_offset = y_offset + 2 * (j & 2);
856                     get_lowest_part_y(h, refs, n + j, 4, sub_y_offset,
857                                       IS_DIR(sub_mb_type, 0, 0),
858                                       IS_DIR(sub_mb_type, 0, 1),
859                                       nrefs);
860                 }
861             }
862         }
863     }
864
865     for (list = h->list_count - 1; list >= 0; list--)
866         for (ref = 0; ref < 48 && nrefs[list]; ref++) {
867             int row = refs[list][ref];
868             if (row >= 0) {
869                 Picture *ref_pic      = &h->ref_list[list][ref];
870                 int ref_field         = ref_pic->reference - 1;
871                 int ref_field_picture = ref_pic->field_picture;
872                 int pic_height        = 16 * h->mb_height >> ref_field_picture;
873
874                 row <<= MB_MBAFF(h);
875                 nrefs[list]--;
876
877                 if (!FIELD_PICTURE(h) && ref_field_picture) { // frame referencing two fields
878                     ff_thread_await_progress(&ref_pic->tf,
879                                              FFMIN((row >> 1) - !(row & 1),
880                                                    pic_height - 1),
881                                              1);
882                     ff_thread_await_progress(&ref_pic->tf,
883                                              FFMIN((row >> 1), pic_height - 1),
884                                              0);
885                 } else if (FIELD_PICTURE(h) && !ref_field_picture) { // field referencing one field of a frame
886                     ff_thread_await_progress(&ref_pic->tf,
887                                              FFMIN(row * 2 + ref_field,
888                                                    pic_height - 1),
889                                              0);
890                 } else if (FIELD_PICTURE(h)) {
891                     ff_thread_await_progress(&ref_pic->tf,
892                                              FFMIN(row, pic_height - 1),
893                                              ref_field);
894                 } else {
895                     ff_thread_await_progress(&ref_pic->tf,
896                                              FFMIN(row, pic_height - 1),
897                                              0);
898                 }
899             }
900         }
901 }
902
903 static av_always_inline void mc_dir_part(H264Context *h, Picture *pic,
904                                          int n, int square, int height,
905                                          int delta, int list,
906                                          uint8_t *dest_y, uint8_t *dest_cb,
907                                          uint8_t *dest_cr,
908                                          int src_x_offset, int src_y_offset,
909                                          qpel_mc_func *qpix_op,
910                                          h264_chroma_mc_func chroma_op,
911                                          int pixel_shift, int chroma_idc)
912 {
913     const int mx      = h->mv_cache[list][scan8[n]][0] + src_x_offset * 8;
914     int my            = h->mv_cache[list][scan8[n]][1] + src_y_offset * 8;
915     const int luma_xy = (mx & 3) + ((my & 3) << 2);
916     ptrdiff_t offset  = ((mx >> 2) << pixel_shift) + (my >> 2) * h->mb_linesize;
917     uint8_t *src_y    = pic->f.data[0] + offset;
918     uint8_t *src_cb, *src_cr;
919     int extra_width  = 0;
920     int extra_height = 0;
921     int emu = 0;
922     const int full_mx    = mx >> 2;
923     const int full_my    = my >> 2;
924     const int pic_width  = 16 * h->mb_width;
925     const int pic_height = 16 * h->mb_height >> MB_FIELD(h);
926     int ysh;
927
928     if (mx & 7)
929         extra_width -= 3;
930     if (my & 7)
931         extra_height -= 3;
932
933     if (full_mx                <          0 - extra_width  ||
934         full_my                <          0 - extra_height ||
935         full_mx + 16 /*FIXME*/ > pic_width  + extra_width  ||
936         full_my + 16 /*FIXME*/ > pic_height + extra_height) {
937         h->vdsp.emulated_edge_mc(h->edge_emu_buffer, h->mb_linesize,
938                                  src_y - (2 << pixel_shift) - 2 * h->mb_linesize,
939                                  h->mb_linesize,
940                                  16 + 5, 16 + 5 /*FIXME*/, full_mx - 2,
941                                  full_my - 2, pic_width, pic_height);
942         src_y = h->edge_emu_buffer + (2 << pixel_shift) + 2 * h->mb_linesize;
943         emu   = 1;
944     }
945
946     qpix_op[luma_xy](dest_y, src_y, h->mb_linesize); // FIXME try variable height perhaps?
947     if (!square)
948         qpix_op[luma_xy](dest_y + delta, src_y + delta, h->mb_linesize);
949
950     if (CONFIG_GRAY && h->flags & CODEC_FLAG_GRAY)
951         return;
952
953     if (chroma_idc == 3 /* yuv444 */) {
954         src_cb = pic->f.data[1] + offset;
955         if (emu) {
956             h->vdsp.emulated_edge_mc(h->edge_emu_buffer, h->mb_linesize,
957                                      src_cb - (2 << pixel_shift) - 2 * h->mb_linesize,
958                                      h->mb_linesize,
959                                      16 + 5, 16 + 5 /*FIXME*/,
960                                      full_mx - 2, full_my - 2,
961                                      pic_width, pic_height);
962             src_cb = h->edge_emu_buffer + (2 << pixel_shift) + 2 * h->mb_linesize;
963         }
964         qpix_op[luma_xy](dest_cb, src_cb, h->mb_linesize); // FIXME try variable height perhaps?
965         if (!square)
966             qpix_op[luma_xy](dest_cb + delta, src_cb + delta, h->mb_linesize);
967
968         src_cr = pic->f.data[2] + offset;
969         if (emu) {
970             h->vdsp.emulated_edge_mc(h->edge_emu_buffer, h->mb_linesize,
971                                      src_cr - (2 << pixel_shift) - 2 * h->mb_linesize,
972                                      h->mb_linesize,
973                                      16 + 5, 16 + 5 /*FIXME*/,
974                                      full_mx - 2, full_my - 2,
975                                      pic_width, pic_height);
976             src_cr = h->edge_emu_buffer + (2 << pixel_shift) + 2 * h->mb_linesize;
977         }
978         qpix_op[luma_xy](dest_cr, src_cr, h->mb_linesize); // FIXME try variable height perhaps?
979         if (!square)
980             qpix_op[luma_xy](dest_cr + delta, src_cr + delta, h->mb_linesize);
981         return;
982     }
983
984     ysh = 3 - (chroma_idc == 2 /* yuv422 */);
985     if (chroma_idc == 1 /* yuv420 */ && MB_FIELD(h)) {
986         // chroma offset when predicting from a field of opposite parity
987         my  += 2 * ((h->mb_y & 1) - (pic->reference - 1));
988         emu |= (my >> 3) < 0 || (my >> 3) + 8 >= (pic_height >> 1);
989     }
990
991     src_cb = pic->f.data[1] + ((mx >> 3) << pixel_shift) +
992              (my >> ysh) * h->mb_uvlinesize;
993     src_cr = pic->f.data[2] + ((mx >> 3) << pixel_shift) +
994              (my >> ysh) * h->mb_uvlinesize;
995
996     if (emu) {
997         h->vdsp.emulated_edge_mc(h->edge_emu_buffer, h->mb_uvlinesize, src_cb, h->mb_uvlinesize,
998                                  9, 8 * chroma_idc + 1, (mx >> 3), (my >> ysh),
999                                  pic_width >> 1, pic_height >> (chroma_idc == 1 /* yuv420 */));
1000         src_cb = h->edge_emu_buffer;
1001     }
1002     chroma_op(dest_cb, src_cb, h->mb_uvlinesize,
1003               height >> (chroma_idc == 1 /* yuv420 */),
1004               mx & 7, (my << (chroma_idc == 2 /* yuv422 */)) & 7);
1005
1006     if (emu) {
1007         h->vdsp.emulated_edge_mc(h->edge_emu_buffer, h->mb_uvlinesize, src_cr, h->mb_uvlinesize,
1008                                  9, 8 * chroma_idc + 1, (mx >> 3), (my >> ysh),
1009                                  pic_width >> 1, pic_height >> (chroma_idc == 1 /* yuv420 */));
1010         src_cr = h->edge_emu_buffer;
1011     }
1012     chroma_op(dest_cr, src_cr, h->mb_uvlinesize, height >> (chroma_idc == 1 /* yuv420 */),
1013               mx & 7, (my << (chroma_idc == 2 /* yuv422 */)) & 7);
1014 }
1015
1016 static av_always_inline void mc_part_std(H264Context *h, int n, int square,
1017                                          int height, int delta,
1018                                          uint8_t *dest_y, uint8_t *dest_cb,
1019                                          uint8_t *dest_cr,
1020                                          int x_offset, int y_offset,
1021                                          qpel_mc_func *qpix_put,
1022                                          h264_chroma_mc_func chroma_put,
1023                                          qpel_mc_func *qpix_avg,
1024                                          h264_chroma_mc_func chroma_avg,
1025                                          int list0, int list1,
1026                                          int pixel_shift, int chroma_idc)
1027 {
1028     qpel_mc_func *qpix_op         = qpix_put;
1029     h264_chroma_mc_func chroma_op = chroma_put;
1030
1031     dest_y += (2 * x_offset << pixel_shift) + 2 * y_offset * h->mb_linesize;
1032     if (chroma_idc == 3 /* yuv444 */) {
1033         dest_cb += (2 * x_offset << pixel_shift) + 2 * y_offset * h->mb_linesize;
1034         dest_cr += (2 * x_offset << pixel_shift) + 2 * y_offset * h->mb_linesize;
1035     } else if (chroma_idc == 2 /* yuv422 */) {
1036         dest_cb += (x_offset << pixel_shift) + 2 * y_offset * h->mb_uvlinesize;
1037         dest_cr += (x_offset << pixel_shift) + 2 * y_offset * h->mb_uvlinesize;
1038     } else { /* yuv420 */
1039         dest_cb += (x_offset << pixel_shift) + y_offset * h->mb_uvlinesize;
1040         dest_cr += (x_offset << pixel_shift) + y_offset * h->mb_uvlinesize;
1041     }
1042     x_offset += 8 * h->mb_x;
1043     y_offset += 8 * (h->mb_y >> MB_FIELD(h));
1044
1045     if (list0) {
1046         Picture *ref = &h->ref_list[0][h->ref_cache[0][scan8[n]]];
1047         mc_dir_part(h, ref, n, square, height, delta, 0,
1048                     dest_y, dest_cb, dest_cr, x_offset, y_offset,
1049                     qpix_op, chroma_op, pixel_shift, chroma_idc);
1050
1051         qpix_op   = qpix_avg;
1052         chroma_op = chroma_avg;
1053     }
1054
1055     if (list1) {
1056         Picture *ref = &h->ref_list[1][h->ref_cache[1][scan8[n]]];
1057         mc_dir_part(h, ref, n, square, height, delta, 1,
1058                     dest_y, dest_cb, dest_cr, x_offset, y_offset,
1059                     qpix_op, chroma_op, pixel_shift, chroma_idc);
1060     }
1061 }
1062
1063 static av_always_inline void mc_part_weighted(H264Context *h, int n, int square,
1064                                               int height, int delta,
1065                                               uint8_t *dest_y, uint8_t *dest_cb,
1066                                               uint8_t *dest_cr,
1067                                               int x_offset, int y_offset,
1068                                               qpel_mc_func *qpix_put,
1069                                               h264_chroma_mc_func chroma_put,
1070                                               h264_weight_func luma_weight_op,
1071                                               h264_weight_func chroma_weight_op,
1072                                               h264_biweight_func luma_weight_avg,
1073                                               h264_biweight_func chroma_weight_avg,
1074                                               int list0, int list1,
1075                                               int pixel_shift, int chroma_idc)
1076 {
1077     int chroma_height;
1078
1079     dest_y += (2 * x_offset << pixel_shift) + 2 * y_offset * h->mb_linesize;
1080     if (chroma_idc == 3 /* yuv444 */) {
1081         chroma_height     = height;
1082         chroma_weight_avg = luma_weight_avg;
1083         chroma_weight_op  = luma_weight_op;
1084         dest_cb += (2 * x_offset << pixel_shift) + 2 * y_offset * h->mb_linesize;
1085         dest_cr += (2 * x_offset << pixel_shift) + 2 * y_offset * h->mb_linesize;
1086     } else if (chroma_idc == 2 /* yuv422 */) {
1087         chroma_height = height;
1088         dest_cb      += (x_offset << pixel_shift) + 2 * y_offset * h->mb_uvlinesize;
1089         dest_cr      += (x_offset << pixel_shift) + 2 * y_offset * h->mb_uvlinesize;
1090     } else { /* yuv420 */
1091         chroma_height = height >> 1;
1092         dest_cb      += (x_offset << pixel_shift) + y_offset * h->mb_uvlinesize;
1093         dest_cr      += (x_offset << pixel_shift) + y_offset * h->mb_uvlinesize;
1094     }
1095     x_offset += 8 * h->mb_x;
1096     y_offset += 8 * (h->mb_y >> MB_FIELD(h));
1097
1098     if (list0 && list1) {
1099         /* don't optimize for luma-only case, since B-frames usually
1100          * use implicit weights => chroma too. */
1101         uint8_t *tmp_cb = h->bipred_scratchpad;
1102         uint8_t *tmp_cr = h->bipred_scratchpad + (16 << pixel_shift);
1103         uint8_t *tmp_y  = h->bipred_scratchpad + 16 * h->mb_uvlinesize;
1104         int refn0       = h->ref_cache[0][scan8[n]];
1105         int refn1       = h->ref_cache[1][scan8[n]];
1106
1107         mc_dir_part(h, &h->ref_list[0][refn0], n, square, height, delta, 0,
1108                     dest_y, dest_cb, dest_cr,
1109                     x_offset, y_offset, qpix_put, chroma_put,
1110                     pixel_shift, chroma_idc);
1111         mc_dir_part(h, &h->ref_list[1][refn1], n, square, height, delta, 1,
1112                     tmp_y, tmp_cb, tmp_cr,
1113                     x_offset, y_offset, qpix_put, chroma_put,
1114                     pixel_shift, chroma_idc);
1115
1116         if (h->use_weight == 2) {
1117             int weight0 = h->implicit_weight[refn0][refn1][h->mb_y & 1];
1118             int weight1 = 64 - weight0;
1119             luma_weight_avg(dest_y, tmp_y, h->mb_linesize,
1120                             height, 5, weight0, weight1, 0);
1121             chroma_weight_avg(dest_cb, tmp_cb, h->mb_uvlinesize,
1122                               chroma_height, 5, weight0, weight1, 0);
1123             chroma_weight_avg(dest_cr, tmp_cr, h->mb_uvlinesize,
1124                               chroma_height, 5, weight0, weight1, 0);
1125         } else {
1126             luma_weight_avg(dest_y, tmp_y, h->mb_linesize, height,
1127                             h->luma_log2_weight_denom,
1128                             h->luma_weight[refn0][0][0],
1129                             h->luma_weight[refn1][1][0],
1130                             h->luma_weight[refn0][0][1] +
1131                             h->luma_weight[refn1][1][1]);
1132             chroma_weight_avg(dest_cb, tmp_cb, h->mb_uvlinesize, chroma_height,
1133                               h->chroma_log2_weight_denom,
1134                               h->chroma_weight[refn0][0][0][0],
1135                               h->chroma_weight[refn1][1][0][0],
1136                               h->chroma_weight[refn0][0][0][1] +
1137                               h->chroma_weight[refn1][1][0][1]);
1138             chroma_weight_avg(dest_cr, tmp_cr, h->mb_uvlinesize, chroma_height,
1139                               h->chroma_log2_weight_denom,
1140                               h->chroma_weight[refn0][0][1][0],
1141                               h->chroma_weight[refn1][1][1][0],
1142                               h->chroma_weight[refn0][0][1][1] +
1143                               h->chroma_weight[refn1][1][1][1]);
1144         }
1145     } else {
1146         int list     = list1 ? 1 : 0;
1147         int refn     = h->ref_cache[list][scan8[n]];
1148         Picture *ref = &h->ref_list[list][refn];
1149         mc_dir_part(h, ref, n, square, height, delta, list,
1150                     dest_y, dest_cb, dest_cr, x_offset, y_offset,
1151                     qpix_put, chroma_put, pixel_shift, chroma_idc);
1152
1153         luma_weight_op(dest_y, h->mb_linesize, height,
1154                        h->luma_log2_weight_denom,
1155                        h->luma_weight[refn][list][0],
1156                        h->luma_weight[refn][list][1]);
1157         if (h->use_weight_chroma) {
1158             chroma_weight_op(dest_cb, h->mb_uvlinesize, chroma_height,
1159                              h->chroma_log2_weight_denom,
1160                              h->chroma_weight[refn][list][0][0],
1161                              h->chroma_weight[refn][list][0][1]);
1162             chroma_weight_op(dest_cr, h->mb_uvlinesize, chroma_height,
1163                              h->chroma_log2_weight_denom,
1164                              h->chroma_weight[refn][list][1][0],
1165                              h->chroma_weight[refn][list][1][1]);
1166         }
1167     }
1168 }
1169
1170 static av_always_inline void prefetch_motion(H264Context *h, int list,
1171                                              int pixel_shift, int chroma_idc)
1172 {
1173     /* fetch pixels for estimated mv 4 macroblocks ahead
1174      * optimized for 64byte cache lines */
1175     const int refn = h->ref_cache[list][scan8[0]];
1176     if (refn >= 0) {
1177         const int mx  = (h->mv_cache[list][scan8[0]][0] >> 2) + 16 * h->mb_x + 8;
1178         const int my  = (h->mv_cache[list][scan8[0]][1] >> 2) + 16 * h->mb_y;
1179         uint8_t **src = h->ref_list[list][refn].f.data;
1180         int off       = (mx << pixel_shift) +
1181                         (my + (h->mb_x & 3) * 4) * h->mb_linesize +
1182                         (64 << pixel_shift);
1183         h->vdsp.prefetch(src[0] + off, h->linesize, 4);
1184         if (chroma_idc == 3 /* yuv444 */) {
1185             h->vdsp.prefetch(src[1] + off, h->linesize, 4);
1186             h->vdsp.prefetch(src[2] + off, h->linesize, 4);
1187         } else {
1188             off= (((mx>>1)+64)<<pixel_shift) + ((my>>1) + (h->mb_x&7))*h->uvlinesize;
1189             h->vdsp.prefetch(src[1] + off, src[2] - src[1], 2);
1190         }
1191     }
1192 }
1193
1194 static void free_tables(H264Context *h, int free_rbsp)
1195 {
1196     int i;
1197     H264Context *hx;
1198
1199     av_freep(&h->intra4x4_pred_mode);
1200     av_freep(&h->chroma_pred_mode_table);
1201     av_freep(&h->cbp_table);
1202     av_freep(&h->mvd_table[0]);
1203     av_freep(&h->mvd_table[1]);
1204     av_freep(&h->direct_table);
1205     av_freep(&h->non_zero_count);
1206     av_freep(&h->slice_table_base);
1207     h->slice_table = NULL;
1208     av_freep(&h->list_counts);
1209
1210     av_freep(&h->mb2b_xy);
1211     av_freep(&h->mb2br_xy);
1212
1213     for (i = 0; i < 3; i++)
1214         av_freep(&h->visualization_buffer[i]);
1215
1216     av_buffer_pool_uninit(&h->qscale_table_pool);
1217     av_buffer_pool_uninit(&h->mb_type_pool);
1218     av_buffer_pool_uninit(&h->motion_val_pool);
1219     av_buffer_pool_uninit(&h->ref_index_pool);
1220
1221     if (free_rbsp && h->DPB) {
1222         for (i = 0; i < MAX_PICTURE_COUNT; i++)
1223             unref_picture(h, &h->DPB[i]);
1224         av_freep(&h->DPB);
1225     } else if (h->DPB) {
1226         for (i = 0; i < MAX_PICTURE_COUNT; i++)
1227             h->DPB[i].needs_realloc = 1;
1228     }
1229
1230     h->cur_pic_ptr = NULL;
1231
1232     for (i = 0; i < MAX_THREADS; i++) {
1233         hx = h->thread_context[i];
1234         if (!hx)
1235             continue;
1236         av_freep(&hx->top_borders[1]);
1237         av_freep(&hx->top_borders[0]);
1238         av_freep(&hx->bipred_scratchpad);
1239         av_freep(&hx->edge_emu_buffer);
1240         av_freep(&hx->dc_val_base);
1241         av_freep(&hx->me.scratchpad);
1242         av_freep(&hx->er.mb_index2xy);
1243         av_freep(&hx->er.error_status_table);
1244         av_freep(&hx->er.er_temp_buffer);
1245         av_freep(&hx->er.mbintra_table);
1246         av_freep(&hx->er.mbskip_table);
1247
1248         if (free_rbsp) {
1249             av_freep(&hx->rbsp_buffer[1]);
1250             av_freep(&hx->rbsp_buffer[0]);
1251             hx->rbsp_buffer_size[0] = 0;
1252             hx->rbsp_buffer_size[1] = 0;
1253         }
1254         if (i)
1255             av_freep(&h->thread_context[i]);
1256     }
1257 }
1258
1259 static void init_dequant8_coeff_table(H264Context *h)
1260 {
1261     int i, j, q, x;
1262     const int max_qp = 51 + 6 * (h->sps.bit_depth_luma - 8);
1263
1264     for (i = 0; i < 6; i++) {
1265         h->dequant8_coeff[i] = h->dequant8_buffer[i];
1266         for (j = 0; j < i; j++)
1267             if (!memcmp(h->pps.scaling_matrix8[j], h->pps.scaling_matrix8[i],
1268                         64 * sizeof(uint8_t))) {
1269                 h->dequant8_coeff[i] = h->dequant8_buffer[j];
1270                 break;
1271             }
1272         if (j < i)
1273             continue;
1274
1275         for (q = 0; q < max_qp + 1; q++) {
1276             int shift = div6[q];
1277             int idx   = rem6[q];
1278             for (x = 0; x < 64; x++)
1279                 h->dequant8_coeff[i][q][(x >> 3) | ((x & 7) << 3)] =
1280                     ((uint32_t)dequant8_coeff_init[idx][dequant8_coeff_init_scan[((x >> 1) & 12) | (x & 3)]] *
1281                      h->pps.scaling_matrix8[i][x]) << shift;
1282         }
1283     }
1284 }
1285
1286 static void init_dequant4_coeff_table(H264Context *h)
1287 {
1288     int i, j, q, x;
1289     const int max_qp = 51 + 6 * (h->sps.bit_depth_luma - 8);
1290     for (i = 0; i < 6; i++) {
1291         h->dequant4_coeff[i] = h->dequant4_buffer[i];
1292         for (j = 0; j < i; j++)
1293             if (!memcmp(h->pps.scaling_matrix4[j], h->pps.scaling_matrix4[i],
1294                         16 * sizeof(uint8_t))) {
1295                 h->dequant4_coeff[i] = h->dequant4_buffer[j];
1296                 break;
1297             }
1298         if (j < i)
1299             continue;
1300
1301         for (q = 0; q < max_qp + 1; q++) {
1302             int shift = div6[q] + 2;
1303             int idx   = rem6[q];
1304             for (x = 0; x < 16; x++)
1305                 h->dequant4_coeff[i][q][(x >> 2) | ((x << 2) & 0xF)] =
1306                     ((uint32_t)dequant4_coeff_init[idx][(x & 1) + ((x >> 2) & 1)] *
1307                      h->pps.scaling_matrix4[i][x]) << shift;
1308         }
1309     }
1310 }
1311
1312 static void init_dequant_tables(H264Context *h)
1313 {
1314     int i, x;
1315     init_dequant4_coeff_table(h);
1316     if (h->pps.transform_8x8_mode)
1317         init_dequant8_coeff_table(h);
1318     if (h->sps.transform_bypass) {
1319         for (i = 0; i < 6; i++)
1320             for (x = 0; x < 16; x++)
1321                 h->dequant4_coeff[i][0][x] = 1 << 6;
1322         if (h->pps.transform_8x8_mode)
1323             for (i = 0; i < 6; i++)
1324                 for (x = 0; x < 64; x++)
1325                     h->dequant8_coeff[i][0][x] = 1 << 6;
1326     }
1327 }
1328
1329 int ff_h264_alloc_tables(H264Context *h)
1330 {
1331     const int big_mb_num = h->mb_stride * (h->mb_height + 1);
1332     const int row_mb_num = 2*h->mb_stride*FFMAX(h->avctx->thread_count, 1);
1333     int x, y, i;
1334
1335     FF_ALLOCZ_OR_GOTO(h->avctx, h->intra4x4_pred_mode,
1336                       row_mb_num * 8 * sizeof(uint8_t), fail)
1337     FF_ALLOCZ_OR_GOTO(h->avctx, h->non_zero_count,
1338                       big_mb_num * 48 * sizeof(uint8_t), fail)
1339     FF_ALLOCZ_OR_GOTO(h->avctx, h->slice_table_base,
1340                       (big_mb_num + h->mb_stride) * sizeof(*h->slice_table_base), fail)
1341     FF_ALLOCZ_OR_GOTO(h->avctx, h->cbp_table,
1342                       big_mb_num * sizeof(uint16_t), fail)
1343     FF_ALLOCZ_OR_GOTO(h->avctx, h->chroma_pred_mode_table,
1344                       big_mb_num * sizeof(uint8_t), fail)
1345     FF_ALLOCZ_OR_GOTO(h->avctx, h->mvd_table[0],
1346                       16 * row_mb_num * sizeof(uint8_t), fail);
1347     FF_ALLOCZ_OR_GOTO(h->avctx, h->mvd_table[1],
1348                       16 * row_mb_num * sizeof(uint8_t), fail);
1349     FF_ALLOCZ_OR_GOTO(h->avctx, h->direct_table,
1350                       4 * big_mb_num * sizeof(uint8_t), fail);
1351     FF_ALLOCZ_OR_GOTO(h->avctx, h->list_counts,
1352                       big_mb_num * sizeof(uint8_t), fail)
1353
1354     memset(h->slice_table_base, -1,
1355            (big_mb_num + h->mb_stride) * sizeof(*h->slice_table_base));
1356     h->slice_table = h->slice_table_base + h->mb_stride * 2 + 1;
1357
1358     FF_ALLOCZ_OR_GOTO(h->avctx, h->mb2b_xy,
1359                       big_mb_num * sizeof(uint32_t), fail);
1360     FF_ALLOCZ_OR_GOTO(h->avctx, h->mb2br_xy,
1361                       big_mb_num * sizeof(uint32_t), fail);
1362     for (y = 0; y < h->mb_height; y++)
1363         for (x = 0; x < h->mb_width; x++) {
1364             const int mb_xy = x + y * h->mb_stride;
1365             const int b_xy  = 4 * x + 4 * y * h->b_stride;
1366
1367             h->mb2b_xy[mb_xy]  = b_xy;
1368             h->mb2br_xy[mb_xy] = 8 * (FMO ? mb_xy : (mb_xy % (2 * h->mb_stride)));
1369         }
1370
1371     if (!h->dequant4_coeff[0])
1372         init_dequant_tables(h);
1373
1374     if (!h->DPB) {
1375         h->DPB = av_mallocz_array(MAX_PICTURE_COUNT, sizeof(*h->DPB));
1376         if (!h->DPB)
1377             return AVERROR(ENOMEM);
1378         for (i = 0; i < MAX_PICTURE_COUNT; i++)
1379             avcodec_get_frame_defaults(&h->DPB[i].f);
1380         avcodec_get_frame_defaults(&h->cur_pic.f);
1381     }
1382
1383     return 0;
1384
1385 fail:
1386     free_tables(h, 1);
1387     return AVERROR(ENOMEM);
1388 }
1389
1390 /**
1391  * Mimic alloc_tables(), but for every context thread.
1392  */
1393 static void clone_tables(H264Context *dst, H264Context *src, int i)
1394 {
1395     dst->intra4x4_pred_mode     = src->intra4x4_pred_mode + i * 8 * 2 * src->mb_stride;
1396     dst->non_zero_count         = src->non_zero_count;
1397     dst->slice_table            = src->slice_table;
1398     dst->cbp_table              = src->cbp_table;
1399     dst->mb2b_xy                = src->mb2b_xy;
1400     dst->mb2br_xy               = src->mb2br_xy;
1401     dst->chroma_pred_mode_table = src->chroma_pred_mode_table;
1402     dst->mvd_table[0]           = src->mvd_table[0] + i * 8 * 2 * src->mb_stride;
1403     dst->mvd_table[1]           = src->mvd_table[1] + i * 8 * 2 * src->mb_stride;
1404     dst->direct_table           = src->direct_table;
1405     dst->list_counts            = src->list_counts;
1406     dst->DPB                    = src->DPB;
1407     dst->cur_pic_ptr            = src->cur_pic_ptr;
1408     dst->cur_pic                = src->cur_pic;
1409     dst->bipred_scratchpad      = NULL;
1410     dst->edge_emu_buffer        = NULL;
1411     dst->me.scratchpad          = NULL;
1412     ff_h264_pred_init(&dst->hpc, src->avctx->codec_id, src->sps.bit_depth_luma,
1413                       src->sps.chroma_format_idc);
1414 }
1415
1416 /**
1417  * Init context
1418  * Allocate buffers which are not shared amongst multiple threads.
1419  */
1420 static int context_init(H264Context *h)
1421 {
1422     ERContext *er = &h->er;
1423     int mb_array_size = h->mb_height * h->mb_stride;
1424     int y_size  = (2 * h->mb_width + 1) * (2 * h->mb_height + 1);
1425     int c_size  = h->mb_stride * (h->mb_height + 1);
1426     int yc_size = y_size + 2   * c_size;
1427     int x, y, i;
1428
1429     FF_ALLOCZ_OR_GOTO(h->avctx, h->top_borders[0],
1430                       h->mb_width * 16 * 3 * sizeof(uint8_t) * 2, fail)
1431     FF_ALLOCZ_OR_GOTO(h->avctx, h->top_borders[1],
1432                       h->mb_width * 16 * 3 * sizeof(uint8_t) * 2, fail)
1433
1434     h->ref_cache[0][scan8[5]  + 1] =
1435     h->ref_cache[0][scan8[7]  + 1] =
1436     h->ref_cache[0][scan8[13] + 1] =
1437     h->ref_cache[1][scan8[5]  + 1] =
1438     h->ref_cache[1][scan8[7]  + 1] =
1439     h->ref_cache[1][scan8[13] + 1] = PART_NOT_AVAILABLE;
1440
1441     if (CONFIG_ERROR_RESILIENCE) {
1442         /* init ER */
1443         er->avctx          = h->avctx;
1444         er->dsp            = &h->dsp;
1445         er->decode_mb      = h264_er_decode_mb;
1446         er->opaque         = h;
1447         er->quarter_sample = 1;
1448
1449         er->mb_num      = h->mb_num;
1450         er->mb_width    = h->mb_width;
1451         er->mb_height   = h->mb_height;
1452         er->mb_stride   = h->mb_stride;
1453         er->b8_stride   = h->mb_width * 2 + 1;
1454
1455         FF_ALLOCZ_OR_GOTO(h->avctx, er->mb_index2xy, (h->mb_num + 1) * sizeof(int),
1456                           fail); // error ressilience code looks cleaner with this
1457         for (y = 0; y < h->mb_height; y++)
1458             for (x = 0; x < h->mb_width; x++)
1459                 er->mb_index2xy[x + y * h->mb_width] = x + y * h->mb_stride;
1460
1461         er->mb_index2xy[h->mb_height * h->mb_width] = (h->mb_height - 1) *
1462                                                       h->mb_stride + h->mb_width;
1463
1464         FF_ALLOCZ_OR_GOTO(h->avctx, er->error_status_table,
1465                           mb_array_size * sizeof(uint8_t), fail);
1466
1467         FF_ALLOC_OR_GOTO(h->avctx, er->mbintra_table, mb_array_size, fail);
1468         memset(er->mbintra_table, 1, mb_array_size);
1469
1470         FF_ALLOCZ_OR_GOTO(h->avctx, er->mbskip_table, mb_array_size + 2, fail);
1471
1472         FF_ALLOC_OR_GOTO(h->avctx, er->er_temp_buffer, h->mb_height * h->mb_stride,
1473                          fail);
1474
1475         FF_ALLOCZ_OR_GOTO(h->avctx, h->dc_val_base, yc_size * sizeof(int16_t), fail);
1476         er->dc_val[0] = h->dc_val_base + h->mb_width * 2 + 2;
1477         er->dc_val[1] = h->dc_val_base + y_size + h->mb_stride + 1;
1478         er->dc_val[2] = er->dc_val[1] + c_size;
1479         for (i = 0; i < yc_size; i++)
1480             h->dc_val_base[i] = 1024;
1481     }
1482
1483     return 0;
1484
1485 fail:
1486     return AVERROR(ENOMEM); // free_tables will clean up for us
1487 }
1488
1489 static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size,
1490                             int parse_extradata);
1491
1492 int ff_h264_decode_extradata(H264Context *h, const uint8_t *buf, int size)
1493 {
1494     AVCodecContext *avctx = h->avctx;
1495     int ret;
1496
1497     if (!buf || size <= 0)
1498         return -1;
1499
1500     if (buf[0] == 1) {
1501         int i, cnt, nalsize;
1502         const unsigned char *p = buf;
1503
1504         h->is_avc = 1;
1505
1506         if (size < 7) {
1507             av_log(avctx, AV_LOG_ERROR, "avcC too short\n");
1508             return AVERROR_INVALIDDATA;
1509         }
1510         /* sps and pps in the avcC always have length coded with 2 bytes,
1511          * so put a fake nal_length_size = 2 while parsing them */
1512         h->nal_length_size = 2;
1513         // Decode sps from avcC
1514         cnt = *(p + 5) & 0x1f; // Number of sps
1515         p  += 6;
1516         for (i = 0; i < cnt; i++) {
1517             nalsize = AV_RB16(p) + 2;
1518             if(nalsize > size - (p-buf))
1519                 return AVERROR_INVALIDDATA;
1520             ret = decode_nal_units(h, p, nalsize, 1);
1521             if (ret < 0) {
1522                 av_log(avctx, AV_LOG_ERROR,
1523                        "Decoding sps %d from avcC failed\n", i);
1524                 return ret;
1525             }
1526             p += nalsize;
1527         }
1528         // Decode pps from avcC
1529         cnt = *(p++); // Number of pps
1530         for (i = 0; i < cnt; i++) {
1531             nalsize = AV_RB16(p) + 2;
1532             if(nalsize > size - (p-buf))
1533                 return AVERROR_INVALIDDATA;
1534             ret = decode_nal_units(h, p, nalsize, 1);
1535             if (ret < 0) {
1536                 av_log(avctx, AV_LOG_ERROR,
1537                        "Decoding pps %d from avcC failed\n", i);
1538                 return ret;
1539             }
1540             p += nalsize;
1541         }
1542         // Now store right nal length size, that will be used to parse all other nals
1543         h->nal_length_size = (buf[4] & 0x03) + 1;
1544     } else {
1545         h->is_avc = 0;
1546         ret = decode_nal_units(h, buf, size, 1);
1547         if (ret < 0)
1548             return ret;
1549     }
1550     return size;
1551 }
1552
1553 av_cold int ff_h264_decode_init(AVCodecContext *avctx)
1554 {
1555     H264Context *h = avctx->priv_data;
1556     int i;
1557     int ret;
1558
1559     h->avctx = avctx;
1560
1561     h->bit_depth_luma    = 8;
1562     h->chroma_format_idc = 1;
1563
1564     h->avctx->bits_per_raw_sample = 8;
1565     h->cur_chroma_format_idc = 1;
1566
1567     ff_h264dsp_init(&h->h264dsp, 8, 1);
1568     av_assert0(h->sps.bit_depth_chroma == 0);
1569     ff_h264chroma_init(&h->h264chroma, h->sps.bit_depth_chroma);
1570     ff_h264qpel_init(&h->h264qpel, 8);
1571     ff_h264_pred_init(&h->hpc, h->avctx->codec_id, 8, 1);
1572
1573     h->dequant_coeff_pps = -1;
1574     h->current_sps_id = -1;
1575
1576     /* needed so that IDCT permutation is known early */
1577     if (CONFIG_ERROR_RESILIENCE)
1578         ff_dsputil_init(&h->dsp, h->avctx);
1579     ff_videodsp_init(&h->vdsp, 8);
1580
1581     memset(h->pps.scaling_matrix4, 16, 6 * 16 * sizeof(uint8_t));
1582     memset(h->pps.scaling_matrix8, 16, 2 * 64 * sizeof(uint8_t));
1583
1584     h->picture_structure   = PICT_FRAME;
1585     h->slice_context_count = 1;
1586     h->workaround_bugs     = avctx->workaround_bugs;
1587     h->flags               = avctx->flags;
1588
1589     /* set defaults */
1590     // s->decode_mb = ff_h263_decode_mb;
1591     if (!avctx->has_b_frames)
1592         h->low_delay = 1;
1593
1594     avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
1595
1596     ff_h264_decode_init_vlc();
1597
1598     ff_init_cabac_states();
1599
1600     h->pixel_shift        = 0;
1601     h->sps.bit_depth_luma = avctx->bits_per_raw_sample = 8;
1602
1603     h->thread_context[0] = h;
1604     h->outputed_poc      = h->next_outputed_poc = INT_MIN;
1605     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
1606         h->last_pocs[i] = INT_MIN;
1607     h->prev_poc_msb = 1 << 16;
1608     h->prev_frame_num = -1;
1609     h->x264_build   = -1;
1610     h->sei_fpa.frame_packing_arrangement_cancel_flag = -1;
1611     ff_h264_reset_sei(h);
1612     if (avctx->codec_id == AV_CODEC_ID_H264) {
1613         if (avctx->ticks_per_frame == 1) {
1614             if(h->avctx->time_base.den < INT_MAX/2) {
1615                 h->avctx->time_base.den *= 2;
1616             } else
1617                 h->avctx->time_base.num /= 2;
1618         }
1619         avctx->ticks_per_frame = 2;
1620     }
1621
1622     if (avctx->extradata_size > 0 && avctx->extradata) {
1623         ret = ff_h264_decode_extradata(h, avctx->extradata, avctx->extradata_size);
1624         if (ret < 0) {
1625             ff_h264_free_context(h);
1626             return ret;
1627         }
1628     }
1629
1630     if (h->sps.bitstream_restriction_flag &&
1631         h->avctx->has_b_frames < h->sps.num_reorder_frames) {
1632         h->avctx->has_b_frames = h->sps.num_reorder_frames;
1633         h->low_delay           = 0;
1634     }
1635
1636     avctx->internal->allocate_progress = 1;
1637
1638     flush_change(h);
1639
1640     return 0;
1641 }
1642
1643 #define IN_RANGE(a, b, size) (((a) >= (b)) && ((a) < ((b) + (size))))
1644 #undef REBASE_PICTURE
1645 #define REBASE_PICTURE(pic, new_ctx, old_ctx)             \
1646     ((pic && pic >= old_ctx->DPB &&                       \
1647       pic < old_ctx->DPB + MAX_PICTURE_COUNT) ?           \
1648      &new_ctx->DPB[pic - old_ctx->DPB] : NULL)
1649
1650 static void copy_picture_range(Picture **to, Picture **from, int count,
1651                                H264Context *new_base,
1652                                H264Context *old_base)
1653 {
1654     int i;
1655
1656     for (i = 0; i < count; i++) {
1657         assert((IN_RANGE(from[i], old_base, sizeof(*old_base)) ||
1658                 IN_RANGE(from[i], old_base->DPB,
1659                          sizeof(Picture) * MAX_PICTURE_COUNT) ||
1660                 !from[i]));
1661         to[i] = REBASE_PICTURE(from[i], new_base, old_base);
1662     }
1663 }
1664
1665 static int copy_parameter_set(void **to, void **from, int count, int size)
1666 {
1667     int i;
1668
1669     for (i = 0; i < count; i++) {
1670         if (to[i] && !from[i]) {
1671             av_freep(&to[i]);
1672         } else if (from[i] && !to[i]) {
1673             to[i] = av_malloc(size);
1674             if (!to[i])
1675                 return AVERROR(ENOMEM);
1676         }
1677
1678         if (from[i])
1679             memcpy(to[i], from[i], size);
1680     }
1681
1682     return 0;
1683 }
1684
1685 static int decode_init_thread_copy(AVCodecContext *avctx)
1686 {
1687     H264Context *h = avctx->priv_data;
1688
1689     if (!avctx->internal->is_copy)
1690         return 0;
1691     memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
1692     memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
1693
1694     h->rbsp_buffer[0] = NULL;
1695     h->rbsp_buffer[1] = NULL;
1696     h->rbsp_buffer_size[0] = 0;
1697     h->rbsp_buffer_size[1] = 0;
1698     h->context_initialized = 0;
1699
1700     return 0;
1701 }
1702
1703 #define copy_fields(to, from, start_field, end_field)                   \
1704     memcpy(&to->start_field, &from->start_field,                        \
1705            (char *)&to->end_field - (char *)&to->start_field)
1706
1707 static int h264_slice_header_init(H264Context *, int);
1708
1709 static int h264_set_parameter_from_sps(H264Context *h);
1710
1711 static int decode_update_thread_context(AVCodecContext *dst,
1712                                         const AVCodecContext *src)
1713 {
1714     H264Context *h = dst->priv_data, *h1 = src->priv_data;
1715     int inited = h->context_initialized, err = 0;
1716     int context_reinitialized = 0;
1717     int i, ret;
1718
1719     if (dst == src)
1720         return 0;
1721
1722     if (inited &&
1723         (h->width                 != h1->width                 ||
1724          h->height                != h1->height                ||
1725          h->mb_width              != h1->mb_width              ||
1726          h->mb_height             != h1->mb_height             ||
1727          h->sps.bit_depth_luma    != h1->sps.bit_depth_luma    ||
1728          h->sps.chroma_format_idc != h1->sps.chroma_format_idc ||
1729          h->sps.colorspace        != h1->sps.colorspace)) {
1730
1731         /* set bits_per_raw_sample to the previous value. the check for changed
1732          * bit depth in h264_set_parameter_from_sps() uses it and sets it to
1733          * the current value */
1734         h->avctx->bits_per_raw_sample = h->sps.bit_depth_luma;
1735
1736         av_freep(&h->bipred_scratchpad);
1737
1738         h->width     = h1->width;
1739         h->height    = h1->height;
1740         h->mb_height = h1->mb_height;
1741         h->mb_width  = h1->mb_width;
1742         h->mb_num    = h1->mb_num;
1743         h->mb_stride = h1->mb_stride;
1744         h->b_stride  = h1->b_stride;
1745         // SPS/PPS
1746         if ((ret = copy_parameter_set((void **)h->sps_buffers,
1747                                       (void **)h1->sps_buffers,
1748                                       MAX_SPS_COUNT, sizeof(SPS))) < 0)
1749             return ret;
1750         h->sps = h1->sps;
1751         if ((ret = copy_parameter_set((void **)h->pps_buffers,
1752                                       (void **)h1->pps_buffers,
1753                                       MAX_PPS_COUNT, sizeof(PPS))) < 0)
1754             return ret;
1755         h->pps = h1->pps;
1756
1757         if ((err = h264_slice_header_init(h, 1)) < 0) {
1758             av_log(h->avctx, AV_LOG_ERROR, "h264_slice_header_init() failed");
1759             return err;
1760         }
1761         context_reinitialized = 1;
1762
1763 #if 0
1764         h264_set_parameter_from_sps(h);
1765         //Note we set context_reinitialized which will cause h264_set_parameter_from_sps to be reexecuted
1766         h->cur_chroma_format_idc = h1->cur_chroma_format_idc;
1767 #endif
1768     }
1769     /* update linesize on resize for h264. The h264 decoder doesn't
1770      * necessarily call ff_MPV_frame_start in the new thread */
1771     h->linesize   = h1->linesize;
1772     h->uvlinesize = h1->uvlinesize;
1773
1774     /* copy block_offset since frame_start may not be called */
1775     memcpy(h->block_offset, h1->block_offset, sizeof(h->block_offset));
1776
1777     if (!inited) {
1778         for (i = 0; i < MAX_SPS_COUNT; i++)
1779             av_freep(h->sps_buffers + i);
1780
1781         for (i = 0; i < MAX_PPS_COUNT; i++)
1782             av_freep(h->pps_buffers + i);
1783
1784         av_freep(&h->rbsp_buffer[0]);
1785         av_freep(&h->rbsp_buffer[1]);
1786         memcpy(h, h1, offsetof(H264Context, intra_pcm_ptr));
1787         memcpy(&h->cabac, &h1->cabac,
1788                sizeof(H264Context) - offsetof(H264Context, cabac));
1789         av_assert0((void*)&h->cabac == &h->mb_padding + 1);
1790
1791         memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
1792         memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
1793
1794         memset(&h->er, 0, sizeof(h->er));
1795         memset(&h->me, 0, sizeof(h->me));
1796         memset(&h->mb, 0, sizeof(h->mb));
1797         memset(&h->mb_luma_dc, 0, sizeof(h->mb_luma_dc));
1798         memset(&h->mb_padding, 0, sizeof(h->mb_padding));
1799
1800         h->avctx             = dst;
1801         h->DPB               = NULL;
1802         h->qscale_table_pool = NULL;
1803         h->mb_type_pool      = NULL;
1804         h->ref_index_pool    = NULL;
1805         h->motion_val_pool   = NULL;
1806         for (i = 0; i < 2; i++) {
1807             h->rbsp_buffer[i] = NULL;
1808             h->rbsp_buffer_size[i] = 0;
1809         }
1810
1811         if (h1->context_initialized) {
1812         h->context_initialized = 0;
1813
1814         memset(&h->cur_pic, 0, sizeof(h->cur_pic));
1815         avcodec_get_frame_defaults(&h->cur_pic.f);
1816         h->cur_pic.tf.f = &h->cur_pic.f;
1817
1818         ret = ff_h264_alloc_tables(h);
1819         if (ret < 0) {
1820             av_log(dst, AV_LOG_ERROR, "Could not allocate memory for h264\n");
1821             return ret;
1822         }
1823         ret = context_init(h);
1824         if (ret < 0) {
1825             av_log(dst, AV_LOG_ERROR, "context_init() failed.\n");
1826             return ret;
1827         }
1828         }
1829
1830         h->bipred_scratchpad = NULL;
1831         h->edge_emu_buffer   = NULL;
1832
1833         h->thread_context[0] = h;
1834         h->context_initialized = h1->context_initialized;
1835     }
1836
1837     h->avctx->coded_height  = h1->avctx->coded_height;
1838     h->avctx->coded_width   = h1->avctx->coded_width;
1839     h->avctx->width         = h1->avctx->width;
1840     h->avctx->height        = h1->avctx->height;
1841     h->coded_picture_number = h1->coded_picture_number;
1842     h->first_field          = h1->first_field;
1843     h->picture_structure    = h1->picture_structure;
1844     h->qscale               = h1->qscale;
1845     h->droppable            = h1->droppable;
1846     h->data_partitioning    = h1->data_partitioning;
1847     h->low_delay            = h1->low_delay;
1848
1849     for (i = 0; h->DPB && i < MAX_PICTURE_COUNT; i++) {
1850         unref_picture(h, &h->DPB[i]);
1851         if (h1->DPB[i].f.data[0] &&
1852             (ret = ref_picture(h, &h->DPB[i], &h1->DPB[i])) < 0)
1853             return ret;
1854     }
1855
1856     h->cur_pic_ptr = REBASE_PICTURE(h1->cur_pic_ptr, h, h1);
1857     unref_picture(h, &h->cur_pic);
1858     if (h1->cur_pic.f.buf[0] && (ret = ref_picture(h, &h->cur_pic, &h1->cur_pic)) < 0)
1859         return ret;
1860
1861     h->workaround_bugs = h1->workaround_bugs;
1862     h->low_delay       = h1->low_delay;
1863     h->droppable       = h1->droppable;
1864
1865     // extradata/NAL handling
1866     h->is_avc = h1->is_avc;
1867
1868     // SPS/PPS
1869     if ((ret = copy_parameter_set((void **)h->sps_buffers,
1870                                   (void **)h1->sps_buffers,
1871                                   MAX_SPS_COUNT, sizeof(SPS))) < 0)
1872         return ret;
1873     h->sps = h1->sps;
1874     if ((ret = copy_parameter_set((void **)h->pps_buffers,
1875                                   (void **)h1->pps_buffers,
1876                                   MAX_PPS_COUNT, sizeof(PPS))) < 0)
1877         return ret;
1878     h->pps = h1->pps;
1879
1880     // Dequantization matrices
1881     // FIXME these are big - can they be only copied when PPS changes?
1882     copy_fields(h, h1, dequant4_buffer, dequant4_coeff);
1883
1884     for (i = 0; i < 6; i++)
1885         h->dequant4_coeff[i] = h->dequant4_buffer[0] +
1886                                (h1->dequant4_coeff[i] - h1->dequant4_buffer[0]);
1887
1888     for (i = 0; i < 6; i++)
1889         h->dequant8_coeff[i] = h->dequant8_buffer[0] +
1890                                (h1->dequant8_coeff[i] - h1->dequant8_buffer[0]);
1891
1892     h->dequant_coeff_pps = h1->dequant_coeff_pps;
1893
1894     // POC timing
1895     copy_fields(h, h1, poc_lsb, redundant_pic_count);
1896
1897     // reference lists
1898     copy_fields(h, h1, short_ref, cabac_init_idc);
1899
1900     copy_picture_range(h->short_ref, h1->short_ref, 32, h, h1);
1901     copy_picture_range(h->long_ref, h1->long_ref, 32, h, h1);
1902     copy_picture_range(h->delayed_pic, h1->delayed_pic,
1903                        MAX_DELAYED_PIC_COUNT + 2, h, h1);
1904
1905     h->frame_recovered       = h1->frame_recovered;
1906
1907     if (context_reinitialized)
1908         h264_set_parameter_from_sps(h);
1909
1910     if (!h->cur_pic_ptr)
1911         return 0;
1912
1913     if (!h->droppable) {
1914         err = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
1915         h->prev_poc_msb = h->poc_msb;
1916         h->prev_poc_lsb = h->poc_lsb;
1917     }
1918     h->prev_frame_num_offset = h->frame_num_offset;
1919     h->prev_frame_num        = h->frame_num;
1920     h->outputed_poc          = h->next_outputed_poc;
1921
1922     h->recovery_frame        = h1->recovery_frame;
1923
1924     return err;
1925 }
1926
1927 static int h264_frame_start(H264Context *h)
1928 {
1929     Picture *pic;
1930     int i, ret;
1931     const int pixel_shift = h->pixel_shift;
1932     int c[4] = {
1933         1<<(h->sps.bit_depth_luma-1),
1934         1<<(h->sps.bit_depth_chroma-1),
1935         1<<(h->sps.bit_depth_chroma-1),
1936         -1
1937     };
1938
1939     if (!ff_thread_can_start_frame(h->avctx)) {
1940         av_log(h->avctx, AV_LOG_ERROR, "Attempt to start a frame outside SETUP state\n");
1941         return -1;
1942     }
1943
1944     release_unused_pictures(h, 1);
1945     h->cur_pic_ptr = NULL;
1946
1947     i = find_unused_picture(h);
1948     if (i < 0) {
1949         av_log(h->avctx, AV_LOG_ERROR, "no frame buffer available\n");
1950         return i;
1951     }
1952     pic = &h->DPB[i];
1953
1954     pic->reference              = h->droppable ? 0 : h->picture_structure;
1955     pic->f.coded_picture_number = h->coded_picture_number++;
1956     pic->field_picture          = h->picture_structure != PICT_FRAME;
1957
1958     /*
1959      * Zero key_frame here; IDR markings per slice in frame or fields are ORed
1960      * in later.
1961      * See decode_nal_units().
1962      */
1963     pic->f.key_frame = 0;
1964     pic->mmco_reset  = 0;
1965     pic->recovered   = 0;
1966
1967     if ((ret = alloc_picture(h, pic)) < 0)
1968         return ret;
1969     if(!h->frame_recovered && !h->avctx->hwaccel &&
1970        !(h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU))
1971         avpriv_color_frame(&pic->f, c);
1972
1973     h->cur_pic_ptr = pic;
1974     unref_picture(h, &h->cur_pic);
1975     if ((ret = ref_picture(h, &h->cur_pic, h->cur_pic_ptr)) < 0)
1976         return ret;
1977
1978     if (CONFIG_ERROR_RESILIENCE) {
1979         ff_er_frame_start(&h->er);
1980         h->er.last_pic =
1981         h->er.next_pic = NULL;
1982     }
1983
1984     assert(h->linesize && h->uvlinesize);
1985
1986     for (i = 0; i < 16; i++) {
1987         h->block_offset[i]           = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * h->linesize * ((scan8[i] - scan8[0]) >> 3);
1988         h->block_offset[48 + i]      = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * h->linesize * ((scan8[i] - scan8[0]) >> 3);
1989     }
1990     for (i = 0; i < 16; i++) {
1991         h->block_offset[16 + i]      =
1992         h->block_offset[32 + i]      = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * h->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
1993         h->block_offset[48 + 16 + i] =
1994         h->block_offset[48 + 32 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * h->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
1995     }
1996
1997     // s->decode = (h->flags & CODEC_FLAG_PSNR) || !s->encoding ||
1998     //             h->cur_pic.reference /* || h->contains_intra */ || 1;
1999
2000     /* We mark the current picture as non-reference after allocating it, so
2001      * that if we break out due to an error it can be released automatically
2002      * in the next ff_MPV_frame_start().
2003      */
2004     h->cur_pic_ptr->reference = 0;
2005
2006     h->cur_pic_ptr->field_poc[0] = h->cur_pic_ptr->field_poc[1] = INT_MAX;
2007
2008     h->next_output_pic = NULL;
2009
2010     assert(h->cur_pic_ptr->long_ref == 0);
2011
2012     return 0;
2013 }
2014
2015 /**
2016  * Run setup operations that must be run after slice header decoding.
2017  * This includes finding the next displayed frame.
2018  *
2019  * @param h h264 master context
2020  * @param setup_finished enough NALs have been read that we can call
2021  * ff_thread_finish_setup()
2022  */
2023 static void decode_postinit(H264Context *h, int setup_finished)
2024 {
2025     Picture *out = h->cur_pic_ptr;
2026     Picture *cur = h->cur_pic_ptr;
2027     int i, pics, out_of_order, out_idx;
2028
2029     h->cur_pic_ptr->f.pict_type = h->pict_type;
2030
2031     if (h->next_output_pic)
2032         return;
2033
2034     if (cur->field_poc[0] == INT_MAX || cur->field_poc[1] == INT_MAX) {
2035         /* FIXME: if we have two PAFF fields in one packet, we can't start
2036          * the next thread here. If we have one field per packet, we can.
2037          * The check in decode_nal_units() is not good enough to find this
2038          * yet, so we assume the worst for now. */
2039         // if (setup_finished)
2040         //    ff_thread_finish_setup(h->avctx);
2041         return;
2042     }
2043
2044     cur->f.interlaced_frame = 0;
2045     cur->f.repeat_pict      = 0;
2046
2047     /* Signal interlacing information externally. */
2048     /* Prioritize picture timing SEI information over used
2049      * decoding process if it exists. */
2050
2051     if (h->sps.pic_struct_present_flag) {
2052         switch (h->sei_pic_struct) {
2053         case SEI_PIC_STRUCT_FRAME:
2054             break;
2055         case SEI_PIC_STRUCT_TOP_FIELD:
2056         case SEI_PIC_STRUCT_BOTTOM_FIELD:
2057             cur->f.interlaced_frame = 1;
2058             break;
2059         case SEI_PIC_STRUCT_TOP_BOTTOM:
2060         case SEI_PIC_STRUCT_BOTTOM_TOP:
2061             if (FIELD_OR_MBAFF_PICTURE(h))
2062                 cur->f.interlaced_frame = 1;
2063             else
2064                 // try to flag soft telecine progressive
2065                 cur->f.interlaced_frame = h->prev_interlaced_frame;
2066             break;
2067         case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
2068         case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
2069             /* Signal the possibility of telecined film externally
2070              * (pic_struct 5,6). From these hints, let the applications
2071              * decide if they apply deinterlacing. */
2072             cur->f.repeat_pict = 1;
2073             break;
2074         case SEI_PIC_STRUCT_FRAME_DOUBLING:
2075             cur->f.repeat_pict = 2;
2076             break;
2077         case SEI_PIC_STRUCT_FRAME_TRIPLING:
2078             cur->f.repeat_pict = 4;
2079             break;
2080         }
2081
2082         if ((h->sei_ct_type & 3) &&
2083             h->sei_pic_struct <= SEI_PIC_STRUCT_BOTTOM_TOP)
2084             cur->f.interlaced_frame = (h->sei_ct_type & (1 << 1)) != 0;
2085     } else {
2086         /* Derive interlacing flag from used decoding process. */
2087         cur->f.interlaced_frame = FIELD_OR_MBAFF_PICTURE(h);
2088     }
2089     h->prev_interlaced_frame = cur->f.interlaced_frame;
2090
2091     if (cur->field_poc[0] != cur->field_poc[1]) {
2092         /* Derive top_field_first from field pocs. */
2093         cur->f.top_field_first = cur->field_poc[0] < cur->field_poc[1];
2094     } else {
2095         if (cur->f.interlaced_frame || h->sps.pic_struct_present_flag) {
2096             /* Use picture timing SEI information. Even if it is a
2097              * information of a past frame, better than nothing. */
2098             if (h->sei_pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM ||
2099                 h->sei_pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM_TOP)
2100                 cur->f.top_field_first = 1;
2101             else
2102                 cur->f.top_field_first = 0;
2103         } else {
2104             /* Most likely progressive */
2105             cur->f.top_field_first = 0;
2106         }
2107     }
2108
2109     cur->mmco_reset = h->mmco_reset;
2110     h->mmco_reset = 0;
2111     // FIXME do something with unavailable reference frames
2112
2113     /* Sort B-frames into display order */
2114
2115     if (h->sps.bitstream_restriction_flag &&
2116         h->avctx->has_b_frames < h->sps.num_reorder_frames) {
2117         h->avctx->has_b_frames = h->sps.num_reorder_frames;
2118         h->low_delay           = 0;
2119     }
2120
2121     if (h->avctx->strict_std_compliance >= FF_COMPLIANCE_STRICT &&
2122         !h->sps.bitstream_restriction_flag) {
2123         h->avctx->has_b_frames = MAX_DELAYED_PIC_COUNT - 1;
2124         h->low_delay           = 0;
2125     }
2126
2127     for (i = 0; 1; i++) {
2128         if(i == MAX_DELAYED_PIC_COUNT || cur->poc < h->last_pocs[i]){
2129             if(i)
2130                 h->last_pocs[i-1] = cur->poc;
2131             break;
2132         } else if(i) {
2133             h->last_pocs[i-1]= h->last_pocs[i];
2134         }
2135     }
2136     out_of_order = MAX_DELAYED_PIC_COUNT - i;
2137     if(   cur->f.pict_type == AV_PICTURE_TYPE_B
2138        || (h->last_pocs[MAX_DELAYED_PIC_COUNT-2] > INT_MIN && h->last_pocs[MAX_DELAYED_PIC_COUNT-1] - h->last_pocs[MAX_DELAYED_PIC_COUNT-2] > 2))
2139         out_of_order = FFMAX(out_of_order, 1);
2140     if (out_of_order == MAX_DELAYED_PIC_COUNT) {
2141         av_log(h->avctx, AV_LOG_VERBOSE, "Invalid POC %d<%d\n", cur->poc, h->last_pocs[0]);
2142         for (i = 1; i < MAX_DELAYED_PIC_COUNT; i++)
2143             h->last_pocs[i] = INT_MIN;
2144         h->last_pocs[0] = cur->poc;
2145         cur->mmco_reset = 1;
2146     } else if(h->avctx->has_b_frames < out_of_order && !h->sps.bitstream_restriction_flag){
2147         av_log(h->avctx, AV_LOG_VERBOSE, "Increasing reorder buffer to %d\n", out_of_order);
2148         h->avctx->has_b_frames = out_of_order;
2149         h->low_delay = 0;
2150     }
2151
2152     pics = 0;
2153     while (h->delayed_pic[pics])
2154         pics++;
2155
2156     av_assert0(pics <= MAX_DELAYED_PIC_COUNT);
2157
2158     h->delayed_pic[pics++] = cur;
2159     if (cur->reference == 0)
2160         cur->reference = DELAYED_PIC_REF;
2161
2162     out = h->delayed_pic[0];
2163     out_idx = 0;
2164     for (i = 1; h->delayed_pic[i] &&
2165                 !h->delayed_pic[i]->f.key_frame &&
2166                 !h->delayed_pic[i]->mmco_reset;
2167          i++)
2168         if (h->delayed_pic[i]->poc < out->poc) {
2169             out     = h->delayed_pic[i];
2170             out_idx = i;
2171         }
2172     if (h->avctx->has_b_frames == 0 &&
2173         (h->delayed_pic[0]->f.key_frame || h->delayed_pic[0]->mmco_reset))
2174         h->next_outputed_poc = INT_MIN;
2175     out_of_order = out->poc < h->next_outputed_poc;
2176
2177     if (out_of_order || pics > h->avctx->has_b_frames) {
2178         out->reference &= ~DELAYED_PIC_REF;
2179         // for frame threading, the owner must be the second field's thread or
2180         // else the first thread can release the picture and reuse it unsafely
2181         for (i = out_idx; h->delayed_pic[i]; i++)
2182             h->delayed_pic[i] = h->delayed_pic[i + 1];
2183     }
2184     if (!out_of_order && pics > h->avctx->has_b_frames) {
2185         h->next_output_pic = out;
2186         if (out_idx == 0 && h->delayed_pic[0] && (h->delayed_pic[0]->f.key_frame || h->delayed_pic[0]->mmco_reset)) {
2187             h->next_outputed_poc = INT_MIN;
2188         } else
2189             h->next_outputed_poc = out->poc;
2190     } else {
2191         av_log(h->avctx, AV_LOG_DEBUG, "no picture %s\n", out_of_order ? "ooo" : "");
2192     }
2193
2194     if (h->next_output_pic) {
2195         if (h->next_output_pic->recovered) {
2196             // We have reached an recovery point and all frames after it in
2197             // display order are "recovered".
2198             h->frame_recovered |= FRAME_RECOVERED_SEI;
2199         }
2200         h->next_output_pic->recovered |= !!(h->frame_recovered & FRAME_RECOVERED_SEI);
2201     }
2202
2203     if (setup_finished && !h->avctx->hwaccel)
2204         ff_thread_finish_setup(h->avctx);
2205 }
2206
2207 static av_always_inline void backup_mb_border(H264Context *h, uint8_t *src_y,
2208                                               uint8_t *src_cb, uint8_t *src_cr,
2209                                               int linesize, int uvlinesize,
2210                                               int simple)
2211 {
2212     uint8_t *top_border;
2213     int top_idx = 1;
2214     const int pixel_shift = h->pixel_shift;
2215     int chroma444 = CHROMA444(h);
2216     int chroma422 = CHROMA422(h);
2217
2218     src_y  -= linesize;
2219     src_cb -= uvlinesize;
2220     src_cr -= uvlinesize;
2221
2222     if (!simple && FRAME_MBAFF(h)) {
2223         if (h->mb_y & 1) {
2224             if (!MB_MBAFF(h)) {
2225                 top_border = h->top_borders[0][h->mb_x];
2226                 AV_COPY128(top_border, src_y + 15 * linesize);
2227                 if (pixel_shift)
2228                     AV_COPY128(top_border + 16, src_y + 15 * linesize + 16);
2229                 if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
2230                     if (chroma444) {
2231                         if (pixel_shift) {
2232                             AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
2233                             AV_COPY128(top_border + 48, src_cb + 15 * uvlinesize + 16);
2234                             AV_COPY128(top_border + 64, src_cr + 15 * uvlinesize);
2235                             AV_COPY128(top_border + 80, src_cr + 15 * uvlinesize + 16);
2236                         } else {
2237                             AV_COPY128(top_border + 16, src_cb + 15 * uvlinesize);
2238                             AV_COPY128(top_border + 32, src_cr + 15 * uvlinesize);
2239                         }
2240                     } else if (chroma422) {
2241                         if (pixel_shift) {
2242                             AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
2243                             AV_COPY128(top_border + 48, src_cr + 15 * uvlinesize);
2244                         } else {
2245                             AV_COPY64(top_border + 16, src_cb + 15 * uvlinesize);
2246                             AV_COPY64(top_border + 24, src_cr + 15 * uvlinesize);
2247                         }
2248                     } else {
2249                         if (pixel_shift) {
2250                             AV_COPY128(top_border + 32, src_cb + 7 * uvlinesize);
2251                             AV_COPY128(top_border + 48, src_cr + 7 * uvlinesize);
2252                         } else {
2253                             AV_COPY64(top_border + 16, src_cb + 7 * uvlinesize);
2254                             AV_COPY64(top_border + 24, src_cr + 7 * uvlinesize);
2255                         }
2256                     }
2257                 }
2258             }
2259         } else if (MB_MBAFF(h)) {
2260             top_idx = 0;
2261         } else
2262             return;
2263     }
2264
2265     top_border = h->top_borders[top_idx][h->mb_x];
2266     /* There are two lines saved, the line above the top macroblock
2267      * of a pair, and the line above the bottom macroblock. */
2268     AV_COPY128(top_border, src_y + 16 * linesize);
2269     if (pixel_shift)
2270         AV_COPY128(top_border + 16, src_y + 16 * linesize + 16);
2271
2272     if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
2273         if (chroma444) {
2274             if (pixel_shift) {
2275                 AV_COPY128(top_border + 32, src_cb + 16 * linesize);
2276                 AV_COPY128(top_border + 48, src_cb + 16 * linesize + 16);
2277                 AV_COPY128(top_border + 64, src_cr + 16 * linesize);
2278                 AV_COPY128(top_border + 80, src_cr + 16 * linesize + 16);
2279             } else {
2280                 AV_COPY128(top_border + 16, src_cb + 16 * linesize);
2281                 AV_COPY128(top_border + 32, src_cr + 16 * linesize);
2282             }
2283         } else if (chroma422) {
2284             if (pixel_shift) {
2285                 AV_COPY128(top_border + 32, src_cb + 16 * uvlinesize);
2286                 AV_COPY128(top_border + 48, src_cr + 16 * uvlinesize);
2287             } else {
2288                 AV_COPY64(top_border + 16, src_cb + 16 * uvlinesize);
2289                 AV_COPY64(top_border + 24, src_cr + 16 * uvlinesize);
2290             }
2291         } else {
2292             if (pixel_shift) {
2293                 AV_COPY128(top_border + 32, src_cb + 8 * uvlinesize);
2294                 AV_COPY128(top_border + 48, src_cr + 8 * uvlinesize);
2295             } else {
2296                 AV_COPY64(top_border + 16, src_cb + 8 * uvlinesize);
2297                 AV_COPY64(top_border + 24, src_cr + 8 * uvlinesize);
2298             }
2299         }
2300     }
2301 }
2302
2303 static av_always_inline void xchg_mb_border(H264Context *h, uint8_t *src_y,
2304                                             uint8_t *src_cb, uint8_t *src_cr,
2305                                             int linesize, int uvlinesize,
2306                                             int xchg, int chroma444,
2307                                             int simple, int pixel_shift)
2308 {
2309     int deblock_topleft;
2310     int deblock_top;
2311     int top_idx = 1;
2312     uint8_t *top_border_m1;
2313     uint8_t *top_border;
2314
2315     if (!simple && FRAME_MBAFF(h)) {
2316         if (h->mb_y & 1) {
2317             if (!MB_MBAFF(h))
2318                 return;
2319         } else {
2320             top_idx = MB_MBAFF(h) ? 0 : 1;
2321         }
2322     }
2323
2324     if (h->deblocking_filter == 2) {
2325         deblock_topleft = h->slice_table[h->mb_xy - 1 - h->mb_stride] == h->slice_num;
2326         deblock_top     = h->top_type;
2327     } else {
2328         deblock_topleft = (h->mb_x > 0);
2329         deblock_top     = (h->mb_y > !!MB_FIELD(h));
2330     }
2331
2332     src_y  -= linesize   + 1 + pixel_shift;
2333     src_cb -= uvlinesize + 1 + pixel_shift;
2334     src_cr -= uvlinesize + 1 + pixel_shift;
2335
2336     top_border_m1 = h->top_borders[top_idx][h->mb_x - 1];
2337     top_border    = h->top_borders[top_idx][h->mb_x];
2338
2339 #define XCHG(a, b, xchg)                        \
2340     if (pixel_shift) {                          \
2341         if (xchg) {                             \
2342             AV_SWAP64(b + 0, a + 0);            \
2343             AV_SWAP64(b + 8, a + 8);            \
2344         } else {                                \
2345             AV_COPY128(b, a);                   \
2346         }                                       \
2347     } else if (xchg)                            \
2348         AV_SWAP64(b, a);                        \
2349     else                                        \
2350         AV_COPY64(b, a);
2351
2352     if (deblock_top) {
2353         if (deblock_topleft) {
2354             XCHG(top_border_m1 + (8 << pixel_shift),
2355                  src_y - (7 << pixel_shift), 1);
2356         }
2357         XCHG(top_border + (0 << pixel_shift), src_y + (1 << pixel_shift), xchg);
2358         XCHG(top_border + (8 << pixel_shift), src_y + (9 << pixel_shift), 1);
2359         if (h->mb_x + 1 < h->mb_width) {
2360             XCHG(h->top_borders[top_idx][h->mb_x + 1],
2361                  src_y + (17 << pixel_shift), 1);
2362         }
2363         if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
2364             if (chroma444) {
2365                 if (deblock_topleft) {
2366                     XCHG(top_border_m1 + (24 << pixel_shift), src_cb - (7 << pixel_shift), 1);
2367                     XCHG(top_border_m1 + (40 << pixel_shift), src_cr - (7 << pixel_shift), 1);
2368                 }
2369                 XCHG(top_border + (16 << pixel_shift), src_cb + (1 << pixel_shift), xchg);
2370                 XCHG(top_border + (24 << pixel_shift), src_cb + (9 << pixel_shift), 1);
2371                 XCHG(top_border + (32 << pixel_shift), src_cr + (1 << pixel_shift), xchg);
2372                 XCHG(top_border + (40 << pixel_shift), src_cr + (9 << pixel_shift), 1);
2373                 if (h->mb_x + 1 < h->mb_width) {
2374                     XCHG(h->top_borders[top_idx][h->mb_x + 1] + (16 << pixel_shift), src_cb + (17 << pixel_shift), 1);
2375                     XCHG(h->top_borders[top_idx][h->mb_x + 1] + (32 << pixel_shift), src_cr + (17 << pixel_shift), 1);
2376                 }
2377             } else {
2378                 if (deblock_topleft) {
2379                     XCHG(top_border_m1 + (16 << pixel_shift), src_cb - (7 << pixel_shift), 1);
2380                     XCHG(top_border_m1 + (24 << pixel_shift), src_cr - (7 << pixel_shift), 1);
2381                 }
2382                 XCHG(top_border + (16 << pixel_shift), src_cb + 1 + pixel_shift, 1);
2383                 XCHG(top_border + (24 << pixel_shift), src_cr + 1 + pixel_shift, 1);
2384             }
2385         }
2386     }
2387 }
2388
2389 static av_always_inline int dctcoef_get(int16_t *mb, int high_bit_depth,
2390                                         int index)
2391 {
2392     if (high_bit_depth) {
2393         return AV_RN32A(((int32_t *)mb) + index);
2394     } else
2395         return AV_RN16A(mb + index);
2396 }
2397
2398 static av_always_inline void dctcoef_set(int16_t *mb, int high_bit_depth,
2399                                          int index, int value)
2400 {
2401     if (high_bit_depth) {
2402         AV_WN32A(((int32_t *)mb) + index, value);
2403     } else
2404         AV_WN16A(mb + index, value);
2405 }
2406
2407 static av_always_inline void hl_decode_mb_predict_luma(H264Context *h,
2408                                                        int mb_type, int is_h264,
2409                                                        int simple,
2410                                                        int transform_bypass,
2411                                                        int pixel_shift,
2412                                                        int *block_offset,
2413                                                        int linesize,
2414                                                        uint8_t *dest_y, int p)
2415 {
2416     void (*idct_add)(uint8_t *dst, int16_t *block, int stride);
2417     void (*idct_dc_add)(uint8_t *dst, int16_t *block, int stride);
2418     int i;
2419     int qscale = p == 0 ? h->qscale : h->chroma_qp[p - 1];
2420     block_offset += 16 * p;
2421     if (IS_INTRA4x4(mb_type)) {
2422         if (IS_8x8DCT(mb_type)) {
2423             if (transform_bypass) {
2424                 idct_dc_add =
2425                 idct_add    = h->h264dsp.h264_add_pixels8_clear;
2426             } else {
2427                 idct_dc_add = h->h264dsp.h264_idct8_dc_add;
2428                 idct_add    = h->h264dsp.h264_idct8_add;
2429             }
2430             for (i = 0; i < 16; i += 4) {
2431                 uint8_t *const ptr = dest_y + block_offset[i];
2432                 const int dir      = h->intra4x4_pred_mode_cache[scan8[i]];
2433                 if (transform_bypass && h->sps.profile_idc == 244 && dir <= 1) {
2434                     h->hpc.pred8x8l_add[dir](ptr, h->mb + (i * 16 + p * 256 << pixel_shift), linesize);
2435                 } else {
2436                     const int nnz = h->non_zero_count_cache[scan8[i + p * 16]];
2437                     h->hpc.pred8x8l[dir](ptr, (h->topleft_samples_available << i) & 0x8000,
2438                                          (h->topright_samples_available << i) & 0x4000, linesize);
2439                     if (nnz) {
2440                         if (nnz == 1 && dctcoef_get(h->mb, pixel_shift, i * 16 + p * 256))
2441                             idct_dc_add(ptr, h->mb + (i * 16 + p * 256 << pixel_shift), linesize);
2442                         else
2443                             idct_add(ptr, h->mb + (i * 16 + p * 256 << pixel_shift), linesize);
2444                     }
2445                 }
2446             }
2447         } else {
2448             if (transform_bypass) {
2449                 idct_dc_add  =
2450                 idct_add     = h->h264dsp.h264_add_pixels4_clear;
2451             } else {
2452                 idct_dc_add = h->h264dsp.h264_idct_dc_add;
2453                 idct_add    = h->h264dsp.h264_idct_add;
2454             }
2455             for (i = 0; i < 16; i++) {
2456                 uint8_t *const ptr = dest_y + block_offset[i];
2457                 const int dir      = h->intra4x4_pred_mode_cache[scan8[i]];
2458
2459                 if (transform_bypass && h->sps.profile_idc == 244 && dir <= 1) {
2460                     h->hpc.pred4x4_add[dir](ptr, h->mb + (i * 16 + p * 256 << pixel_shift), linesize);
2461                 } else {
2462                     uint8_t *topright;
2463                     int nnz, tr;
2464                     uint64_t tr_high;
2465                     if (dir == DIAG_DOWN_LEFT_PRED || dir == VERT_LEFT_PRED) {
2466                         const int topright_avail = (h->topright_samples_available << i) & 0x8000;
2467                         av_assert2(h->mb_y || linesize <= block_offset[i]);
2468                         if (!topright_avail) {
2469                             if (pixel_shift) {
2470                                 tr_high  = ((uint16_t *)ptr)[3 - linesize / 2] * 0x0001000100010001ULL;
2471                                 topright = (uint8_t *)&tr_high;
2472                             } else {
2473                                 tr       = ptr[3 - linesize] * 0x01010101u;
2474                                 topright = (uint8_t *)&tr;
2475                             }
2476                         } else
2477                             topright = ptr + (4 << pixel_shift) - linesize;
2478                     } else
2479                         topright = NULL;
2480
2481                     h->hpc.pred4x4[dir](ptr, topright, linesize);
2482                     nnz = h->non_zero_count_cache[scan8[i + p * 16]];
2483                     if (nnz) {
2484                         if (is_h264) {
2485                             if (nnz == 1 && dctcoef_get(h->mb, pixel_shift, i * 16 + p * 256))
2486                                 idct_dc_add(ptr, h->mb + (i * 16 + p * 256 << pixel_shift), linesize);
2487                             else
2488                                 idct_add(ptr, h->mb + (i * 16 + p * 256 << pixel_shift), linesize);
2489                         } else if (CONFIG_SVQ3_DECODER)
2490                             ff_svq3_add_idct_c(ptr, h->mb + i * 16 + p * 256, linesize, qscale, 0);
2491                     }
2492                 }
2493             }
2494         }
2495     } else {
2496         h->hpc.pred16x16[h->intra16x16_pred_mode](dest_y, linesize);
2497         if (is_h264) {
2498             if (h->non_zero_count_cache[scan8[LUMA_DC_BLOCK_INDEX + p]]) {
2499                 if (!transform_bypass)
2500                     h->h264dsp.h264_luma_dc_dequant_idct(h->mb + (p * 256 << pixel_shift),
2501                                                          h->mb_luma_dc[p],
2502                                                          h->dequant4_coeff[p][qscale][0]);
2503                 else {
2504                     static const uint8_t dc_mapping[16] = {
2505                          0 * 16,  1 * 16,  4 * 16,  5 * 16,
2506                          2 * 16,  3 * 16,  6 * 16,  7 * 16,
2507                          8 * 16,  9 * 16, 12 * 16, 13 * 16,
2508                         10 * 16, 11 * 16, 14 * 16, 15 * 16
2509                     };
2510                     for (i = 0; i < 16; i++)
2511                         dctcoef_set(h->mb + (p * 256 << pixel_shift),
2512                                     pixel_shift, dc_mapping[i],
2513                                     dctcoef_get(h->mb_luma_dc[p],
2514                                                 pixel_shift, i));
2515                 }
2516             }
2517         } else if (CONFIG_SVQ3_DECODER)
2518             ff_svq3_luma_dc_dequant_idct_c(h->mb + p * 256,
2519                                            h->mb_luma_dc[p], qscale);
2520     }
2521 }
2522
2523 static av_always_inline void hl_decode_mb_idct_luma(H264Context *h, int mb_type,
2524                                                     int is_h264, int simple,
2525                                                     int transform_bypass,
2526                                                     int pixel_shift,
2527                                                     int *block_offset,
2528                                                     int linesize,
2529                                                     uint8_t *dest_y, int p)
2530 {
2531     void (*idct_add)(uint8_t *dst, int16_t *block, int stride);
2532     int i;
2533     block_offset += 16 * p;
2534     if (!IS_INTRA4x4(mb_type)) {
2535         if (is_h264) {
2536             if (IS_INTRA16x16(mb_type)) {
2537                 if (transform_bypass) {
2538                     if (h->sps.profile_idc == 244 &&
2539                         (h->intra16x16_pred_mode == VERT_PRED8x8 ||
2540                          h->intra16x16_pred_mode == HOR_PRED8x8)) {
2541                         h->hpc.pred16x16_add[h->intra16x16_pred_mode](dest_y, block_offset,
2542                                                                       h->mb + (p * 256 << pixel_shift),
2543                                                                       linesize);
2544                     } else {
2545                         for (i = 0; i < 16; i++)
2546                             if (h->non_zero_count_cache[scan8[i + p * 16]] ||
2547                                 dctcoef_get(h->mb, pixel_shift, i * 16 + p * 256))
2548                                 h->h264dsp.h264_add_pixels4_clear(dest_y + block_offset[i],
2549                                                                   h->mb + (i * 16 + p * 256 << pixel_shift),
2550                                                                   linesize);
2551                     }
2552                 } else {
2553                     h->h264dsp.h264_idct_add16intra(dest_y, block_offset,
2554                                                     h->mb + (p * 256 << pixel_shift),
2555                                                     linesize,
2556                                                     h->non_zero_count_cache + p * 5 * 8);
2557                 }
2558             } else if (h->cbp & 15) {
2559                 if (transform_bypass) {
2560                     const int di = IS_8x8DCT(mb_type) ? 4 : 1;
2561                     idct_add = IS_8x8DCT(mb_type) ? h->h264dsp.h264_add_pixels8_clear
2562                                                   : h->h264dsp.h264_add_pixels4_clear;
2563                     for (i = 0; i < 16; i += di)
2564                         if (h->non_zero_count_cache[scan8[i + p * 16]])
2565                             idct_add(dest_y + block_offset[i],
2566                                      h->mb + (i * 16 + p * 256 << pixel_shift),
2567                                      linesize);
2568                 } else {
2569                     if (IS_8x8DCT(mb_type))
2570                         h->h264dsp.h264_idct8_add4(dest_y, block_offset,
2571                                                    h->mb + (p * 256 << pixel_shift),
2572                                                    linesize,
2573                                                    h->non_zero_count_cache + p * 5 * 8);
2574                     else
2575                         h->h264dsp.h264_idct_add16(dest_y, block_offset,
2576                                                    h->mb + (p * 256 << pixel_shift),
2577                                                    linesize,
2578                                                    h->non_zero_count_cache + p * 5 * 8);
2579                 }
2580             }
2581         } else if (CONFIG_SVQ3_DECODER) {
2582             for (i = 0; i < 16; i++)
2583                 if (h->non_zero_count_cache[scan8[i + p * 16]] || h->mb[i * 16 + p * 256]) {
2584                     // FIXME benchmark weird rule, & below
2585                     uint8_t *const ptr = dest_y + block_offset[i];
2586                     ff_svq3_add_idct_c(ptr, h->mb + i * 16 + p * 256, linesize,
2587                                        h->qscale, IS_INTRA(mb_type) ? 1 : 0);
2588                 }
2589         }
2590     }
2591 }
2592
2593 #define BITS   8
2594 #define SIMPLE 1
2595 #include "h264_mb_template.c"
2596
2597 #undef  BITS
2598 #define BITS   16
2599 #include "h264_mb_template.c"
2600
2601 #undef  SIMPLE
2602 #define SIMPLE 0
2603 #include "h264_mb_template.c"
2604
2605 void ff_h264_hl_decode_mb(H264Context *h)
2606 {
2607     const int mb_xy   = h->mb_xy;
2608     const int mb_type = h->cur_pic.mb_type[mb_xy];
2609     int is_complex    = CONFIG_SMALL || h->is_complex ||
2610                         IS_INTRA_PCM(mb_type) || h->qscale == 0;
2611
2612     if (CHROMA444(h)) {
2613         if (is_complex || h->pixel_shift)
2614             hl_decode_mb_444_complex(h);
2615         else
2616             hl_decode_mb_444_simple_8(h);
2617     } else if (is_complex) {
2618         hl_decode_mb_complex(h);
2619     } else if (h->pixel_shift) {
2620         hl_decode_mb_simple_16(h);
2621     } else
2622         hl_decode_mb_simple_8(h);
2623 }
2624
2625 int ff_pred_weight_table(H264Context *h)
2626 {
2627     int list, i;
2628     int luma_def, chroma_def;
2629
2630     h->use_weight             = 0;
2631     h->use_weight_chroma      = 0;
2632     h->luma_log2_weight_denom = get_ue_golomb(&h->gb);
2633     if (h->sps.chroma_format_idc)
2634         h->chroma_log2_weight_denom = get_ue_golomb(&h->gb);
2635     luma_def   = 1 << h->luma_log2_weight_denom;
2636     chroma_def = 1 << h->chroma_log2_weight_denom;
2637
2638     for (list = 0; list < 2; list++) {
2639         h->luma_weight_flag[list]   = 0;
2640         h->chroma_weight_flag[list] = 0;
2641         for (i = 0; i < h->ref_count[list]; i++) {
2642             int luma_weight_flag, chroma_weight_flag;
2643
2644             luma_weight_flag = get_bits1(&h->gb);
2645             if (luma_weight_flag) {
2646                 h->luma_weight[i][list][0] = get_se_golomb(&h->gb);
2647                 h->luma_weight[i][list][1] = get_se_golomb(&h->gb);
2648                 if (h->luma_weight[i][list][0] != luma_def ||
2649                     h->luma_weight[i][list][1] != 0) {
2650                     h->use_weight             = 1;
2651                     h->luma_weight_flag[list] = 1;
2652                 }
2653             } else {
2654                 h->luma_weight[i][list][0] = luma_def;
2655                 h->luma_weight[i][list][1] = 0;
2656             }
2657
2658             if (h->sps.chroma_format_idc) {
2659                 chroma_weight_flag = get_bits1(&h->gb);
2660                 if (chroma_weight_flag) {
2661                     int j;
2662                     for (j = 0; j < 2; j++) {
2663                         h->chroma_weight[i][list][j][0] = get_se_golomb(&h->gb);
2664                         h->chroma_weight[i][list][j][1] = get_se_golomb(&h->gb);
2665                         if (h->chroma_weight[i][list][j][0] != chroma_def ||
2666                             h->chroma_weight[i][list][j][1] != 0) {
2667                             h->use_weight_chroma        = 1;
2668                             h->chroma_weight_flag[list] = 1;
2669                         }
2670                     }
2671                 } else {
2672                     int j;
2673                     for (j = 0; j < 2; j++) {
2674                         h->chroma_weight[i][list][j][0] = chroma_def;
2675                         h->chroma_weight[i][list][j][1] = 0;
2676                     }
2677                 }
2678             }
2679         }
2680         if (h->slice_type_nos != AV_PICTURE_TYPE_B)
2681             break;
2682     }
2683     h->use_weight = h->use_weight || h->use_weight_chroma;
2684     return 0;
2685 }
2686
2687 /**
2688  * Initialize implicit_weight table.
2689  * @param field  0/1 initialize the weight for interlaced MBAFF
2690  *                -1 initializes the rest
2691  */
2692 static void implicit_weight_table(H264Context *h, int field)
2693 {
2694     int ref0, ref1, i, cur_poc, ref_start, ref_count0, ref_count1;
2695
2696     for (i = 0; i < 2; i++) {
2697         h->luma_weight_flag[i]   = 0;
2698         h->chroma_weight_flag[i] = 0;
2699     }
2700
2701     if (field < 0) {
2702         if (h->picture_structure == PICT_FRAME) {
2703             cur_poc = h->cur_pic_ptr->poc;
2704         } else {
2705             cur_poc = h->cur_pic_ptr->field_poc[h->picture_structure - 1];
2706         }
2707         if (h->ref_count[0] == 1 && h->ref_count[1] == 1 && !FRAME_MBAFF(h) &&
2708             h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2 * cur_poc) {
2709             h->use_weight        = 0;
2710             h->use_weight_chroma = 0;
2711             return;
2712         }
2713         ref_start  = 0;
2714         ref_count0 = h->ref_count[0];
2715         ref_count1 = h->ref_count[1];
2716     } else {
2717         cur_poc    = h->cur_pic_ptr->field_poc[field];
2718         ref_start  = 16;
2719         ref_count0 = 16 + 2 * h->ref_count[0];
2720         ref_count1 = 16 + 2 * h->ref_count[1];
2721     }
2722
2723     h->use_weight               = 2;
2724     h->use_weight_chroma        = 2;
2725     h->luma_log2_weight_denom   = 5;
2726     h->chroma_log2_weight_denom = 5;
2727
2728     for (ref0 = ref_start; ref0 < ref_count0; ref0++) {
2729         int poc0 = h->ref_list[0][ref0].poc;
2730         for (ref1 = ref_start; ref1 < ref_count1; ref1++) {
2731             int w = 32;
2732             if (!h->ref_list[0][ref0].long_ref && !h->ref_list[1][ref1].long_ref) {
2733                 int poc1 = h->ref_list[1][ref1].poc;
2734                 int td   = av_clip(poc1 - poc0, -128, 127);
2735                 if (td) {
2736                     int tb = av_clip(cur_poc - poc0, -128, 127);
2737                     int tx = (16384 + (FFABS(td) >> 1)) / td;
2738                     int dist_scale_factor = (tb * tx + 32) >> 8;
2739                     if (dist_scale_factor >= -64 && dist_scale_factor <= 128)
2740                         w = 64 - dist_scale_factor;
2741                 }
2742             }
2743             if (field < 0) {
2744                 h->implicit_weight[ref0][ref1][0] =
2745                 h->implicit_weight[ref0][ref1][1] = w;
2746             } else {
2747                 h->implicit_weight[ref0][ref1][field] = w;
2748             }
2749         }
2750     }
2751 }
2752
2753 /**
2754  * instantaneous decoder refresh.
2755  */
2756 static void idr(H264Context *h)
2757 {
2758     int i;
2759     ff_h264_remove_all_refs(h);
2760     h->prev_frame_num        = 0;
2761     h->prev_frame_num_offset = 0;
2762     h->prev_poc_msb          = 1<<16;
2763     h->prev_poc_lsb          = 0;
2764     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
2765         h->last_pocs[i] = INT_MIN;
2766 }
2767
2768 /* forget old pics after a seek */
2769 static void flush_change(H264Context *h)
2770 {
2771     int i, j;
2772
2773     h->outputed_poc          = h->next_outputed_poc = INT_MIN;
2774     h->prev_interlaced_frame = 1;
2775     idr(h);
2776
2777     h->prev_frame_num = -1;
2778     if (h->cur_pic_ptr) {
2779         h->cur_pic_ptr->reference = 0;
2780         for (j=i=0; h->delayed_pic[i]; i++)
2781             if (h->delayed_pic[i] != h->cur_pic_ptr)
2782                 h->delayed_pic[j++] = h->delayed_pic[i];
2783         h->delayed_pic[j] = NULL;
2784     }
2785     h->first_field = 0;
2786     memset(h->ref_list[0], 0, sizeof(h->ref_list[0]));
2787     memset(h->ref_list[1], 0, sizeof(h->ref_list[1]));
2788     memset(h->default_ref_list[0], 0, sizeof(h->default_ref_list[0]));
2789     memset(h->default_ref_list[1], 0, sizeof(h->default_ref_list[1]));
2790     ff_h264_reset_sei(h);
2791     h->recovery_frame = -1;
2792     h->frame_recovered = 0;
2793     h->list_count = 0;
2794     h->current_slice = 0;
2795     h->mmco_reset = 1;
2796 }
2797
2798 /* forget old pics after a seek */
2799 static void flush_dpb(AVCodecContext *avctx)
2800 {
2801     H264Context *h = avctx->priv_data;
2802     int i;
2803
2804     for (i = 0; i <= MAX_DELAYED_PIC_COUNT; i++) {
2805         if (h->delayed_pic[i])
2806             h->delayed_pic[i]->reference = 0;
2807         h->delayed_pic[i] = NULL;
2808     }
2809
2810     flush_change(h);
2811
2812     if (h->DPB)
2813         for (i = 0; i < MAX_PICTURE_COUNT; i++)
2814             unref_picture(h, &h->DPB[i]);
2815     h->cur_pic_ptr = NULL;
2816     unref_picture(h, &h->cur_pic);
2817
2818     h->mb_x = h->mb_y = 0;
2819
2820     h->parse_context.state             = -1;
2821     h->parse_context.frame_start_found = 0;
2822     h->parse_context.overread          = 0;
2823     h->parse_context.overread_index    = 0;
2824     h->parse_context.index             = 0;
2825     h->parse_context.last_index        = 0;
2826 }
2827
2828 int ff_init_poc(H264Context *h, int pic_field_poc[2], int *pic_poc)
2829 {
2830     const int max_frame_num = 1 << h->sps.log2_max_frame_num;
2831     int field_poc[2];
2832
2833     h->frame_num_offset = h->prev_frame_num_offset;
2834     if (h->frame_num < h->prev_frame_num)
2835         h->frame_num_offset += max_frame_num;
2836
2837     if (h->sps.poc_type == 0) {
2838         const int max_poc_lsb = 1 << h->sps.log2_max_poc_lsb;
2839
2840         if (h->poc_lsb < h->prev_poc_lsb &&
2841             h->prev_poc_lsb - h->poc_lsb >= max_poc_lsb / 2)
2842             h->poc_msb = h->prev_poc_msb + max_poc_lsb;
2843         else if (h->poc_lsb > h->prev_poc_lsb &&
2844                  h->prev_poc_lsb - h->poc_lsb < -max_poc_lsb / 2)
2845             h->poc_msb = h->prev_poc_msb - max_poc_lsb;
2846         else
2847             h->poc_msb = h->prev_poc_msb;
2848         field_poc[0] =
2849         field_poc[1] = h->poc_msb + h->poc_lsb;
2850         if (h->picture_structure == PICT_FRAME)
2851             field_poc[1] += h->delta_poc_bottom;
2852     } else if (h->sps.poc_type == 1) {
2853         int abs_frame_num, expected_delta_per_poc_cycle, expectedpoc;
2854         int i;
2855
2856         if (h->sps.poc_cycle_length != 0)
2857             abs_frame_num = h->frame_num_offset + h->frame_num;
2858         else
2859             abs_frame_num = 0;
2860
2861         if (h->nal_ref_idc == 0 && abs_frame_num > 0)
2862             abs_frame_num--;
2863
2864         expected_delta_per_poc_cycle = 0;
2865         for (i = 0; i < h->sps.poc_cycle_length; i++)
2866             // FIXME integrate during sps parse
2867             expected_delta_per_poc_cycle += h->sps.offset_for_ref_frame[i];
2868
2869         if (abs_frame_num > 0) {
2870             int poc_cycle_cnt          = (abs_frame_num - 1) / h->sps.poc_cycle_length;
2871             int frame_num_in_poc_cycle = (abs_frame_num - 1) % h->sps.poc_cycle_length;
2872
2873             expectedpoc = poc_cycle_cnt * expected_delta_per_poc_cycle;
2874             for (i = 0; i <= frame_num_in_poc_cycle; i++)
2875                 expectedpoc = expectedpoc + h->sps.offset_for_ref_frame[i];
2876         } else
2877             expectedpoc = 0;
2878
2879         if (h->nal_ref_idc == 0)
2880             expectedpoc = expectedpoc + h->sps.offset_for_non_ref_pic;
2881
2882         field_poc[0] = expectedpoc + h->delta_poc[0];
2883         field_poc[1] = field_poc[0] + h->sps.offset_for_top_to_bottom_field;
2884
2885         if (h->picture_structure == PICT_FRAME)
2886             field_poc[1] += h->delta_poc[1];
2887     } else {
2888         int poc = 2 * (h->frame_num_offset + h->frame_num);
2889
2890         if (!h->nal_ref_idc)
2891             poc--;
2892
2893         field_poc[0] = poc;
2894         field_poc[1] = poc;
2895     }
2896
2897     if (h->picture_structure != PICT_BOTTOM_FIELD)
2898         pic_field_poc[0] = field_poc[0];
2899     if (h->picture_structure != PICT_TOP_FIELD)
2900         pic_field_poc[1] = field_poc[1];
2901     *pic_poc = FFMIN(pic_field_poc[0], pic_field_poc[1]);
2902
2903     return 0;
2904 }
2905
2906 /**
2907  * initialize scan tables
2908  */
2909 static void init_scan_tables(H264Context *h)
2910 {
2911     int i;
2912     for (i = 0; i < 16; i++) {
2913 #define T(x) (x >> 2) | ((x << 2) & 0xF)
2914         h->zigzag_scan[i] = T(zigzag_scan[i]);
2915         h->field_scan[i]  = T(field_scan[i]);
2916 #undef T
2917     }
2918     for (i = 0; i < 64; i++) {
2919 #define T(x) (x >> 3) | ((x & 7) << 3)
2920         h->zigzag_scan8x8[i]       = T(ff_zigzag_direct[i]);
2921         h->zigzag_scan8x8_cavlc[i] = T(zigzag_scan8x8_cavlc[i]);
2922         h->field_scan8x8[i]        = T(field_scan8x8[i]);
2923         h->field_scan8x8_cavlc[i]  = T(field_scan8x8_cavlc[i]);
2924 #undef T
2925     }
2926     if (h->sps.transform_bypass) { // FIXME same ugly
2927         memcpy(h->zigzag_scan_q0          , zigzag_scan             , sizeof(h->zigzag_scan_q0         ));
2928         memcpy(h->zigzag_scan8x8_q0       , ff_zigzag_direct        , sizeof(h->zigzag_scan8x8_q0      ));
2929         memcpy(h->zigzag_scan8x8_cavlc_q0 , zigzag_scan8x8_cavlc    , sizeof(h->zigzag_scan8x8_cavlc_q0));
2930         memcpy(h->field_scan_q0           , field_scan              , sizeof(h->field_scan_q0          ));
2931         memcpy(h->field_scan8x8_q0        , field_scan8x8           , sizeof(h->field_scan8x8_q0       ));
2932         memcpy(h->field_scan8x8_cavlc_q0  , field_scan8x8_cavlc     , sizeof(h->field_scan8x8_cavlc_q0 ));
2933     } else {
2934         memcpy(h->zigzag_scan_q0          , h->zigzag_scan          , sizeof(h->zigzag_scan_q0         ));
2935         memcpy(h->zigzag_scan8x8_q0       , h->zigzag_scan8x8       , sizeof(h->zigzag_scan8x8_q0      ));
2936         memcpy(h->zigzag_scan8x8_cavlc_q0 , h->zigzag_scan8x8_cavlc , sizeof(h->zigzag_scan8x8_cavlc_q0));
2937         memcpy(h->field_scan_q0           , h->field_scan           , sizeof(h->field_scan_q0          ));
2938         memcpy(h->field_scan8x8_q0        , h->field_scan8x8        , sizeof(h->field_scan8x8_q0       ));
2939         memcpy(h->field_scan8x8_cavlc_q0  , h->field_scan8x8_cavlc  , sizeof(h->field_scan8x8_cavlc_q0 ));
2940     }
2941 }
2942
2943 static int field_end(H264Context *h, int in_setup)
2944 {
2945     AVCodecContext *const avctx = h->avctx;
2946     int err = 0;
2947     h->mb_y = 0;
2948
2949     if (CONFIG_H264_VDPAU_DECODER &&
2950         h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
2951         ff_vdpau_h264_set_reference_frames(h);
2952
2953     if (in_setup || !(avctx->active_thread_type & FF_THREAD_FRAME)) {
2954         if (!h->droppable) {
2955             err = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
2956             h->prev_poc_msb = h->poc_msb;
2957             h->prev_poc_lsb = h->poc_lsb;
2958         }
2959         h->prev_frame_num_offset = h->frame_num_offset;
2960         h->prev_frame_num        = h->frame_num;
2961         h->outputed_poc          = h->next_outputed_poc;
2962     }
2963
2964     if (avctx->hwaccel) {
2965         if (avctx->hwaccel->end_frame(avctx) < 0)
2966             av_log(avctx, AV_LOG_ERROR,
2967                    "hardware accelerator failed to decode picture\n");
2968     }
2969
2970     if (CONFIG_H264_VDPAU_DECODER &&
2971         h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
2972         ff_vdpau_h264_picture_complete(h);
2973
2974     /*
2975      * FIXME: Error handling code does not seem to support interlaced
2976      * when slices span multiple rows
2977      * The ff_er_add_slice calls don't work right for bottom
2978      * fields; they cause massive erroneous error concealing
2979      * Error marking covers both fields (top and bottom).
2980      * This causes a mismatched s->error_count
2981      * and a bad error table. Further, the error count goes to
2982      * INT_MAX when called for bottom field, because mb_y is
2983      * past end by one (callers fault) and resync_mb_y != 0
2984      * causes problems for the first MB line, too.
2985      */
2986     if (CONFIG_ERROR_RESILIENCE &&
2987         !FIELD_PICTURE(h) && h->current_slice && !h->sps.new) {
2988         h->er.cur_pic  = h->cur_pic_ptr;
2989         ff_er_frame_end(&h->er);
2990     }
2991     if (!in_setup && !h->droppable)
2992         ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
2993                                   h->picture_structure == PICT_BOTTOM_FIELD);
2994     emms_c();
2995
2996     h->current_slice = 0;
2997
2998     return err;
2999 }
3000
3001 /**
3002  * Replicate H264 "master" context to thread contexts.
3003  */
3004 static int clone_slice(H264Context *dst, H264Context *src)
3005 {
3006     memcpy(dst->block_offset, src->block_offset, sizeof(dst->block_offset));
3007     dst->cur_pic_ptr = src->cur_pic_ptr;
3008     dst->cur_pic     = src->cur_pic;
3009     dst->linesize    = src->linesize;
3010     dst->uvlinesize  = src->uvlinesize;
3011     dst->first_field = src->first_field;
3012
3013     dst->prev_poc_msb          = src->prev_poc_msb;
3014     dst->prev_poc_lsb          = src->prev_poc_lsb;
3015     dst->prev_frame_num_offset = src->prev_frame_num_offset;
3016     dst->prev_frame_num        = src->prev_frame_num;
3017     dst->short_ref_count       = src->short_ref_count;
3018
3019     memcpy(dst->short_ref,        src->short_ref,        sizeof(dst->short_ref));
3020     memcpy(dst->long_ref,         src->long_ref,         sizeof(dst->long_ref));
3021     memcpy(dst->default_ref_list, src->default_ref_list, sizeof(dst->default_ref_list));
3022
3023     memcpy(dst->dequant4_coeff,   src->dequant4_coeff,   sizeof(src->dequant4_coeff));
3024     memcpy(dst->dequant8_coeff,   src->dequant8_coeff,   sizeof(src->dequant8_coeff));
3025
3026     return 0;
3027 }
3028
3029 /**
3030  * Compute profile from profile_idc and constraint_set?_flags.
3031  *
3032  * @param sps SPS
3033  *
3034  * @return profile as defined by FF_PROFILE_H264_*
3035  */
3036 int ff_h264_get_profile(SPS *sps)
3037 {
3038     int profile = sps->profile_idc;
3039
3040     switch (sps->profile_idc) {
3041     case FF_PROFILE_H264_BASELINE:
3042         // constraint_set1_flag set to 1
3043         profile |= (sps->constraint_set_flags & 1 << 1) ? FF_PROFILE_H264_CONSTRAINED : 0;
3044         break;
3045     case FF_PROFILE_H264_HIGH_10:
3046     case FF_PROFILE_H264_HIGH_422:
3047     case FF_PROFILE_H264_HIGH_444_PREDICTIVE:
3048         // constraint_set3_flag set to 1
3049         profile |= (sps->constraint_set_flags & 1 << 3) ? FF_PROFILE_H264_INTRA : 0;
3050         break;
3051     }
3052
3053     return profile;
3054 }
3055
3056 static int h264_set_parameter_from_sps(H264Context *h)
3057 {
3058     if (h->flags & CODEC_FLAG_LOW_DELAY ||
3059         (h->sps.bitstream_restriction_flag &&
3060          !h->sps.num_reorder_frames)) {
3061         if (h->avctx->has_b_frames > 1 || h->delayed_pic[0])
3062             av_log(h->avctx, AV_LOG_WARNING, "Delayed frames seen. "
3063                    "Reenabling low delay requires a codec flush.\n");
3064         else
3065             h->low_delay = 1;
3066     }
3067
3068     if (h->avctx->has_b_frames < 2)
3069         h->avctx->has_b_frames = !h->low_delay;
3070
3071     if (h->sps.bit_depth_luma != h->sps.bit_depth_chroma) {
3072         avpriv_request_sample(h->avctx,
3073                               "Different chroma and luma bit depth");
3074         return AVERROR_PATCHWELCOME;
3075     }
3076
3077     if (h->avctx->bits_per_raw_sample != h->sps.bit_depth_luma ||
3078         h->cur_chroma_format_idc      != h->sps.chroma_format_idc) {
3079         if (h->avctx->codec &&
3080             h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU &&
3081             (h->sps.bit_depth_luma != 8 || h->sps.chroma_format_idc > 1)) {
3082             av_log(h->avctx, AV_LOG_ERROR,
3083                    "VDPAU decoding does not support video colorspace.\n");
3084             return AVERROR_INVALIDDATA;
3085         }
3086         if (h->sps.bit_depth_luma >= 8 && h->sps.bit_depth_luma <= 14 &&
3087             h->sps.bit_depth_luma != 11 && h->sps.bit_depth_luma != 13) {
3088             h->avctx->bits_per_raw_sample = h->sps.bit_depth_luma;
3089             h->cur_chroma_format_idc      = h->sps.chroma_format_idc;
3090             h->pixel_shift                = h->sps.bit_depth_luma > 8;
3091
3092             ff_h264dsp_init(&h->h264dsp, h->sps.bit_depth_luma,
3093                             h->sps.chroma_format_idc);
3094             ff_h264chroma_init(&h->h264chroma, h->sps.bit_depth_chroma);
3095             ff_h264qpel_init(&h->h264qpel, h->sps.bit_depth_luma);
3096             ff_h264_pred_init(&h->hpc, h->avctx->codec_id, h->sps.bit_depth_luma,
3097                               h->sps.chroma_format_idc);
3098
3099             if (CONFIG_ERROR_RESILIENCE)
3100                 ff_dsputil_init(&h->dsp, h->avctx);
3101             ff_videodsp_init(&h->vdsp, h->sps.bit_depth_luma);
3102         } else {
3103             av_log(h->avctx, AV_LOG_ERROR, "Unsupported bit depth: %d\n",
3104                    h->sps.bit_depth_luma);
3105             return AVERROR_INVALIDDATA;
3106         }
3107     }
3108     return 0;
3109 }
3110
3111 static enum AVPixelFormat get_pixel_format(H264Context *h, int force_callback)
3112 {
3113     switch (h->sps.bit_depth_luma) {
3114     case 9:
3115         if (CHROMA444(h)) {
3116             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
3117                 return AV_PIX_FMT_GBRP9;
3118             } else
3119                 return AV_PIX_FMT_YUV444P9;
3120         } else if (CHROMA422(h))
3121             return AV_PIX_FMT_YUV422P9;
3122         else
3123             return AV_PIX_FMT_YUV420P9;
3124         break;
3125     case 10:
3126         if (CHROMA444(h)) {
3127             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
3128                 return AV_PIX_FMT_GBRP10;
3129             } else
3130                 return AV_PIX_FMT_YUV444P10;
3131         } else if (CHROMA422(h))
3132             return AV_PIX_FMT_YUV422P10;
3133         else
3134             return AV_PIX_FMT_YUV420P10;
3135         break;
3136     case 12:
3137         if (CHROMA444(h)) {
3138             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
3139                 return AV_PIX_FMT_GBRP12;
3140             } else
3141                 return AV_PIX_FMT_YUV444P12;
3142         } else if (CHROMA422(h))
3143             return AV_PIX_FMT_YUV422P12;
3144         else
3145             return AV_PIX_FMT_YUV420P12;
3146         break;
3147     case 14:
3148         if (CHROMA444(h)) {
3149             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
3150                 return AV_PIX_FMT_GBRP14;
3151             } else
3152                 return AV_PIX_FMT_YUV444P14;
3153         } else if (CHROMA422(h))
3154             return AV_PIX_FMT_YUV422P14;
3155         else
3156             return AV_PIX_FMT_YUV420P14;
3157         break;
3158     case 8:
3159         if (CHROMA444(h)) {
3160             if (h->avctx->colorspace == AVCOL_SPC_RGB) {
3161                 av_log(h->avctx, AV_LOG_DEBUG, "Detected GBR colorspace.\n");
3162                 return AV_PIX_FMT_GBR24P;
3163             } else if (h->avctx->colorspace == AVCOL_SPC_YCGCO) {
3164                 av_log(h->avctx, AV_LOG_WARNING, "Detected unsupported YCgCo colorspace.\n");
3165             }
3166             return h->avctx->color_range == AVCOL_RANGE_JPEG ? AV_PIX_FMT_YUVJ444P
3167                                                                 : AV_PIX_FMT_YUV444P;
3168         } else if (CHROMA422(h)) {
3169             return h->avctx->color_range == AVCOL_RANGE_JPEG ? AV_PIX_FMT_YUVJ422P
3170                                                              : AV_PIX_FMT_YUV422P;
3171         } else {
3172             int i;
3173             const enum AVPixelFormat * fmt = h->avctx->codec->pix_fmts ?
3174                                         h->avctx->codec->pix_fmts :
3175                                         h->avctx->color_range == AVCOL_RANGE_JPEG ?
3176                                         h264_hwaccel_pixfmt_list_jpeg_420 :
3177                                         h264_hwaccel_pixfmt_list_420;
3178
3179             for (i=0; fmt[i] != AV_PIX_FMT_NONE; i++)
3180                 if (fmt[i] == h->avctx->pix_fmt && !force_callback)
3181                     return fmt[i];
3182             return ff_thread_get_format(h->avctx, fmt);
3183         }
3184         break;
3185     default:
3186         av_log(h->avctx, AV_LOG_ERROR,
3187                "Unsupported bit depth: %d\n", h->sps.bit_depth_luma);
3188         return AVERROR_INVALIDDATA;
3189     }
3190 }
3191
3192 /* export coded and cropped frame dimensions to AVCodecContext */
3193 static int init_dimensions(H264Context *h)
3194 {
3195     int width  = h->width  - (h->sps.crop_right + h->sps.crop_left);
3196     int height = h->height - (h->sps.crop_top   + h->sps.crop_bottom);
3197     av_assert0(h->sps.crop_right + h->sps.crop_left < (unsigned)h->width);
3198     av_assert0(h->sps.crop_top + h->sps.crop_bottom < (unsigned)h->height);
3199
3200     /* handle container cropping */
3201     if (!h->sps.crop &&
3202         FFALIGN(h->avctx->width,  16) == h->width &&
3203         FFALIGN(h->avctx->height, 16) == h->height) {
3204         width  = h->avctx->width;
3205         height = h->avctx->height;
3206     }
3207
3208     if (width <= 0 || height <= 0) {
3209         av_log(h->avctx, AV_LOG_ERROR, "Invalid cropped dimensions: %dx%d.\n",
3210                width, height);
3211         if (h->avctx->err_recognition & AV_EF_EXPLODE)
3212             return AVERROR_INVALIDDATA;
3213
3214         av_log(h->avctx, AV_LOG_WARNING, "Ignoring cropping information.\n");
3215         h->sps.crop_bottom = h->sps.crop_top = h->sps.crop_right = h->sps.crop_left = 0;
3216         h->sps.crop        = 0;
3217
3218         width  = h->width;
3219         height = h->height;
3220     }
3221
3222     h->avctx->coded_width  = h->width;
3223     h->avctx->coded_height = h->height;
3224     h->avctx->width        = width;
3225     h->avctx->height       = height;
3226
3227     return 0;
3228 }
3229
3230 static int h264_slice_header_init(H264Context *h, int reinit)
3231 {
3232     int nb_slices = (HAVE_THREADS &&
3233                      h->avctx->active_thread_type & FF_THREAD_SLICE) ?
3234                     h->avctx->thread_count : 1;
3235     int i, ret;
3236
3237     h->avctx->sample_aspect_ratio = h->sps.sar;
3238     av_assert0(h->avctx->sample_aspect_ratio.den);
3239     av_pix_fmt_get_chroma_sub_sample(h->avctx->pix_fmt,
3240                                      &h->chroma_x_shift, &h->chroma_y_shift);
3241
3242     if (h->sps.timing_info_present_flag) {
3243         int64_t den = h->sps.time_scale;
3244         if (h->x264_build < 44U)
3245             den *= 2;
3246         av_reduce(&h->avctx->time_base.num, &h->avctx->time_base.den,
3247                   h->sps.num_units_in_tick, den, 1 << 30);
3248     }
3249
3250     h->avctx->hwaccel = ff_find_hwaccel(h->avctx->codec->id, h->avctx->pix_fmt);
3251
3252     if (reinit)
3253         free_tables(h, 0);
3254     h->first_field           = 0;
3255     h->prev_interlaced_frame = 1;
3256
3257     init_scan_tables(h);
3258     ret = ff_h264_alloc_tables(h);
3259     if (ret < 0) {
3260         av_log(h->avctx, AV_LOG_ERROR,
3261                "Could not allocate memory for h264\n");
3262         return ret;
3263     }
3264
3265     if (nb_slices > MAX_THREADS || (nb_slices > h->mb_height && h->mb_height)) {
3266         int max_slices;
3267         if (h->mb_height)
3268             max_slices = FFMIN(MAX_THREADS, h->mb_height);
3269         else
3270             max_slices = MAX_THREADS;
3271         av_log(h->avctx, AV_LOG_WARNING, "too many threads/slices (%d),"
3272                " reducing to %d\n", nb_slices, max_slices);
3273         nb_slices = max_slices;
3274     }
3275     h->slice_context_count = nb_slices;
3276
3277     if (!HAVE_THREADS || !(h->avctx->active_thread_type & FF_THREAD_SLICE)) {
3278         ret = context_init(h);
3279         if (ret < 0) {
3280             av_log(h->avctx, AV_LOG_ERROR, "context_init() failed.\n");
3281             return ret;
3282         }
3283     } else {
3284         for (i = 1; i < h->slice_context_count; i++) {
3285             H264Context *c;
3286             c                    = h->thread_context[i] = av_mallocz(sizeof(H264Context));
3287             if (!c)
3288                 return AVERROR(ENOMEM);
3289             c->avctx             = h->avctx;
3290             if (CONFIG_ERROR_RESILIENCE) {
3291                 c->dsp               = h->dsp;
3292             }
3293             c->vdsp              = h->vdsp;
3294             c->h264dsp           = h->h264dsp;
3295             c->h264qpel          = h->h264qpel;
3296             c->h264chroma        = h->h264chroma;
3297             c->sps               = h->sps;
3298             c->pps               = h->pps;
3299             c->pixel_shift       = h->pixel_shift;
3300             c->cur_chroma_format_idc = h->cur_chroma_format_idc;
3301             c->width             = h->width;
3302             c->height            = h->height;
3303             c->linesize          = h->linesize;
3304             c->uvlinesize        = h->uvlinesize;
3305             c->chroma_x_shift = h->chroma_x_shift;
3306             c->chroma_y_shift = h->chroma_y_shift;
3307             c->qscale            = h->qscale;
3308             c->droppable         = h->droppable;
3309             c->data_partitioning = h->data_partitioning;
3310             c->low_delay         = h->low_delay;
3311             c->mb_width          = h->mb_width;
3312             c->mb_height         = h->mb_height;
3313             c->mb_stride         = h->mb_stride;
3314             c->mb_num            = h->mb_num;
3315             c->flags             = h->flags;
3316             c->workaround_bugs   = h->workaround_bugs;
3317             c->pict_type         = h->pict_type;
3318
3319             init_scan_tables(c);
3320             clone_tables(c, h, i);
3321             c->context_initialized = 1;
3322         }
3323
3324         for (i = 0; i < h->slice_context_count; i++)
3325             if ((ret = context_init(h->thread_context[i])) < 0) {
3326                 av_log(h->avctx, AV_LOG_ERROR, "context_init() failed.\n");
3327                 return ret;
3328             }
3329     }
3330
3331     h->context_initialized = 1;
3332
3333     return 0;
3334 }
3335
3336 int ff_set_ref_count(H264Context *h)
3337 {
3338     int num_ref_idx_active_override_flag;
3339
3340     // set defaults, might be overridden a few lines later
3341     h->ref_count[0] = h->pps.ref_count[0];
3342     h->ref_count[1] = h->pps.ref_count[1];
3343
3344     if (h->slice_type_nos != AV_PICTURE_TYPE_I) {
3345         unsigned max[2];
3346         max[0] = max[1] = h->picture_structure == PICT_FRAME ? 15 : 31;
3347
3348         if (h->slice_type_nos == AV_PICTURE_TYPE_B)
3349             h->direct_spatial_mv_pred = get_bits1(&h->gb);
3350         num_ref_idx_active_override_flag = get_bits1(&h->gb);
3351
3352         if (num_ref_idx_active_override_flag) {
3353             h->ref_count[0] = get_ue_golomb(&h->gb) + 1;
3354             if (h->slice_type_nos == AV_PICTURE_TYPE_B) {
3355                 h->ref_count[1] = get_ue_golomb(&h->gb) + 1;
3356             } else
3357                 // full range is spec-ok in this case, even for frames
3358                 h->ref_count[1] = 1;
3359         }
3360
3361         if (h->ref_count[0]-1 > max[0] || h->ref_count[1]-1 > max[1]){
3362             av_log(h->avctx, AV_LOG_ERROR, "reference overflow %u > %u or %u > %u\n", h->ref_count[0]-1, max[0], h->ref_count[1]-1, max[1]);
3363             h->ref_count[0] = h->ref_count[1] = 0;
3364             return AVERROR_INVALIDDATA;
3365         }
3366
3367         if (h->slice_type_nos == AV_PICTURE_TYPE_B)
3368             h->list_count = 2;
3369         else
3370             h->list_count = 1;
3371     } else {
3372         h->list_count   = 0;
3373         h->ref_count[0] = h->ref_count[1] = 0;
3374     }
3375
3376     return 0;
3377 }
3378
3379 /**
3380  * Decode a slice header.
3381  * This will also call ff_MPV_common_init() and frame_start() as needed.
3382  *
3383  * @param h h264context
3384  * @param h0 h264 master context (differs from 'h' when doing sliced based
3385  *           parallel decoding)
3386  *
3387  * @return 0 if okay, <0 if an error occurred, 1 if decoding must not be multithreaded
3388  */
3389 static int decode_slice_header(H264Context *h, H264Context *h0)
3390 {
3391     unsigned int first_mb_in_slice;
3392     unsigned int pps_id;
3393     int ret;
3394     unsigned int slice_type, tmp, i, j;
3395     int last_pic_structure, last_pic_droppable;
3396     int must_reinit;
3397     int needs_reinit = 0;
3398     int field_pic_flag, bottom_field_flag;
3399
3400     h->me.qpel_put = h->h264qpel.put_h264_qpel_pixels_tab;
3401     h->me.qpel_avg = h->h264qpel.avg_h264_qpel_pixels_tab;
3402
3403     first_mb_in_slice = get_ue_golomb_long(&h->gb);
3404
3405     if (first_mb_in_slice == 0) { // FIXME better field boundary detection
3406         if (h0->current_slice && FIELD_PICTURE(h)) {
3407             field_end(h, 1);
3408         }
3409
3410         h0->current_slice = 0;
3411         if (!h0->first_field) {
3412             if (h->cur_pic_ptr && !h->droppable) {
3413                 ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
3414                                           h->picture_structure == PICT_BOTTOM_FIELD);
3415             }
3416             h->cur_pic_ptr = NULL;
3417         }
3418     }
3419
3420     slice_type = get_ue_golomb_31(&h->gb);
3421     if (slice_type > 9) {
3422         av_log(h->avctx, AV_LOG_ERROR,
3423                "slice type too large (%d) at %d %d\n",
3424                slice_type, h->mb_x, h->mb_y);
3425         return AVERROR_INVALIDDATA;
3426     }
3427     if (slice_type > 4) {
3428         slice_type -= 5;
3429         h->slice_type_fixed = 1;
3430     } else
3431         h->slice_type_fixed = 0;
3432
3433     slice_type = golomb_to_pict_type[slice_type];
3434     h->slice_type     = slice_type;
3435     h->slice_type_nos = slice_type & 3;
3436
3437     // to make a few old functions happy, it's wrong though
3438     h->pict_type = h->slice_type;
3439
3440     pps_id = get_ue_golomb(&h->gb);
3441     if (pps_id >= MAX_PPS_COUNT) {
3442         av_log(h->avctx, AV_LOG_ERROR, "pps_id %d out of range\n", pps_id);
3443         return AVERROR_INVALIDDATA;
3444     }
3445     if (!h0->pps_buffers[pps_id]) {
3446         av_log(h->avctx, AV_LOG_ERROR,
3447                "non-existing PPS %u referenced\n",
3448                pps_id);
3449         return AVERROR_INVALIDDATA;
3450     }
3451     h->pps = *h0->pps_buffers[pps_id];
3452
3453     if (!h0->sps_buffers[h->pps.sps_id]) {
3454         av_log(h->avctx, AV_LOG_ERROR,
3455                "non-existing SPS %u referenced\n",
3456                h->pps.sps_id);
3457         return AVERROR_INVALIDDATA;
3458     }
3459
3460     if (h->pps.sps_id != h->current_sps_id ||
3461         h0->sps_buffers[h->pps.sps_id]->new) {
3462         h0->sps_buffers[h->pps.sps_id]->new = 0;
3463
3464         h->current_sps_id = h->pps.sps_id;
3465         h->sps            = *h0->sps_buffers[h->pps.sps_id];
3466
3467         if (h->mb_width  != h->sps.mb_width ||
3468             h->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag) ||
3469             h->avctx->bits_per_raw_sample != h->sps.bit_depth_luma ||
3470             h->cur_chroma_format_idc != h->sps.chroma_format_idc
3471         )
3472             needs_reinit = 1;
3473
3474         if (h->bit_depth_luma    != h->sps.bit_depth_luma ||
3475             h->chroma_format_idc != h->sps.chroma_format_idc) {
3476             h->bit_depth_luma    = h->sps.bit_depth_luma;
3477             h->chroma_format_idc = h->sps.chroma_format_idc;
3478             needs_reinit         = 1;
3479         }
3480         if ((ret = h264_set_parameter_from_sps(h)) < 0)
3481             return ret;
3482     }
3483
3484     h->avctx->profile = ff_h264_get_profile(&h->sps);
3485     h->avctx->level   = h->sps.level_idc;
3486     h->avctx->refs    = h->sps.ref_frame_count;
3487
3488     must_reinit = (h->context_initialized &&
3489                     (   16*h->sps.mb_width != h->avctx->coded_width
3490                      || 16*h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag) != h->avctx->coded_height
3491                      || h->avctx->bits_per_raw_sample != h->sps.bit_depth_luma
3492                      || h->cur_chroma_format_idc != h->sps.chroma_format_idc
3493                      || av_cmp_q(h->sps.sar, h->avctx->sample_aspect_ratio)
3494                      || h->mb_width  != h->sps.mb_width
3495                      || h->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag)
3496                     ));
3497     if (h0->avctx->pix_fmt != get_pixel_format(h0, 0))
3498         must_reinit = 1;
3499
3500     h->mb_width  = h->sps.mb_width;
3501     h->mb_height = h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag);
3502     h->mb_num    = h->mb_width * h->mb_height;
3503     h->mb_stride = h->mb_width + 1;
3504
3505     h->b_stride = h->mb_width * 4;
3506
3507     h->chroma_y_shift = h->sps.chroma_format_idc <= 1; // 400 uses yuv420p
3508
3509     h->width  = 16 * h->mb_width;
3510     h->height = 16 * h->mb_height;
3511
3512     ret = init_dimensions(h);
3513     if (ret < 0)
3514         return ret;
3515
3516     if (h->sps.video_signal_type_present_flag) {
3517         h->avctx->color_range = h->sps.full_range>0 ? AVCOL_RANGE_JPEG
3518                                                     : AVCOL_RANGE_MPEG;
3519         if (h->sps.colour_description_present_flag) {
3520             if (h->avctx->colorspace != h->sps.colorspace)
3521                 needs_reinit = 1;
3522             h->avctx->color_primaries = h->sps.color_primaries;
3523             h->avctx->color_trc       = h->sps.color_trc;
3524             h->avctx->colorspace      = h->sps.colorspace;
3525         }
3526     }
3527
3528     if (h->context_initialized &&
3529         (h->width  != h->avctx->coded_width   ||
3530          h->height != h->avctx->coded_height  ||
3531          must_reinit ||
3532          needs_reinit)) {
3533         if (h != h0) {
3534             av_log(h->avctx, AV_LOG_ERROR, "changing width/height on "
3535                    "slice %d\n", h0->current_slice + 1);
3536             return AVERROR_INVALIDDATA;
3537         }
3538
3539         flush_change(h);
3540
3541         if ((ret = get_pixel_format(h, 1)) < 0)
3542             return ret;
3543         h->avctx->pix_fmt = ret;
3544
3545         av_log(h->avctx, AV_LOG_INFO, "Reinit context to %dx%d, "
3546                "pix_fmt: %s\n", h->width, h->height, av_get_pix_fmt_name(h->avctx->pix_fmt));
3547
3548         if ((ret = h264_slice_header_init(h, 1)) < 0) {
3549             av_log(h->avctx, AV_LOG_ERROR,
3550                    "h264_slice_header_init() failed\n");
3551             return ret;
3552         }
3553     }
3554     if (!h->context_initialized) {
3555         if (h != h0) {
3556             av_log(h->avctx, AV_LOG_ERROR,
3557                    "Cannot (re-)initialize context during parallel decoding.\n");
3558             return AVERROR_PATCHWELCOME;
3559         }
3560
3561         if ((ret = get_pixel_format(h, 1)) < 0)
3562             return ret;
3563         h->avctx->pix_fmt = ret;
3564
3565         if ((ret = h264_slice_header_init(h, 0)) < 0) {
3566             av_log(h->avctx, AV_LOG_ERROR,
3567                    "h264_slice_header_init() failed\n");
3568             return ret;
3569         }
3570     }
3571
3572     if (h == h0 && h->dequant_coeff_pps != pps_id) {
3573         h->dequant_coeff_pps = pps_id;
3574         init_dequant_tables(h);
3575     }
3576
3577     h->frame_num = get_bits(&h->gb, h->sps.log2_max_frame_num);
3578
3579     h->mb_mbaff        = 0;
3580     h->mb_aff_frame    = 0;
3581     last_pic_structure = h0->picture_structure;
3582     last_pic_droppable = h0->droppable;
3583     h->droppable       = h->nal_ref_idc == 0;
3584     if (h->sps.frame_mbs_only_flag) {
3585         h->picture_structure = PICT_FRAME;
3586     } else {
3587         if (!h->sps.direct_8x8_inference_flag && slice_type == AV_PICTURE_TYPE_B) {
3588             av_log(h->avctx, AV_LOG_ERROR, "This stream was generated by a broken encoder, invalid 8x8 inference\n");
3589             return -1;
3590         }
3591         field_pic_flag = get_bits1(&h->gb);
3592         if (field_pic_flag) {
3593             bottom_field_flag = get_bits1(&h->gb);
3594             h->picture_structure = PICT_TOP_FIELD + bottom_field_flag;
3595         } else {
3596             h->picture_structure = PICT_FRAME;
3597             h->mb_aff_frame      = h->sps.mb_aff;
3598         }
3599     }
3600     h->mb_field_decoding_flag = h->picture_structure != PICT_FRAME;
3601
3602     if (h0->current_slice != 0) {
3603         if (last_pic_structure != h->picture_structure ||
3604             last_pic_droppable != h->droppable) {
3605             av_log(h->avctx, AV_LOG_ERROR,
3606                    "Changing field mode (%d -> %d) between slices is not allowed\n",
3607                    last_pic_structure, h->picture_structure);
3608             h->picture_structure = last_pic_structure;
3609             h->droppable         = last_pic_droppable;
3610             return AVERROR_INVALIDDATA;
3611         } else if (!h0->cur_pic_ptr) {
3612             av_log(h->avctx, AV_LOG_ERROR,
3613                    "unset cur_pic_ptr on %d. slice\n",
3614                    h0->current_slice + 1);
3615             return AVERROR_INVALIDDATA;
3616         }
3617     } else {
3618         /* Shorten frame num gaps so we don't have to allocate reference
3619          * frames just to throw them away */
3620         if (h->frame_num != h->prev_frame_num && h->prev_frame_num >= 0) {
3621             int unwrap_prev_frame_num = h->prev_frame_num;
3622             int max_frame_num         = 1 << h->sps.log2_max_frame_num;
3623
3624             if (unwrap_prev_frame_num > h->frame_num)
3625                 unwrap_prev_frame_num -= max_frame_num;
3626
3627             if ((h->frame_num - unwrap_prev_frame_num) > h->sps.ref_frame_count) {
3628                 unwrap_prev_frame_num = (h->frame_num - h->sps.ref_frame_count) - 1;
3629                 if (unwrap_prev_frame_num < 0)
3630                     unwrap_prev_frame_num += max_frame_num;
3631
3632                 h->prev_frame_num = unwrap_prev_frame_num;
3633             }
3634         }
3635
3636         /* See if we have a decoded first field looking for a pair...
3637          * Here, we're using that to see if we should mark previously
3638          * decode frames as "finished".
3639          * We have to do that before the "dummy" in-between frame allocation,
3640          * since that can modify h->cur_pic_ptr. */
3641         if (h0->first_field) {
3642             assert(h0->cur_pic_ptr);
3643             assert(h0->cur_pic_ptr->f.data[0]);
3644             assert(h0->cur_pic_ptr->reference != DELAYED_PIC_REF);
3645
3646             /* Mark old field/frame as completed */
3647             if (h0->cur_pic_ptr->tf.owner == h0->avctx) {
3648                 ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
3649                                           last_pic_structure == PICT_BOTTOM_FIELD);
3650             }
3651
3652             /* figure out if we have a complementary field pair */
3653             if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
3654                 /* Previous field is unmatched. Don't display it, but let it
3655                  * remain for reference if marked as such. */
3656                 if (last_pic_structure != PICT_FRAME) {
3657                     ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
3658                                               last_pic_structure == PICT_TOP_FIELD);
3659                 }
3660             } else {
3661                 if (h0->cur_pic_ptr->frame_num != h->frame_num) {
3662                     /* This and previous field were reference, but had
3663                      * different frame_nums. Consider this field first in
3664                      * pair. Throw away previous field except for reference
3665                      * purposes. */
3666                     if (last_pic_structure != PICT_FRAME) {
3667                         ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
3668                                                   last_pic_structure == PICT_TOP_FIELD);
3669                     }
3670                 } else {
3671                     /* Second field in complementary pair */
3672                     if (!((last_pic_structure   == PICT_TOP_FIELD &&
3673                            h->picture_structure == PICT_BOTTOM_FIELD) ||
3674                           (last_pic_structure   == PICT_BOTTOM_FIELD &&
3675                            h->picture_structure == PICT_TOP_FIELD))) {
3676                         av_log(h->avctx, AV_LOG_ERROR,
3677                                "Invalid field mode combination %d/%d\n",
3678                                last_pic_structure, h->picture_structure);
3679                         h->picture_structure = last_pic_structure;
3680                         h->droppable         = last_pic_droppable;
3681                         return AVERROR_INVALIDDATA;
3682                     } else if (last_pic_droppable != h->droppable) {
3683                         avpriv_request_sample(h->avctx,
3684                                               "Found reference and non-reference fields in the same frame, which");
3685                         h->picture_structure = last_pic_structure;
3686                         h->droppable         = last_pic_droppable;
3687                         return AVERROR_PATCHWELCOME;
3688                     }
3689                 }
3690             }
3691         }
3692
3693         while (h->frame_num != h->prev_frame_num && h->prev_frame_num >= 0 && !h0->first_field &&
3694                h->frame_num != (h->prev_frame_num + 1) % (1 << h->sps.log2_max_frame_num)) {
3695             Picture *prev = h->short_ref_count ? h->short_ref[0] : NULL;
3696             av_log(h->avctx, AV_LOG_DEBUG, "Frame num gap %d %d\n",
3697                    h->frame_num, h->prev_frame_num);
3698             if (!h->sps.gaps_in_frame_num_allowed_flag)
3699                 for(i=0; i<FF_ARRAY_ELEMS(h->last_pocs); i++)
3700                     h->last_pocs[i] = INT_MIN;
3701             ret = h264_frame_start(h);
3702             if (ret < 0)
3703                 return ret;
3704             h->prev_frame_num++;
3705             h->prev_frame_num        %= 1 << h->sps.log2_max_frame_num;
3706             h->cur_pic_ptr->frame_num = h->prev_frame_num;
3707             ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 0);
3708             ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 1);
3709             ret = ff_generate_sliding_window_mmcos(h, 1);
3710             if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
3711                 return ret;
3712             ret = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
3713             if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
3714                 return ret;
3715             /* Error concealment: If a ref is missing, copy the previous ref
3716              * in its place.
3717              * FIXME: Avoiding a memcpy would be nice, but ref handling makes
3718              * many assumptions about there being no actual duplicates.
3719              * FIXME: This does not copy padding for out-of-frame motion
3720              * vectors.  Given we are concealing a lost frame, this probably
3721              * is not noticeable by comparison, but it should be fixed. */
3722             if (h->short_ref_count) {
3723                 if (prev) {
3724                     av_image_copy(h->short_ref[0]->f.data,
3725                                   h->short_ref[0]->f.linesize,
3726                                   (const uint8_t **)prev->f.data,
3727                                   prev->f.linesize,
3728                                   h->avctx->pix_fmt,
3729                                   h->mb_width  * 16,
3730                                   h->mb_height * 16);
3731                     h->short_ref[0]->poc = prev->poc + 2;
3732                 }
3733                 h->short_ref[0]->frame_num = h->prev_frame_num;
3734             }
3735         }
3736
3737         /* See if we have a decoded first field looking for a pair...
3738          * We're using that to see whether to continue decoding in that
3739          * frame, or to allocate a new one. */
3740         if (h0->first_field) {
3741             assert(h0->cur_pic_ptr);
3742             assert(h0->cur_pic_ptr->f.data[0]);
3743             assert(h0->cur_pic_ptr->reference != DELAYED_PIC_REF);
3744
3745             /* figure out if we have a complementary field pair */
3746             if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
3747                 /* Previous field is unmatched. Don't display it, but let it
3748                  * remain for reference if marked as such. */
3749                 h0->cur_pic_ptr = NULL;
3750                 h0->first_field = FIELD_PICTURE(h);
3751             } else {
3752                 if (h0->cur_pic_ptr->frame_num != h->frame_num) {
3753                     ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
3754                                               h0->picture_structure==PICT_BOTTOM_FIELD);
3755                     /* This and the previous field had different frame_nums.
3756                      * Consider this field first in pair. Throw away previous
3757                      * one except for reference purposes. */
3758                     h0->first_field = 1;
3759                     h0->cur_pic_ptr = NULL;
3760                 } else {
3761                     /* Second field in complementary pair */
3762                     h0->first_field = 0;
3763                 }
3764             }
3765         } else {
3766             /* Frame or first field in a potentially complementary pair */
3767             h0->first_field = FIELD_PICTURE(h);
3768         }
3769
3770         if (!FIELD_PICTURE(h) || h0->first_field) {
3771             if (h264_frame_start(h) < 0) {
3772                 h0->first_field = 0;
3773                 return AVERROR_INVALIDDATA;
3774             }
3775         } else {
3776             release_unused_pictures(h, 0);
3777         }
3778         /* Some macroblocks can be accessed before they're available in case
3779         * of lost slices, MBAFF or threading. */
3780         if (FIELD_PICTURE(h)) {
3781             for(i = (h->picture_structure == PICT_BOTTOM_FIELD); i<h->mb_height; i++)
3782                 memset(h->slice_table + i*h->mb_stride, -1, (h->mb_stride - (i+1==h->mb_height)) * sizeof(*h->slice_table));
3783         } else {
3784             memset(h->slice_table, -1,
3785                 (h->mb_height * h->mb_stride - 1) * sizeof(*h->slice_table));
3786         }
3787         h0->last_slice_type = -1;
3788     }
3789     if (h != h0 && (ret = clone_slice(h, h0)) < 0)
3790         return ret;
3791
3792     /* can't be in alloc_tables because linesize isn't known there.
3793      * FIXME: redo bipred weight to not require extra buffer? */
3794     for (i = 0; i < h->slice_context_count; i++)
3795         if (h->thread_context[i]) {
3796             ret = alloc_scratch_buffers(h->thread_context[i], h->linesize);
3797             if (ret < 0)
3798                 return ret;
3799         }
3800
3801     h->cur_pic_ptr->frame_num = h->frame_num; // FIXME frame_num cleanup
3802
3803     av_assert1(h->mb_num == h->mb_width * h->mb_height);
3804     if (first_mb_in_slice << FIELD_OR_MBAFF_PICTURE(h) >= h->mb_num ||
3805         first_mb_in_slice >= h->mb_num) {
3806         av_log(h->avctx, AV_LOG_ERROR, "first_mb_in_slice overflow\n");
3807         return AVERROR_INVALIDDATA;
3808     }
3809     h->resync_mb_x = h->mb_x =  first_mb_in_slice % h->mb_width;
3810     h->resync_mb_y = h->mb_y = (first_mb_in_slice / h->mb_width) <<
3811                                FIELD_OR_MBAFF_PICTURE(h);
3812     if (h->picture_structure == PICT_BOTTOM_FIELD)
3813         h->resync_mb_y = h->mb_y = h->mb_y + 1;
3814     av_assert1(h->mb_y < h->mb_height);
3815
3816     if (h->picture_structure == PICT_FRAME) {
3817         h->curr_pic_num = h->frame_num;
3818         h->max_pic_num  = 1 << h->sps.log2_max_frame_num;
3819     } else {
3820         h->curr_pic_num = 2 * h->frame_num + 1;
3821         h->max_pic_num  = 1 << (h->sps.log2_max_frame_num + 1);
3822     }
3823
3824     if (h->nal_unit_type == NAL_IDR_SLICE)
3825         get_ue_golomb(&h->gb); /* idr_pic_id */
3826
3827     if (h->sps.poc_type == 0) {
3828         h->poc_lsb = get_bits(&h->gb, h->sps.log2_max_poc_lsb);
3829
3830         if (h->pps.pic_order_present == 1 && h->picture_structure == PICT_FRAME)
3831             h->delta_poc_bottom = get_se_golomb(&h->gb);
3832     }
3833
3834     if (h->sps.poc_type == 1 && !h->sps.delta_pic_order_always_zero_flag) {
3835         h->delta_poc[0] = get_se_golomb(&h->gb);
3836
3837         if (h->pps.pic_order_present == 1 && h->picture_structure == PICT_FRAME)
3838             h->delta_poc[1] = get_se_golomb(&h->gb);
3839     }
3840
3841     ff_init_poc(h, h->cur_pic_ptr->field_poc, &h->cur_pic_ptr->poc);
3842
3843     if (h->pps.redundant_pic_cnt_present)
3844         h->redundant_pic_count = get_ue_golomb(&h->gb);
3845
3846     ret = ff_set_ref_count(h);
3847     if (ret < 0)
3848         return ret;
3849
3850     if (slice_type != AV_PICTURE_TYPE_I &&
3851         (h0->current_slice == 0 ||
3852          slice_type != h0->last_slice_type ||
3853          memcmp(h0->last_ref_count, h0->ref_count, sizeof(h0->ref_count)))) {
3854
3855         ff_h264_fill_default_ref_list(h);
3856     }
3857
3858     if (h->slice_type_nos != AV_PICTURE_TYPE_I) {
3859        ret = ff_h264_decode_ref_pic_list_reordering(h);
3860        if (ret < 0) {
3861            h->ref_count[1] = h->ref_count[0] = 0;
3862            return ret;
3863        }
3864     }
3865
3866     if ((h->pps.weighted_pred && h->slice_type_nos == AV_PICTURE_TYPE_P) ||
3867         (h->pps.weighted_bipred_idc == 1 &&
3868          h->slice_type_nos == AV_PICTURE_TYPE_B))
3869         ff_pred_weight_table(h);
3870     else if (h->pps.weighted_bipred_idc == 2 &&
3871              h->slice_type_nos == AV_PICTURE_TYPE_B) {
3872         implicit_weight_table(h, -1);
3873     } else {
3874         h->use_weight = 0;
3875         for (i = 0; i < 2; i++) {
3876             h->luma_weight_flag[i]   = 0;
3877             h->chroma_weight_flag[i] = 0;
3878         }
3879     }
3880
3881     // If frame-mt is enabled, only update mmco tables for the first slice
3882     // in a field. Subsequent slices can temporarily clobber h->mmco_index
3883     // or h->mmco, which will cause ref list mix-ups and decoding errors
3884     // further down the line. This may break decoding if the first slice is
3885     // corrupt, thus we only do this if frame-mt is enabled.
3886     if (h->nal_ref_idc) {
3887         ret = ff_h264_decode_ref_pic_marking(h0, &h->gb,
3888                                              !(h->avctx->active_thread_type & FF_THREAD_FRAME) ||
3889                                              h0->current_slice == 0);
3890         if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
3891             return AVERROR_INVALIDDATA;
3892     }
3893
3894     if (FRAME_MBAFF(h)) {
3895         ff_h264_fill_mbaff_ref_list(h);
3896
3897         if (h->pps.weighted_bipred_idc == 2 && h->slice_type_nos == AV_PICTURE_TYPE_B) {
3898             implicit_weight_table(h, 0);
3899             implicit_weight_table(h, 1);
3900         }
3901     }
3902
3903     if (h->slice_type_nos == AV_PICTURE_TYPE_B && !h->direct_spatial_mv_pred)
3904         ff_h264_direct_dist_scale_factor(h);
3905     ff_h264_direct_ref_list_init(h);
3906
3907     if (h->slice_type_nos != AV_PICTURE_TYPE_I && h->pps.cabac) {
3908         tmp = get_ue_golomb_31(&h->gb);
3909         if (tmp > 2) {
3910             av_log(h->avctx, AV_LOG_ERROR, "cabac_init_idc overflow\n");
3911             return AVERROR_INVALIDDATA;
3912         }
3913         h->cabac_init_idc = tmp;
3914     }
3915
3916     h->last_qscale_diff = 0;
3917     tmp = h->pps.init_qp + get_se_golomb(&h->gb);
3918     if (tmp > 51 + 6 * (h->sps.bit_depth_luma - 8)) {
3919         av_log(h->avctx, AV_LOG_ERROR, "QP %u out of range\n", tmp);
3920         return AVERROR_INVALIDDATA;
3921     }
3922     h->qscale       = tmp;
3923     h->chroma_qp[0] = get_chroma_qp(h, 0, h->qscale);
3924     h->chroma_qp[1] = get_chroma_qp(h, 1, h->qscale);
3925     // FIXME qscale / qp ... stuff
3926     if (h->slice_type == AV_PICTURE_TYPE_SP)
3927         get_bits1(&h->gb); /* sp_for_switch_flag */
3928     if (h->slice_type == AV_PICTURE_TYPE_SP ||
3929         h->slice_type == AV_PICTURE_TYPE_SI)
3930         get_se_golomb(&h->gb); /* slice_qs_delta */
3931
3932     h->deblocking_filter     = 1;
3933     h->slice_alpha_c0_offset = 52;
3934     h->slice_beta_offset     = 52;
3935     if (h->pps.deblocking_filter_parameters_present) {
3936         tmp = get_ue_golomb_31(&h->gb);
3937         if (tmp > 2) {
3938             av_log(h->avctx, AV_LOG_ERROR,
3939                    "deblocking_filter_idc %u out of range\n", tmp);
3940             return AVERROR_INVALIDDATA;
3941         }
3942         h->deblocking_filter = tmp;
3943         if (h->deblocking_filter < 2)
3944             h->deblocking_filter ^= 1;  // 1<->0
3945
3946         if (h->deblocking_filter) {
3947             h->slice_alpha_c0_offset += get_se_golomb(&h->gb) << 1;
3948             h->slice_beta_offset     += get_se_golomb(&h->gb) << 1;
3949             if (h->slice_alpha_c0_offset > 104U ||
3950                 h->slice_beta_offset     > 104U) {
3951                 av_log(h->avctx, AV_LOG_ERROR,
3952                        "deblocking filter parameters %d %d out of range\n",
3953                        h->slice_alpha_c0_offset, h->slice_beta_offset);
3954                 return AVERROR_INVALIDDATA;
3955             }
3956         }
3957     }
3958
3959     if (h->avctx->skip_loop_filter >= AVDISCARD_ALL ||
3960         (h->avctx->skip_loop_filter >= AVDISCARD_NONKEY &&
3961          h->slice_type_nos != AV_PICTURE_TYPE_I) ||
3962         (h->avctx->skip_loop_filter >= AVDISCARD_BIDIR  &&
3963          h->slice_type_nos == AV_PICTURE_TYPE_B) ||
3964         (h->avctx->skip_loop_filter >= AVDISCARD_NONREF &&
3965          h->nal_ref_idc == 0))
3966         h->deblocking_filter = 0;
3967
3968     if (h->deblocking_filter == 1 && h0->max_contexts > 1) {
3969         if (h->avctx->flags2 & CODEC_FLAG2_FAST) {
3970             /* Cheat slightly for speed:
3971              * Do not bother to deblock across slices. */
3972             h->deblocking_filter = 2;
3973         } else {
3974             h0->max_contexts = 1;
3975             if (!h0->single_decode_warning) {
3976                 av_log(h->avctx, AV_LOG_INFO,
3977                        "Cannot parallelize deblocking type 1, decoding such frames in sequential order\n");
3978                 h0->single_decode_warning = 1;
3979             }
3980             if (h != h0) {
3981                 av_log(h->avctx, AV_LOG_ERROR,
3982                        "Deblocking switched inside frame.\n");
3983                 return 1;
3984             }
3985         }
3986     }
3987     h->qp_thresh = 15 + 52 -
3988                    FFMIN(h->slice_alpha_c0_offset, h->slice_beta_offset) -
3989                    FFMAX3(0,
3990                           h->pps.chroma_qp_index_offset[0],
3991                           h->pps.chroma_qp_index_offset[1]) +
3992                    6 * (h->sps.bit_depth_luma - 8);
3993
3994     h0->last_slice_type = slice_type;
3995     memcpy(h0->last_ref_count, h0->ref_count, sizeof(h0->last_ref_count));
3996     h->slice_num        = ++h0->current_slice;
3997
3998     if (h->slice_num)
3999         h0->slice_row[(h->slice_num-1)&(MAX_SLICES-1)]= h->resync_mb_y;
4000     if (   h0->slice_row[h->slice_num&(MAX_SLICES-1)] + 3 >= h->resync_mb_y
4001         && h0->slice_row[h->slice_num&(MAX_SLICES-1)] <= h->resync_mb_y
4002         && h->slice_num >= MAX_SLICES) {
4003         //in case of ASO this check needs to be updated depending on how we decide to assign slice numbers in this case
4004         av_log(h->avctx, AV_LOG_WARNING, "Possibly too many slices (%d >= %d), increase MAX_SLICES and recompile if there are artifacts\n", h->slice_num, MAX_SLICES);
4005     }
4006
4007     for (j = 0; j < 2; j++) {
4008         int id_list[16];
4009         int *ref2frm = h->ref2frm[h->slice_num & (MAX_SLICES - 1)][j];
4010         for (i = 0; i < 16; i++) {
4011             id_list[i] = 60;
4012             if (j < h->list_count && i < h->ref_count[j] &&
4013                 h->ref_list[j][i].f.buf[0]) {
4014                 int k;
4015                 AVBuffer *buf = h->ref_list[j][i].f.buf[0]->buffer;
4016                 for (k = 0; k < h->short_ref_count; k++)
4017                     if (h->short_ref[k]->f.buf[0]->buffer == buf) {
4018                         id_list[i] = k;
4019                         break;
4020                     }
4021                 for (k = 0; k < h->long_ref_count; k++)
4022                     if (h->long_ref[k] && h->long_ref[k]->f.buf[0]->buffer == buf) {
4023                         id_list[i] = h->short_ref_count + k;
4024                         break;
4025                     }
4026             }
4027         }
4028
4029         ref2frm[0] =
4030         ref2frm[1] = -1;
4031         for (i = 0; i < 16; i++)
4032             ref2frm[i + 2] = 4 * id_list[i] + (h->ref_list[j][i].reference & 3);
4033         ref2frm[18 + 0] =
4034         ref2frm[18 + 1] = -1;
4035         for (i = 16; i < 48; i++)
4036             ref2frm[i + 4] = 4 * id_list[(i - 16) >> 1] +
4037                              (h->ref_list[j][i].reference & 3);
4038     }
4039
4040     if (h->ref_count[0]) h->er.last_pic = &h->ref_list[0][0];
4041     if (h->ref_count[1]) h->er.next_pic = &h->ref_list[1][0];
4042     h->er.ref_count = h->ref_count[0];
4043
4044     if (h->avctx->debug & FF_DEBUG_PICT_INFO) {
4045         av_log(h->avctx, AV_LOG_DEBUG,
4046                "slice:%d %s mb:%d %c%s%s pps:%u frame:%d poc:%d/%d ref:%d/%d qp:%d loop:%d:%d:%d weight:%d%s %s\n",
4047                h->slice_num,
4048                (h->picture_structure == PICT_FRAME ? "F" : h->picture_structure == PICT_TOP_FIELD ? "T" : "B"),
4049                first_mb_in_slice,
4050                av_get_picture_type_char(h->slice_type),
4051                h->slice_type_fixed ? " fix" : "",
4052                h->nal_unit_type == NAL_IDR_SLICE ? " IDR" : "",
4053                pps_id, h->frame_num,
4054                h->cur_pic_ptr->field_poc[0],
4055                h->cur_pic_ptr->field_poc[1],
4056                h->ref_count[0], h->ref_count[1],
4057                h->qscale,
4058                h->deblocking_filter,
4059                h->slice_alpha_c0_offset / 2 - 26, h->slice_beta_offset / 2 - 26,
4060                h->use_weight,
4061                h->use_weight == 1 && h->use_weight_chroma ? "c" : "",
4062                h->slice_type == AV_PICTURE_TYPE_B ? (h->direct_spatial_mv_pred ? "SPAT" : "TEMP") : "");
4063     }
4064
4065     return 0;
4066 }
4067
4068 int ff_h264_get_slice_type(const H264Context *h)
4069 {
4070     switch (h->slice_type) {
4071     case AV_PICTURE_TYPE_P:
4072         return 0;
4073     case AV_PICTURE_TYPE_B:
4074         return 1;
4075     case AV_PICTURE_TYPE_I:
4076         return 2;
4077     case AV_PICTURE_TYPE_SP:
4078         return 3;
4079     case AV_PICTURE_TYPE_SI:
4080         return 4;
4081     default:
4082         return AVERROR_INVALIDDATA;
4083     }
4084 }
4085
4086 static av_always_inline void fill_filter_caches_inter(H264Context *h,
4087                                                       int mb_type, int top_xy,
4088                                                       int left_xy[LEFT_MBS],
4089                                                       int top_type,
4090                                                       int left_type[LEFT_MBS],
4091                                                       int mb_xy, int list)
4092 {
4093     int b_stride = h->b_stride;
4094     int16_t(*mv_dst)[2] = &h->mv_cache[list][scan8[0]];
4095     int8_t *ref_cache = &h->ref_cache[list][scan8[0]];
4096     if (IS_INTER(mb_type) || IS_DIRECT(mb_type)) {
4097         if (USES_LIST(top_type, list)) {
4098             const int b_xy  = h->mb2b_xy[top_xy] + 3 * b_stride;
4099             const int b8_xy = 4 * top_xy + 2;
4100             int (*ref2frm)[64] = (void*)(h->ref2frm[h->slice_table[top_xy] & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
4101             AV_COPY128(mv_dst - 1 * 8, h->cur_pic.motion_val[list][b_xy + 0]);
4102             ref_cache[0 - 1 * 8] =
4103             ref_cache[1 - 1 * 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 0]];
4104             ref_cache[2 - 1 * 8] =
4105             ref_cache[3 - 1 * 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 1]];
4106         } else {
4107             AV_ZERO128(mv_dst - 1 * 8);
4108             AV_WN32A(&ref_cache[0 - 1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
4109         }
4110
4111         if (!IS_INTERLACED(mb_type ^ left_type[LTOP])) {
4112             if (USES_LIST(left_type[LTOP], list)) {
4113                 const int b_xy  = h->mb2b_xy[left_xy[LTOP]] + 3;
4114                 const int b8_xy = 4 * left_xy[LTOP] + 1;
4115                 int (*ref2frm)[64] =(void*)( h->ref2frm[h->slice_table[left_xy[LTOP]] & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
4116                 AV_COPY32(mv_dst - 1 +  0, h->cur_pic.motion_val[list][b_xy + b_stride * 0]);
4117                 AV_COPY32(mv_dst - 1 +  8, h->cur_pic.motion_val[list][b_xy + b_stride * 1]);
4118                 AV_COPY32(mv_dst - 1 + 16, h->cur_pic.motion_val[list][b_xy + b_stride * 2]);
4119                 AV_COPY32(mv_dst - 1 + 24, h->cur_pic.motion_val[list][b_xy + b_stride * 3]);
4120                 ref_cache[-1 +  0] =
4121                 ref_cache[-1 +  8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 2 * 0]];
4122                 ref_cache[-1 + 16] =
4123                 ref_cache[-1 + 24] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 2 * 1]];
4124             } else {
4125                 AV_ZERO32(mv_dst - 1 +  0);
4126                 AV_ZERO32(mv_dst - 1 +  8);
4127                 AV_ZERO32(mv_dst - 1 + 16);
4128                 AV_ZERO32(mv_dst - 1 + 24);
4129                 ref_cache[-1 +  0] =
4130                 ref_cache[-1 +  8] =
4131                 ref_cache[-1 + 16] =
4132                 ref_cache[-1 + 24] = LIST_NOT_USED;
4133             }
4134         }
4135     }
4136
4137     if (!USES_LIST(mb_type, list)) {
4138         fill_rectangle(mv_dst, 4, 4, 8, pack16to32(0, 0), 4);
4139         AV_WN32A(&ref_cache[0 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
4140         AV_WN32A(&ref_cache[1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
4141         AV_WN32A(&ref_cache[2 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
4142         AV_WN32A(&ref_cache[3 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
4143         return;
4144     }
4145
4146     {
4147         int8_t *ref = &h->cur_pic.ref_index[list][4 * mb_xy];
4148         int (*ref2frm)[64] = (void*)(h->ref2frm[h->slice_num & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
4149         uint32_t ref01 = (pack16to32(ref2frm[list][ref[0]], ref2frm[list][ref[1]]) & 0x00FF00FF) * 0x0101;
4150         uint32_t ref23 = (pack16to32(ref2frm[list][ref[2]], ref2frm[list][ref[3]]) & 0x00FF00FF) * 0x0101;
4151         AV_WN32A(&ref_cache[0 * 8], ref01);
4152         AV_WN32A(&ref_cache[1 * 8], ref01);
4153         AV_WN32A(&ref_cache[2 * 8], ref23);
4154         AV_WN32A(&ref_cache[3 * 8], ref23);
4155     }
4156
4157     {
4158         int16_t(*mv_src)[2] = &h->cur_pic.motion_val[list][4 * h->mb_x + 4 * h->mb_y * b_stride];
4159         AV_COPY128(mv_dst + 8 * 0, mv_src + 0 * b_stride);
4160         AV_COPY128(mv_dst + 8 * 1, mv_src + 1 * b_stride);
4161         AV_COPY128(mv_dst + 8 * 2, mv_src + 2 * b_stride);
4162         AV_COPY128(mv_dst + 8 * 3, mv_src + 3 * b_stride);
4163     }
4164 }
4165
4166 /**
4167  *
4168  * @return non zero if the loop filter can be skipped
4169  */
4170 static int fill_filter_caches(H264Context *h, int mb_type)
4171 {
4172     const int mb_xy = h->mb_xy;
4173     int top_xy, left_xy[LEFT_MBS];
4174     int top_type, left_type[LEFT_MBS];
4175     uint8_t *nnz;
4176     uint8_t *nnz_cache;
4177
4178     top_xy = mb_xy - (h->mb_stride << MB_FIELD(h));
4179
4180     /* Wow, what a mess, why didn't they simplify the interlacing & intra
4181      * stuff, I can't imagine that these complex rules are worth it. */
4182
4183     left_xy[LBOT] = left_xy[LTOP] = mb_xy - 1;
4184     if (FRAME_MBAFF(h)) {
4185         const int left_mb_field_flag = IS_INTERLACED(h->cur_pic.mb_type[mb_xy - 1]);
4186         const int curr_mb_field_flag = IS_INTERLACED(mb_type);
4187         if (h->mb_y & 1) {
4188             if (left_mb_field_flag != curr_mb_field_flag)
4189                 left_xy[LTOP] -= h->mb_stride;
4190         } else {
4191             if (curr_mb_field_flag)
4192                 top_xy += h->mb_stride &
4193                           (((h->cur_pic.mb_type[top_xy] >> 7) & 1) - 1);
4194             if (left_mb_field_flag != curr_mb_field_flag)
4195                 left_xy[LBOT] += h->mb_stride;
4196         }
4197     }
4198
4199     h->top_mb_xy        = top_xy;
4200     h->left_mb_xy[LTOP] = left_xy[LTOP];
4201     h->left_mb_xy[LBOT] = left_xy[LBOT];
4202     {
4203         /* For sufficiently low qp, filtering wouldn't do anything.
4204          * This is a conservative estimate: could also check beta_offset
4205          * and more accurate chroma_qp. */
4206         int qp_thresh = h->qp_thresh; // FIXME strictly we should store qp_thresh for each mb of a slice
4207         int qp        = h->cur_pic.qscale_table[mb_xy];
4208         if (qp <= qp_thresh &&
4209             (left_xy[LTOP] < 0 ||
4210              ((qp + h->cur_pic.qscale_table[left_xy[LTOP]] + 1) >> 1) <= qp_thresh) &&
4211             (top_xy < 0 ||
4212              ((qp + h->cur_pic.qscale_table[top_xy] + 1) >> 1) <= qp_thresh)) {
4213             if (!FRAME_MBAFF(h))
4214                 return 1;
4215             if ((left_xy[LTOP] < 0 ||
4216                  ((qp + h->cur_pic.qscale_table[left_xy[LBOT]] + 1) >> 1) <= qp_thresh) &&
4217                 (top_xy < h->mb_stride ||
4218                  ((qp + h->cur_pic.qscale_table[top_xy - h->mb_stride] + 1) >> 1) <= qp_thresh))
4219                 return 1;
4220         }
4221     }
4222
4223     top_type        = h->cur_pic.mb_type[top_xy];
4224     left_type[LTOP] = h->cur_pic.mb_type[left_xy[LTOP]];
4225     left_type[LBOT] = h->cur_pic.mb_type[left_xy[LBOT]];
4226     if (h->deblocking_filter == 2) {
4227         if (h->slice_table[top_xy] != h->slice_num)
4228             top_type = 0;
4229         if (h->slice_table[left_xy[LBOT]] != h->slice_num)
4230             left_type[LTOP] = left_type[LBOT] = 0;
4231     } else {
4232         if (h->slice_table[top_xy] == 0xFFFF)
4233             top_type = 0;
4234         if (h->slice_table[left_xy[LBOT]] == 0xFFFF)
4235             left_type[LTOP] = left_type[LBOT] = 0;
4236     }
4237     h->top_type        = top_type;
4238     h->left_type[LTOP] = left_type[LTOP];
4239     h->left_type[LBOT] = left_type[LBOT];
4240
4241     if (IS_INTRA(mb_type))
4242         return 0;
4243
4244     fill_filter_caches_inter(h, mb_type, top_xy, left_xy,
4245                              top_type, left_type, mb_xy, 0);
4246     if (h->list_count == 2)
4247         fill_filter_caches_inter(h, mb_type, top_xy, left_xy,
4248                                  top_type, left_type, mb_xy, 1);
4249
4250     nnz       = h->non_zero_count[mb_xy];
4251     nnz_cache = h->non_zero_count_cache;
4252     AV_COPY32(&nnz_cache[4 + 8 * 1], &nnz[0]);
4253     AV_COPY32(&nnz_cache[4 + 8 * 2], &nnz[4]);
4254     AV_COPY32(&nnz_cache[4 + 8 * 3], &nnz[8]);
4255     AV_COPY32(&nnz_cache[4 + 8 * 4], &nnz[12]);
4256     h->cbp = h->cbp_table[mb_xy];
4257
4258     if (top_type) {
4259         nnz = h->non_zero_count[top_xy];
4260         AV_COPY32(&nnz_cache[4 + 8 * 0], &nnz[3 * 4]);
4261     }
4262
4263     if (left_type[LTOP]) {
4264         nnz = h->non_zero_count[left_xy[LTOP]];
4265         nnz_cache[3 + 8 * 1] = nnz[3 + 0 * 4];
4266         nnz_cache[3 + 8 * 2] = nnz[3 + 1 * 4];
4267         nnz_cache[3 + 8 * 3] = nnz[3 + 2 * 4];
4268         nnz_cache[3 + 8 * 4] = nnz[3 + 3 * 4];
4269     }
4270
4271     /* CAVLC 8x8dct requires NNZ values for residual decoding that differ
4272      * from what the loop filter needs */
4273     if (!CABAC(h) && h->pps.transform_8x8_mode) {
4274         if (IS_8x8DCT(top_type)) {
4275             nnz_cache[4 + 8 * 0] =
4276             nnz_cache[5 + 8 * 0] = (h->cbp_table[top_xy] & 0x4000) >> 12;
4277             nnz_cache[6 + 8 * 0] =
4278             nnz_cache[7 + 8 * 0] = (h->cbp_table[top_xy] & 0x8000) >> 12;
4279         }
4280         if (IS_8x8DCT(left_type[LTOP])) {
4281             nnz_cache[3 + 8 * 1] =
4282             nnz_cache[3 + 8 * 2] = (h->cbp_table[left_xy[LTOP]] & 0x2000) >> 12; // FIXME check MBAFF
4283         }
4284         if (IS_8x8DCT(left_type[LBOT])) {
4285             nnz_cache[3 + 8 * 3] =
4286             nnz_cache[3 + 8 * 4] = (h->cbp_table[left_xy[LBOT]] & 0x8000) >> 12; // FIXME check MBAFF
4287         }
4288
4289         if (IS_8x8DCT(mb_type)) {
4290             nnz_cache[scan8[0]] =
4291             nnz_cache[scan8[1]] =
4292             nnz_cache[scan8[2]] =
4293             nnz_cache[scan8[3]] = (h->cbp & 0x1000) >> 12;
4294
4295             nnz_cache[scan8[0 + 4]] =
4296             nnz_cache[scan8[1 + 4]] =
4297             nnz_cache[scan8[2 + 4]] =
4298             nnz_cache[scan8[3 + 4]] = (h->cbp & 0x2000) >> 12;
4299
4300             nnz_cache[scan8[0 + 8]] =
4301             nnz_cache[scan8[1 + 8]] =
4302             nnz_cache[scan8[2 + 8]] =
4303             nnz_cache[scan8[3 + 8]] = (h->cbp & 0x4000) >> 12;
4304
4305             nnz_cache[scan8[0 + 12]] =
4306             nnz_cache[scan8[1 + 12]] =
4307             nnz_cache[scan8[2 + 12]] =
4308             nnz_cache[scan8[3 + 12]] = (h->cbp & 0x8000) >> 12;
4309         }
4310     }
4311
4312     return 0;
4313 }
4314
4315 static void loop_filter(H264Context *h, int start_x, int end_x)
4316 {
4317     uint8_t *dest_y, *dest_cb, *dest_cr;
4318     int linesize, uvlinesize, mb_x, mb_y;
4319     const int end_mb_y       = h->mb_y + FRAME_MBAFF(h);
4320     const int old_slice_type = h->slice_type;
4321     const int pixel_shift    = h->pixel_shift;
4322     const int block_h        = 16 >> h->chroma_y_shift;
4323
4324     if (h->deblocking_filter) {
4325         for (mb_x = start_x; mb_x < end_x; mb_x++)
4326             for (mb_y = end_mb_y - FRAME_MBAFF(h); mb_y <= end_mb_y; mb_y++) {
4327                 int mb_xy, mb_type;
4328                 mb_xy         = h->mb_xy = mb_x + mb_y * h->mb_stride;
4329                 h->slice_num  = h->slice_table[mb_xy];
4330                 mb_type       = h->cur_pic.mb_type[mb_xy];
4331                 h->list_count = h->list_counts[mb_xy];
4332
4333                 if (FRAME_MBAFF(h))
4334                     h->mb_mbaff               =
4335                     h->mb_field_decoding_flag = !!IS_INTERLACED(mb_type);
4336
4337                 h->mb_x = mb_x;
4338                 h->mb_y = mb_y;
4339                 dest_y  = h->cur_pic.f.data[0] +
4340                           ((mb_x << pixel_shift) + mb_y * h->linesize) * 16;
4341                 dest_cb = h->cur_pic.f.data[1] +
4342                           (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
4343                           mb_y * h->uvlinesize * block_h;
4344                 dest_cr = h->cur_pic.f.data[2] +
4345                           (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
4346                           mb_y * h->uvlinesize * block_h;
4347                 // FIXME simplify above
4348
4349                 if (MB_FIELD(h)) {
4350                     linesize   = h->mb_linesize   = h->linesize   * 2;
4351                     uvlinesize = h->mb_uvlinesize = h->uvlinesize * 2;
4352                     if (mb_y & 1) { // FIXME move out of this function?
4353                         dest_y  -= h->linesize   * 15;
4354                         dest_cb -= h->uvlinesize * (block_h - 1);
4355                         dest_cr -= h->uvlinesize * (block_h - 1);
4356                     }
4357                 } else {
4358                     linesize   = h->mb_linesize   = h->linesize;
4359                     uvlinesize = h->mb_uvlinesize = h->uvlinesize;
4360                 }
4361                 backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize,
4362                                  uvlinesize, 0);
4363                 if (fill_filter_caches(h, mb_type))
4364                     continue;
4365                 h->chroma_qp[0] = get_chroma_qp(h, 0, h->cur_pic.qscale_table[mb_xy]);
4366                 h->chroma_qp[1] = get_chroma_qp(h, 1, h->cur_pic.qscale_table[mb_xy]);
4367
4368                 if (FRAME_MBAFF(h)) {
4369                     ff_h264_filter_mb(h, mb_x, mb_y, dest_y, dest_cb, dest_cr,
4370                                       linesize, uvlinesize);
4371                 } else {
4372                     ff_h264_filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb,
4373                                            dest_cr, linesize, uvlinesize);
4374                 }
4375             }
4376     }
4377     h->slice_type   = old_slice_type;
4378     h->mb_x         = end_x;
4379     h->mb_y         = end_mb_y - FRAME_MBAFF(h);
4380     h->chroma_qp[0] = get_chroma_qp(h, 0, h->qscale);
4381     h->chroma_qp[1] = get_chroma_qp(h, 1, h->qscale);
4382 }
4383
4384 static void predict_field_decoding_flag(H264Context *h)
4385 {
4386     const int mb_xy = h->mb_x + h->mb_y * h->mb_stride;
4387     int mb_type     = (h->slice_table[mb_xy - 1] == h->slice_num) ?
4388                       h->cur_pic.mb_type[mb_xy - 1] :
4389                       (h->slice_table[mb_xy - h->mb_stride] == h->slice_num) ?
4390                       h->cur_pic.mb_type[mb_xy - h->mb_stride] : 0;
4391     h->mb_mbaff     = h->mb_field_decoding_flag = IS_INTERLACED(mb_type) ? 1 : 0;
4392 }
4393
4394 /**
4395  * Draw edges and report progress for the last MB row.
4396  */
4397 static void decode_finish_row(H264Context *h)
4398 {
4399     int top            = 16 * (h->mb_y      >> FIELD_PICTURE(h));
4400     int pic_height     = 16 *  h->mb_height >> FIELD_PICTURE(h);
4401     int height         =  16      << FRAME_MBAFF(h);
4402     int deblock_border = (16 + 4) << FRAME_MBAFF(h);
4403
4404     if (h->deblocking_filter) {
4405         if ((top + height) >= pic_height)
4406             height += deblock_border;
4407         top -= deblock_border;
4408     }
4409
4410     if (top >= pic_height || (top + height) < 0)
4411         return;
4412
4413     height = FFMIN(height, pic_height - top);
4414     if (top < 0) {
4415         height = top + height;
4416         top    = 0;
4417     }
4418
4419     ff_h264_draw_horiz_band(h, top, height);
4420
4421     if (h->droppable || h->er.error_occurred)
4422         return;
4423
4424     ff_thread_report_progress(&h->cur_pic_ptr->tf, top + height - 1,
4425                               h->picture_structure == PICT_BOTTOM_FIELD);
4426 }
4427
4428 static void er_add_slice(H264Context *h, int startx, int starty,
4429                          int endx, int endy, int status)
4430 {
4431     if (CONFIG_ERROR_RESILIENCE) {
4432         ERContext *er = &h->er;
4433
4434         ff_er_add_slice(er, startx, starty, endx, endy, status);
4435     }
4436 }
4437
4438 static int decode_slice(struct AVCodecContext *avctx, void *arg)
4439 {
4440     H264Context *h = *(void **)arg;
4441     int lf_x_start = h->mb_x;
4442
4443     h->mb_skip_run = -1;
4444
4445     av_assert0(h->block_offset[15] == (4 * ((scan8[15] - scan8[0]) & 7) << h->pixel_shift) + 4 * h->linesize * ((scan8[15] - scan8[0]) >> 3));
4446
4447     h->is_complex = FRAME_MBAFF(h) || h->picture_structure != PICT_FRAME ||
4448                     avctx->codec_id != AV_CODEC_ID_H264 ||
4449                     (CONFIG_GRAY && (h->flags & CODEC_FLAG_GRAY));
4450
4451     if (!(h->avctx->active_thread_type & FF_THREAD_SLICE) && h->picture_structure == PICT_FRAME && h->er.error_status_table) {
4452         const int start_i  = av_clip(h->resync_mb_x + h->resync_mb_y * h->mb_width, 0, h->mb_num - 1);
4453         if (start_i) {
4454             int prev_status = h->er.error_status_table[h->er.mb_index2xy[start_i - 1]];
4455             prev_status &= ~ VP_START;
4456             if (prev_status != (ER_MV_END | ER_DC_END | ER_AC_END))
4457                 h->er.error_occurred = 1;
4458         }
4459     }
4460
4461     if (h->pps.cabac) {
4462         /* realign */
4463         align_get_bits(&h->gb);
4464
4465         /* init cabac */
4466         ff_init_cabac_decoder(&h->cabac,
4467                               h->gb.buffer + get_bits_count(&h->gb) / 8,
4468                               (get_bits_left(&h->gb) + 7) / 8);
4469
4470         ff_h264_init_cabac_states(h);
4471
4472         for (;;) {
4473             // START_TIMER
4474             int ret = ff_h264_decode_mb_cabac(h);
4475             int eos;
4476             // STOP_TIMER("decode_mb_cabac")
4477
4478             if (ret >= 0)
4479                 ff_h264_hl_decode_mb(h);
4480
4481             // FIXME optimal? or let mb_decode decode 16x32 ?
4482             if (ret >= 0 && FRAME_MBAFF(h)) {
4483                 h->mb_y++;
4484
4485                 ret = ff_h264_decode_mb_cabac(h);
4486
4487                 if (ret >= 0)
4488                     ff_h264_hl_decode_mb(h);
4489                 h->mb_y--;
4490             }
4491             eos = get_cabac_terminate(&h->cabac);
4492
4493             if ((h->workaround_bugs & FF_BUG_TRUNCATED) &&
4494                 h->cabac.bytestream > h->cabac.bytestream_end + 2) {
4495                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x - 1,
4496                              h->mb_y, ER_MB_END);
4497                 if (h->mb_x >= lf_x_start)
4498                     loop_filter(h, lf_x_start, h->mb_x + 1);
4499                 return 0;
4500             }
4501             if (h->cabac.bytestream > h->cabac.bytestream_end + 2 )
4502                 av_log(h->avctx, AV_LOG_DEBUG, "bytestream overread %td\n", h->cabac.bytestream_end - h->cabac.bytestream);
4503             if (ret < 0 || h->cabac.bytestream > h->cabac.bytestream_end + 4) {
4504                 av_log(h->avctx, AV_LOG_ERROR,
4505                        "error while decoding MB %d %d, bytestream (%td)\n",
4506                        h->mb_x, h->mb_y,
4507                        h->cabac.bytestream_end - h->cabac.bytestream);
4508                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
4509                              h->mb_y, ER_MB_ERROR);
4510                 return AVERROR_INVALIDDATA;
4511             }
4512
4513             if (++h->mb_x >= h->mb_width) {
4514                 loop_filter(h, lf_x_start, h->mb_x);
4515                 h->mb_x = lf_x_start = 0;
4516                 decode_finish_row(h);
4517                 ++h->mb_y;
4518                 if (FIELD_OR_MBAFF_PICTURE(h)) {
4519                     ++h->mb_y;
4520                     if (FRAME_MBAFF(h) && h->mb_y < h->mb_height)
4521                         predict_field_decoding_flag(h);
4522                 }
4523             }
4524
4525             if (eos || h->mb_y >= h->mb_height) {
4526                 tprintf(h->avctx, "slice end %d %d\n",
4527                         get_bits_count(&h->gb), h->gb.size_in_bits);
4528                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x - 1,
4529                              h->mb_y, ER_MB_END);
4530                 if (h->mb_x > lf_x_start)
4531                     loop_filter(h, lf_x_start, h->mb_x);
4532                 return 0;
4533             }
4534         }
4535     } else {
4536         for (;;) {
4537             int ret = ff_h264_decode_mb_cavlc(h);
4538
4539             if (ret >= 0)
4540                 ff_h264_hl_decode_mb(h);
4541
4542             // FIXME optimal? or let mb_decode decode 16x32 ?
4543             if (ret >= 0 && FRAME_MBAFF(h)) {
4544                 h->mb_y++;
4545                 ret = ff_h264_decode_mb_cavlc(h);
4546
4547                 if (ret >= 0)
4548                     ff_h264_hl_decode_mb(h);
4549                 h->mb_y--;
4550             }
4551
4552             if (ret < 0) {
4553                 av_log(h->avctx, AV_LOG_ERROR,
4554                        "error while decoding MB %d %d\n", h->mb_x, h->mb_y);
4555                 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
4556                              h->mb_y, ER_MB_ERROR);
4557                 return ret;
4558             }
4559
4560             if (++h->mb_x >= h->mb_width) {
4561                 loop_filter(h, lf_x_start, h->mb_x);
4562                 h->mb_x = lf_x_start = 0;
4563                 decode_finish_row(h);
4564                 ++h->mb_y;
4565                 if (FIELD_OR_MBAFF_PICTURE(h)) {
4566                     ++h->mb_y;
4567                     if (FRAME_MBAFF(h) && h->mb_y < h->mb_height)
4568                         predict_field_decoding_flag(h);
4569                 }
4570                 if (h->mb_y >= h->mb_height) {
4571                     tprintf(h->avctx, "slice end %d %d\n",
4572                             get_bits_count(&h->gb), h->gb.size_in_bits);
4573
4574                     if (   get_bits_left(&h->gb) == 0
4575                         || get_bits_left(&h->gb) > 0 && !(h->avctx->err_recognition & AV_EF_AGGRESSIVE)) {
4576                         er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
4577                                      h->mb_x - 1, h->mb_y,
4578                                      ER_MB_END);
4579
4580                         return 0;
4581                     } else {
4582                         er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
4583                                      h->mb_x, h->mb_y,
4584                                      ER_MB_END);
4585
4586                         return AVERROR_INVALIDDATA;
4587                     }
4588                 }
4589             }
4590
4591             if (get_bits_left(&h->gb) <= 0 && h->mb_skip_run <= 0) {
4592                 tprintf(h->avctx, "slice end %d %d\n",
4593                         get_bits_count(&h->gb), h->gb.size_in_bits);
4594
4595                 if (get_bits_left(&h->gb) == 0) {
4596                     er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
4597                                  h->mb_x - 1, h->mb_y,
4598                                  ER_MB_END);
4599                     if (h->mb_x > lf_x_start)
4600                         loop_filter(h, lf_x_start, h->mb_x);
4601
4602                     return 0;
4603                 } else {
4604                     er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
4605                                  h->mb_y, ER_MB_ERROR);
4606
4607                     return AVERROR_INVALIDDATA;
4608                 }
4609             }
4610         }
4611     }
4612 }
4613
4614 /**
4615  * Call decode_slice() for each context.
4616  *
4617  * @param h h264 master context
4618  * @param context_count number of contexts to execute
4619  */
4620 static int execute_decode_slices(H264Context *h, int context_count)
4621 {
4622     AVCodecContext *const avctx = h->avctx;
4623     H264Context *hx;
4624     int i;
4625
4626     if (h->avctx->hwaccel ||
4627         h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
4628         return 0;
4629     if (context_count == 1) {
4630         return decode_slice(avctx, &h);
4631     } else {
4632         av_assert0(context_count > 0);
4633         for (i = 1; i < context_count; i++) {
4634             hx                 = h->thread_context[i];
4635             if (CONFIG_ERROR_RESILIENCE) {
4636                 hx->er.error_count = 0;
4637             }
4638             hx->x264_build     = h->x264_build;
4639         }
4640
4641         avctx->execute(avctx, decode_slice, h->thread_context,
4642                        NULL, context_count, sizeof(void *));
4643
4644         /* pull back stuff from slices to master context */
4645         hx                   = h->thread_context[context_count - 1];
4646         h->mb_x              = hx->mb_x;
4647         h->mb_y              = hx->mb_y;
4648         h->droppable         = hx->droppable;
4649         h->picture_structure = hx->picture_structure;
4650         if (CONFIG_ERROR_RESILIENCE) {
4651             for (i = 1; i < context_count; i++)
4652                 h->er.error_count += h->thread_context[i]->er.error_count;
4653         }
4654     }
4655
4656     return 0;
4657 }
4658
4659 static const uint8_t start_code[] = { 0x00, 0x00, 0x01 };
4660
4661 static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size,
4662                             int parse_extradata)
4663 {
4664     AVCodecContext *const avctx = h->avctx;
4665     H264Context *hx; ///< thread context
4666     int buf_index;
4667     int context_count;
4668     int next_avc;
4669     int pass = !(avctx->active_thread_type & FF_THREAD_FRAME);
4670     int nals_needed = 0; ///< number of NALs that need decoding before the next frame thread starts
4671     int nal_index;
4672     int idr_cleared=0;
4673     int first_slice = 0;
4674     int ret = 0;
4675
4676     h->nal_unit_type= 0;
4677
4678     if(!h->slice_context_count)
4679          h->slice_context_count= 1;
4680     h->max_contexts = h->slice_context_count;
4681     if (!(avctx->flags2 & CODEC_FLAG2_CHUNKS)) {
4682         h->current_slice = 0;
4683         if (!h->first_field)
4684             h->cur_pic_ptr = NULL;
4685         ff_h264_reset_sei(h);
4686     }
4687
4688     if (h->nal_length_size == 4) {
4689         if (buf_size > 8 && AV_RB32(buf) == 1 && AV_RB32(buf+5) > (unsigned)buf_size) {
4690             h->is_avc = 0;
4691         }else if(buf_size > 3 && AV_RB32(buf) > 1 && AV_RB32(buf) <= (unsigned)buf_size)
4692             h->is_avc = 1;
4693     }
4694
4695     for (; pass <= 1; pass++) {
4696         buf_index     = 0;
4697         context_count = 0;
4698         next_avc      = h->is_avc ? 0 : buf_size;
4699         nal_index     = 0;
4700         for (;;) {
4701             int consumed;
4702             int dst_length;
4703             int bit_length;
4704             const uint8_t *ptr;
4705             int i, nalsize = 0;
4706             int err;
4707
4708             if (buf_index >= next_avc) {
4709                 if (buf_index >= buf_size - h->nal_length_size)
4710                     break;
4711                 nalsize = 0;
4712                 for (i = 0; i < h->nal_length_size; i++)
4713                     nalsize = (nalsize << 8) | buf[buf_index++];
4714                 if (nalsize <= 0 || nalsize > buf_size - buf_index) {
4715                     av_log(h->avctx, AV_LOG_ERROR,
4716                            "AVC: nal size %d\n", nalsize);
4717                     break;
4718                 }
4719                 next_avc = buf_index + nalsize;
4720             } else {
4721                 // start code prefix search
4722                 for (; buf_index + 3 < next_avc; buf_index++)
4723                     // This should always succeed in the first iteration.
4724                     if (buf[buf_index]     == 0 &&
4725                         buf[buf_index + 1] == 0 &&
4726                         buf[buf_index + 2] == 1)
4727                         break;
4728
4729                 if (buf_index + 3 >= buf_size) {
4730                     buf_index = buf_size;
4731                     break;
4732                 }
4733
4734                 buf_index += 3;
4735                 if (buf_index >= next_avc)
4736                     continue;
4737             }
4738
4739             hx = h->thread_context[context_count];
4740
4741             ptr = ff_h264_decode_nal(hx, buf + buf_index, &dst_length,
4742                                      &consumed, next_avc - buf_index);
4743             if (ptr == NULL || dst_length < 0) {
4744                 ret = -1;
4745                 goto end;
4746             }
4747             i = buf_index + consumed;
4748             if ((h->workaround_bugs & FF_BUG_AUTODETECT) && i + 3 < next_avc &&
4749                 buf[i]     == 0x00 && buf[i + 1] == 0x00 &&
4750                 buf[i + 2] == 0x01 && buf[i + 3] == 0xE0)
4751                 h->workaround_bugs |= FF_BUG_TRUNCATED;
4752
4753             if (!(h->workaround_bugs & FF_BUG_TRUNCATED))
4754                 while(dst_length > 0 && ptr[dst_length - 1] == 0)
4755                     dst_length--;
4756             bit_length = !dst_length ? 0
4757                                      : (8 * dst_length -
4758                                         decode_rbsp_trailing(h, ptr + dst_length - 1));
4759
4760             if (h->avctx->debug & FF_DEBUG_STARTCODE)
4761                 av_log(h->avctx, AV_LOG_DEBUG, "NAL %d/%d at %d/%d length %d pass %d\n", hx->nal_unit_type, hx->nal_ref_idc, buf_index, buf_size, dst_length, pass);
4762
4763             if (h->is_avc && (nalsize != consumed) && nalsize)
4764                 av_log(h->avctx, AV_LOG_DEBUG,
4765                        "AVC: Consumed only %d bytes instead of %d\n",
4766                        consumed, nalsize);
4767
4768             buf_index += consumed;
4769             nal_index++;
4770
4771             if (pass == 0) {
4772                 /* packets can sometimes contain multiple PPS/SPS,
4773                  * e.g. two PAFF field pictures in one packet, or a demuxer
4774                  * which splits NALs strangely if so, when frame threading we
4775                  * can't start the next thread until we've read all of them */
4776                 switch (hx->nal_unit_type) {
4777                 case NAL_SPS:
4778                 case NAL_PPS:
4779                     nals_needed = nal_index;
4780                     break;
4781                 case NAL_DPA:
4782                 case NAL_IDR_SLICE:
4783                 case NAL_SLICE:
4784                     init_get_bits(&hx->gb, ptr, bit_length);
4785                     if (!get_ue_golomb(&hx->gb) || !first_slice)
4786                         nals_needed = nal_index;
4787                     if (!first_slice)
4788                         first_slice = hx->nal_unit_type;
4789                 }
4790                 continue;
4791             }
4792
4793             if (!first_slice)
4794                 switch (hx->nal_unit_type) {
4795                 case NAL_DPA:
4796                 case NAL_IDR_SLICE:
4797                 case NAL_SLICE:
4798                     first_slice = hx->nal_unit_type;
4799                 }
4800
4801             if (avctx->skip_frame >= AVDISCARD_NONREF &&
4802                 h->nal_ref_idc == 0 &&
4803                 h->nal_unit_type != NAL_SEI)
4804                 continue;
4805
4806 again:
4807             /* Ignore per frame NAL unit type during extradata
4808              * parsing. Decoding slices is not possible in codec init
4809              * with frame-mt */
4810             if (parse_extradata) {
4811                 switch (hx->nal_unit_type) {
4812                 case NAL_IDR_SLICE:
4813                 case NAL_SLICE:
4814                 case NAL_DPA:
4815                 case NAL_DPB:
4816                 case NAL_DPC:
4817                     av_log(h->avctx, AV_LOG_WARNING,
4818                            "Ignoring NAL %d in global header/extradata\n",
4819                            hx->nal_unit_type);
4820                     // fall through to next case
4821                 case NAL_AUXILIARY_SLICE:
4822                     hx->nal_unit_type = NAL_FF_IGNORE;
4823                 }
4824             }
4825
4826             err = 0;
4827
4828             switch (hx->nal_unit_type) {
4829             case NAL_IDR_SLICE:
4830                 if (first_slice != NAL_IDR_SLICE) {
4831                     av_log(h->avctx, AV_LOG_ERROR,
4832                            "Invalid mix of idr and non-idr slices\n");
4833                     ret = -1;
4834                     goto end;
4835                 }
4836                 if(!idr_cleared)
4837                     idr(h); // FIXME ensure we don't lose some frames if there is reordering
4838                 idr_cleared = 1;
4839             case NAL_SLICE:
4840                 init_get_bits(&hx->gb, ptr, bit_length);
4841                 hx->intra_gb_ptr      =
4842                 hx->inter_gb_ptr      = &hx->gb;
4843                 hx->data_partitioning = 0;
4844
4845                 if ((err = decode_slice_header(hx, h)))
4846                     break;
4847
4848                 if (h->sei_recovery_frame_cnt >= 0) {
4849                     if (h->frame_num != h->sei_recovery_frame_cnt || hx->slice_type_nos != AV_PICTURE_TYPE_I)
4850                         h->valid_recovery_point = 1;
4851
4852                     if (   h->recovery_frame < 0
4853                         || ((h->recovery_frame - h->frame_num) & ((1 << h->sps.log2_max_frame_num)-1)) > h->sei_recovery_frame_cnt) {
4854                         h->recovery_frame = (h->frame_num + h->sei_recovery_frame_cnt) &
4855                                             ((1 << h->sps.log2_max_frame_num) - 1);
4856
4857                         if (!h->valid_recovery_point)
4858                             h->recovery_frame = h->frame_num;
4859                     }
4860                 }
4861
4862                 h->cur_pic_ptr->f.key_frame |=
4863                         (hx->nal_unit_type == NAL_IDR_SLICE);
4864
4865                 if (hx->nal_unit_type == NAL_IDR_SLICE ||
4866                     h->recovery_frame == h->frame_num) {
4867                     h->recovery_frame         = -1;
4868                     h->cur_pic_ptr->recovered = 1;
4869                 }
4870                 // If we have an IDR, all frames after it in decoded order are
4871                 // "recovered".
4872                 if (hx->nal_unit_type == NAL_IDR_SLICE)
4873                     h->frame_recovered |= FRAME_RECOVERED_IDR;
4874                 h->frame_recovered |= 3*!!(avctx->flags2 & CODEC_FLAG2_SHOW_ALL);
4875                 h->frame_recovered |= 3*!!(avctx->flags & CODEC_FLAG_OUTPUT_CORRUPT);
4876 #if 1
4877                 h->cur_pic_ptr->recovered |= h->frame_recovered;
4878 #else
4879                 h->cur_pic_ptr->recovered |= !!(h->frame_recovered & FRAME_RECOVERED_IDR);
4880 #endif
4881
4882                 if (h->current_slice == 1) {
4883                     if (!(avctx->flags2 & CODEC_FLAG2_CHUNKS))
4884                         decode_postinit(h, nal_index >= nals_needed);
4885
4886                     if (h->avctx->hwaccel &&
4887                         (ret = h->avctx->hwaccel->start_frame(h->avctx, NULL, 0)) < 0)
4888                         return ret;
4889                     if (CONFIG_H264_VDPAU_DECODER &&
4890                         h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
4891                         ff_vdpau_h264_picture_start(h);
4892                 }
4893
4894                 if (hx->redundant_pic_count == 0 &&
4895                     (avctx->skip_frame < AVDISCARD_NONREF ||
4896                      hx->nal_ref_idc) &&
4897                     (avctx->skip_frame < AVDISCARD_BIDIR  ||
4898                      hx->slice_type_nos != AV_PICTURE_TYPE_B) &&
4899                     (avctx->skip_frame < AVDISCARD_NONKEY ||
4900                      hx->slice_type_nos == AV_PICTURE_TYPE_I) &&
4901                     avctx->skip_frame < AVDISCARD_ALL) {
4902                     if (avctx->hwaccel) {
4903                         ret = avctx->hwaccel->decode_slice(avctx,
4904                                                            &buf[buf_index - consumed],
4905                                                            consumed);
4906                         if (ret < 0)
4907                             return ret;
4908                     } else if (CONFIG_H264_VDPAU_DECODER &&
4909                                h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU) {
4910                         ff_vdpau_add_data_chunk(h->cur_pic_ptr->f.data[0],
4911                                                 start_code,
4912                                                 sizeof(start_code));
4913                         ff_vdpau_add_data_chunk(h->cur_pic_ptr->f.data[0],
4914                                                 &buf[buf_index - consumed],
4915                                                 consumed);
4916                     } else
4917                         context_count++;
4918                 }
4919                 break;
4920             case NAL_DPA:
4921                 init_get_bits(&hx->gb, ptr, bit_length);
4922                 hx->intra_gb_ptr =
4923                 hx->inter_gb_ptr = NULL;
4924
4925                 if ((err = decode_slice_header(hx, h)) < 0)
4926                     break;
4927
4928                 hx->data_partitioning = 1;
4929                 break;
4930             case NAL_DPB:
4931                 init_get_bits(&hx->intra_gb, ptr, bit_length);
4932                 hx->intra_gb_ptr = &hx->intra_gb;
4933                 break;
4934             case NAL_DPC:
4935                 init_get_bits(&hx->inter_gb, ptr, bit_length);
4936                 hx->inter_gb_ptr = &hx->inter_gb;
4937
4938                 av_log(h->avctx, AV_LOG_ERROR, "Partitioned H.264 support is incomplete\n");
4939                 break;
4940
4941                 if (hx->redundant_pic_count == 0 &&
4942                     hx->intra_gb_ptr &&
4943                     hx->data_partitioning &&
4944                     h->cur_pic_ptr && h->context_initialized &&
4945                     (avctx->skip_frame < AVDISCARD_NONREF || hx->nal_ref_idc) &&
4946                     (avctx->skip_frame < AVDISCARD_BIDIR  ||
4947                      hx->slice_type_nos != AV_PICTURE_TYPE_B) &&
4948                     (avctx->skip_frame < AVDISCARD_NONKEY ||
4949                      hx->slice_type_nos == AV_PICTURE_TYPE_I) &&
4950                     avctx->skip_frame < AVDISCARD_ALL)
4951                     context_count++;
4952                 break;
4953             case NAL_SEI:
4954                 init_get_bits(&h->gb, ptr, bit_length);
4955                 ff_h264_decode_sei(h);
4956                 break;
4957             case NAL_SPS:
4958                 init_get_bits(&h->gb, ptr, bit_length);
4959                 if (ff_h264_decode_seq_parameter_set(h) < 0 && (h->is_avc ? nalsize : 1)) {
4960                     av_log(h->avctx, AV_LOG_DEBUG,
4961                            "SPS decoding failure, trying again with the complete NAL\n");
4962                     if (h->is_avc)
4963                         av_assert0(next_avc - buf_index + consumed == nalsize);
4964                     if ((next_avc - buf_index + consumed - 1) >= INT_MAX/8)
4965                         break;
4966                     init_get_bits(&h->gb, &buf[buf_index + 1 - consumed],
4967                                   8*(next_avc - buf_index + consumed - 1));
4968                     ff_h264_decode_seq_parameter_set(h);
4969                 }
4970
4971                 break;
4972             case NAL_PPS:
4973                 init_get_bits(&h->gb, ptr, bit_length);
4974                 ff_h264_decode_picture_parameter_set(h, bit_length);
4975                 break;
4976             case NAL_AUD:
4977             case NAL_END_SEQUENCE:
4978             case NAL_END_STREAM:
4979             case NAL_FILLER_DATA:
4980             case NAL_SPS_EXT:
4981             case NAL_AUXILIARY_SLICE:
4982                 break;
4983             case NAL_FF_IGNORE:
4984                 break;
4985             default:
4986                 av_log(avctx, AV_LOG_DEBUG, "Unknown NAL code: %d (%d bits)\n",
4987                        hx->nal_unit_type, bit_length);
4988             }
4989
4990             if (context_count == h->max_contexts) {
4991                 execute_decode_slices(h, context_count);
4992                 context_count = 0;
4993             }
4994
4995             if (err < 0)
4996                 av_log(h->avctx, AV_LOG_ERROR, "decode_slice_header error\n");
4997             else if (err == 1) {
4998                 /* Slice could not be decoded in parallel mode, copy down
4999                  * NAL unit stuff to context 0 and restart. Note that
5000                  * rbsp_buffer is not transferred, but since we no longer
5001                  * run in parallel mode this should not be an issue. */
5002                 h->nal_unit_type = hx->nal_unit_type;
5003                 h->nal_ref_idc   = hx->nal_ref_idc;
5004                 hx               = h;
5005                 goto again;
5006             }
5007         }
5008     }
5009     if (context_count)
5010         execute_decode_slices(h, context_count);
5011
5012 end:
5013     /* clean up */
5014     if (h->cur_pic_ptr && !h->droppable) {
5015         ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
5016                                   h->picture_structure == PICT_BOTTOM_FIELD);
5017     }
5018
5019     return (ret < 0) ? ret : buf_index;
5020 }
5021
5022 /**
5023  * Return the number of bytes consumed for building the current frame.
5024  */
5025 static int get_consumed_bytes(int pos, int buf_size)
5026 {
5027     if (pos == 0)
5028         pos = 1;          // avoid infinite loops (i doubt that is needed but ...)
5029     if (pos + 10 > buf_size)
5030         pos = buf_size;                   // oops ;)
5031
5032     return pos;
5033 }
5034
5035 static int output_frame(H264Context *h, AVFrame *dst, Picture *srcp)
5036 {
5037     AVFrame *src = &srcp->f;
5038     int i;
5039     int ret = av_frame_ref(dst, src);
5040     if (ret < 0)
5041         return ret;
5042
5043     av_dict_set(&dst->metadata, "stereo_mode", ff_h264_sei_stereo_mode(h), 0);
5044
5045     if (!srcp->crop)
5046         return 0;
5047
5048     for (i = 0; i < 3; i++) {
5049         int hshift = (i > 0) ? h->chroma_x_shift : 0;
5050         int vshift = (i > 0) ? h->chroma_y_shift : 0;
5051         int off    = ((srcp->crop_left >> hshift) << h->pixel_shift) +
5052                       (srcp->crop_top  >> vshift) * dst->linesize[i];
5053         dst->data[i] += off;
5054     }
5055     return 0;
5056 }
5057
5058 static int decode_frame(AVCodecContext *avctx, void *data,
5059                         int *got_frame, AVPacket *avpkt)
5060 {
5061     const uint8_t *buf = avpkt->data;
5062     int buf_size       = avpkt->size;
5063     H264Context *h     = avctx->priv_data;
5064     AVFrame *pict      = data;
5065     int buf_index      = 0;
5066     Picture *out;
5067     int i, out_idx;
5068     int ret;
5069
5070     h->flags = avctx->flags;
5071
5072     /* end of stream, output what is still in the buffers */
5073     if (buf_size == 0) {
5074  out:
5075
5076         h->cur_pic_ptr = NULL;
5077         h->first_field = 0;
5078
5079         // FIXME factorize this with the output code below
5080         out     = h->delayed_pic[0];
5081         out_idx = 0;
5082         for (i = 1;
5083              h->delayed_pic[i] &&
5084              !h->delayed_pic[i]->f.key_frame &&
5085              !h->delayed_pic[i]->mmco_reset;
5086              i++)
5087             if (h->delayed_pic[i]->poc < out->poc) {
5088                 out     = h->delayed_pic[i];
5089                 out_idx = i;
5090             }
5091
5092         for (i = out_idx; h->delayed_pic[i]; i++)
5093             h->delayed_pic[i] = h->delayed_pic[i + 1];
5094
5095         if (out) {
5096             out->reference &= ~DELAYED_PIC_REF;
5097             ret = output_frame(h, pict, out);
5098             if (ret < 0)
5099                 return ret;
5100             *got_frame = 1;
5101         }
5102
5103         return buf_index;
5104     }
5105     if(h->is_avc && buf_size >= 9 && buf[0]==1 && buf[2]==0 && (buf[4]&0xFC)==0xFC && (buf[5]&0x1F) && buf[8]==0x67){
5106         int cnt= buf[5]&0x1f;
5107         const uint8_t *p= buf+6;
5108         while(cnt--){
5109             int nalsize= AV_RB16(p) + 2;
5110             if(nalsize > buf_size - (p-buf) || p[2]!=0x67)
5111                 goto not_extra;
5112             p += nalsize;
5113         }
5114         cnt = *(p++);
5115         if(!cnt)
5116             goto not_extra;
5117         while(cnt--){
5118             int nalsize= AV_RB16(p) + 2;
5119             if(nalsize > buf_size - (p-buf) || p[2]!=0x68)
5120                 goto not_extra;
5121             p += nalsize;
5122         }
5123
5124         return ff_h264_decode_extradata(h, buf, buf_size);
5125     }
5126 not_extra:
5127
5128     buf_index = decode_nal_units(h, buf, buf_size, 0);
5129     if (buf_index < 0)
5130         return AVERROR_INVALIDDATA;
5131
5132     if (!h->cur_pic_ptr && h->nal_unit_type == NAL_END_SEQUENCE) {
5133         av_assert0(buf_index <= buf_size);
5134         goto out;
5135     }
5136
5137     if (!(avctx->flags2 & CODEC_FLAG2_CHUNKS) && !h->cur_pic_ptr) {
5138         if (avctx->skip_frame >= AVDISCARD_NONREF ||
5139             buf_size >= 4 && !memcmp("Q264", buf, 4))
5140             return buf_size;
5141         av_log(avctx, AV_LOG_ERROR, "no frame!\n");
5142         return AVERROR_INVALIDDATA;
5143     }
5144
5145     if (!(avctx->flags2 & CODEC_FLAG2_CHUNKS) ||
5146         (h->mb_y >= h->mb_height && h->mb_height)) {
5147         if (avctx->flags2 & CODEC_FLAG2_CHUNKS)
5148             decode_postinit(h, 1);
5149
5150         field_end(h, 0);
5151
5152         /* Wait for second field. */
5153         *got_frame = 0;
5154         if (h->next_output_pic && (
5155                                    h->next_output_pic->recovered)) {
5156             if (!h->next_output_pic->recovered)
5157                 h->next_output_pic->f.flags |= AV_FRAME_FLAG_CORRUPT;
5158
5159             ret = output_frame(h, pict, h->next_output_pic);
5160             if (ret < 0)
5161                 return ret;
5162             *got_frame = 1;
5163             if (CONFIG_MPEGVIDEO) {
5164                 ff_print_debug_info2(h->avctx, h->next_output_pic, pict, h->er.mbskip_table,
5165                                     &h->low_delay,
5166                                     h->mb_width, h->mb_height, h->mb_stride, 1);
5167             }
5168         }
5169     }
5170
5171     assert(pict->data[0] || !*got_frame);
5172
5173     return get_consumed_bytes(buf_index, buf_size);
5174 }
5175
5176 av_cold void ff_h264_free_context(H264Context *h)
5177 {
5178     int i;
5179
5180     free_tables(h, 1); // FIXME cleanup init stuff perhaps
5181
5182     for (i = 0; i < MAX_SPS_COUNT; i++)
5183         av_freep(h->sps_buffers + i);
5184
5185     for (i = 0; i < MAX_PPS_COUNT; i++)
5186         av_freep(h->pps_buffers + i);
5187 }
5188
5189 static av_cold int h264_decode_end(AVCodecContext *avctx)
5190 {
5191     H264Context *h = avctx->priv_data;
5192
5193     ff_h264_remove_all_refs(h);
5194     ff_h264_free_context(h);
5195
5196     unref_picture(h, &h->cur_pic);
5197
5198     return 0;
5199 }
5200
5201 static const AVProfile profiles[] = {
5202     { FF_PROFILE_H264_BASELINE,             "Baseline"              },
5203     { FF_PROFILE_H264_CONSTRAINED_BASELINE, "Constrained Baseline"  },
5204     { FF_PROFILE_H264_MAIN,                 "Main"                  },
5205     { FF_PROFILE_H264_EXTENDED,             "Extended"              },
5206     { FF_PROFILE_H264_HIGH,                 "High"                  },
5207     { FF_PROFILE_H264_HIGH_10,              "High 10"               },
5208     { FF_PROFILE_H264_HIGH_10_INTRA,        "High 10 Intra"         },
5209     { FF_PROFILE_H264_HIGH_422,             "High 4:2:2"            },
5210     { FF_PROFILE_H264_HIGH_422_INTRA,       "High 4:2:2 Intra"      },
5211     { FF_PROFILE_H264_HIGH_444,             "High 4:4:4"            },
5212     { FF_PROFILE_H264_HIGH_444_PREDICTIVE,  "High 4:4:4 Predictive" },
5213     { FF_PROFILE_H264_HIGH_444_INTRA,       "High 4:4:4 Intra"      },
5214     { FF_PROFILE_H264_CAVLC_444,            "CAVLC 4:4:4"           },
5215     { FF_PROFILE_UNKNOWN },
5216 };
5217
5218 static const AVOption h264_options[] = {
5219     {"is_avc", "is avc", offsetof(H264Context, is_avc), FF_OPT_TYPE_INT, {.i64 = 0}, 0, 1, 0},
5220     {"nal_length_size", "nal_length_size", offsetof(H264Context, nal_length_size), FF_OPT_TYPE_INT, {.i64 = 0}, 0, 4, 0},
5221     {NULL}
5222 };
5223
5224 static const AVClass h264_class = {
5225     .class_name = "H264 Decoder",
5226     .item_name  = av_default_item_name,
5227     .option     = h264_options,
5228     .version    = LIBAVUTIL_VERSION_INT,
5229 };
5230
5231 static const AVClass h264_vdpau_class = {
5232     .class_name = "H264 VDPAU Decoder",
5233     .item_name  = av_default_item_name,
5234     .option     = h264_options,
5235     .version    = LIBAVUTIL_VERSION_INT,
5236 };
5237
5238 AVCodec ff_h264_decoder = {
5239     .name                  = "h264",
5240     .long_name             = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
5241     .type                  = AVMEDIA_TYPE_VIDEO,
5242     .id                    = AV_CODEC_ID_H264,
5243     .priv_data_size        = sizeof(H264Context),
5244     .init                  = ff_h264_decode_init,
5245     .close                 = h264_decode_end,
5246     .decode                = decode_frame,
5247     .capabilities          = /*CODEC_CAP_DRAW_HORIZ_BAND |*/ CODEC_CAP_DR1 |
5248                              CODEC_CAP_DELAY | CODEC_CAP_SLICE_THREADS |
5249                              CODEC_CAP_FRAME_THREADS,
5250     .flush                 = flush_dpb,
5251     .init_thread_copy      = ONLY_IF_THREADS_ENABLED(decode_init_thread_copy),
5252     .update_thread_context = ONLY_IF_THREADS_ENABLED(decode_update_thread_context),
5253     .profiles              = NULL_IF_CONFIG_SMALL(profiles),
5254     .priv_class            = &h264_class,
5255 };
5256
5257 #if CONFIG_H264_VDPAU_DECODER
5258 AVCodec ff_h264_vdpau_decoder = {
5259     .name           = "h264_vdpau",
5260     .long_name      = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (VDPAU acceleration)"),
5261     .type           = AVMEDIA_TYPE_VIDEO,
5262     .id             = AV_CODEC_ID_H264,
5263     .priv_data_size = sizeof(H264Context),
5264     .init           = ff_h264_decode_init,
5265     .close          = h264_decode_end,
5266     .decode         = decode_frame,
5267     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_DELAY | CODEC_CAP_HWACCEL_VDPAU,
5268     .flush          = flush_dpb,
5269     .pix_fmts       = (const enum AVPixelFormat[]) { AV_PIX_FMT_VDPAU_H264,
5270                                                      AV_PIX_FMT_NONE},
5271     .profiles       = NULL_IF_CONFIG_SMALL(profiles),
5272     .priv_class     = &h264_vdpau_class,
5273 };
5274 #endif