]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264.c
mpeg4videodec: silence ubsan warning
[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/display.h"
32 #include "libavutil/imgutils.h"
33 #include "libavutil/opt.h"
34 #include "libavutil/stereo3d.h"
35 #include "libavutil/timer.h"
36 #include "internal.h"
37 #include "cabac.h"
38 #include "cabac_functions.h"
39 #include "error_resilience.h"
40 #include "avcodec.h"
41 #include "h264.h"
42 #include "h264data.h"
43 #include "h264chroma.h"
44 #include "h264_mvpred.h"
45 #include "golomb.h"
46 #include "mathops.h"
47 #include "me_cmp.h"
48 #include "mpegutils.h"
49 #include "profiles.h"
50 #include "rectangle.h"
51 #include "svq3.h"
52 #include "thread.h"
53 #include "vdpau_compat.h"
54
55 const uint16_t ff_h264_mb_sizes[4] = { 256, 384, 512, 768 };
56
57 int avpriv_h264_has_num_reorder_frames(AVCodecContext *avctx)
58 {
59     H264Context *h = avctx->priv_data;
60     return h ? h->sps.num_reorder_frames : 0;
61 }
62
63 static void h264_er_decode_mb(void *opaque, int ref, int mv_dir, int mv_type,
64                               int (*mv)[2][4][2],
65                               int mb_x, int mb_y, int mb_intra, int mb_skipped)
66 {
67     H264Context *h = opaque;
68     H264SliceContext *sl = &h->slice_ctx[0];
69
70     sl->mb_x = mb_x;
71     sl->mb_y = mb_y;
72     sl->mb_xy = mb_x + mb_y * h->mb_stride;
73     memset(sl->non_zero_count_cache, 0, sizeof(sl->non_zero_count_cache));
74     av_assert1(ref >= 0);
75     /* FIXME: It is possible albeit uncommon that slice references
76      * differ between slices. We take the easy approach and ignore
77      * it for now. If this turns out to have any relevance in
78      * practice then correct remapping should be added. */
79     if (ref >= sl->ref_count[0])
80         ref = 0;
81     if (!sl->ref_list[0][ref].data[0]) {
82         av_log(h->avctx, AV_LOG_DEBUG, "Reference not available for error concealing\n");
83         ref = 0;
84     }
85     if ((sl->ref_list[0][ref].reference&3) != 3) {
86         av_log(h->avctx, AV_LOG_DEBUG, "Reference invalid\n");
87         return;
88     }
89     fill_rectangle(&h->cur_pic.ref_index[0][4 * sl->mb_xy],
90                    2, 2, 2, ref, 1);
91     fill_rectangle(&sl->ref_cache[0][scan8[0]], 4, 4, 8, ref, 1);
92     fill_rectangle(sl->mv_cache[0][scan8[0]], 4, 4, 8,
93                    pack16to32((*mv)[0][0][0], (*mv)[0][0][1]), 4);
94     sl->mb_mbaff =
95     sl->mb_field_decoding_flag = 0;
96     ff_h264_hl_decode_mb(h, &h->slice_ctx[0]);
97 }
98
99 void ff_h264_draw_horiz_band(const H264Context *h, H264SliceContext *sl,
100                              int y, int height)
101 {
102     AVCodecContext *avctx = h->avctx;
103     const AVFrame   *src  = h->cur_pic.f;
104     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
105     int vshift = desc->log2_chroma_h;
106     const int field_pic = h->picture_structure != PICT_FRAME;
107     if (field_pic) {
108         height <<= 1;
109         y      <<= 1;
110     }
111
112     height = FFMIN(height, avctx->height - y);
113
114     if (field_pic && h->first_field && !(avctx->slice_flags & SLICE_FLAG_ALLOW_FIELD))
115         return;
116
117     if (avctx->draw_horiz_band) {
118         int offset[AV_NUM_DATA_POINTERS];
119         int i;
120
121         offset[0] = y * src->linesize[0];
122         offset[1] =
123         offset[2] = (y >> vshift) * src->linesize[1];
124         for (i = 3; i < AV_NUM_DATA_POINTERS; i++)
125             offset[i] = 0;
126
127         emms_c();
128
129         avctx->draw_horiz_band(avctx, src, offset,
130                                y, h->picture_structure, height);
131     }
132 }
133
134 /**
135  * Check if the top & left blocks are available if needed and
136  * change the dc mode so it only uses the available blocks.
137  */
138 int ff_h264_check_intra4x4_pred_mode(const H264Context *h, H264SliceContext *sl)
139 {
140     static const int8_t top[12] = {
141         -1, 0, LEFT_DC_PRED, -1, -1, -1, -1, -1, 0
142     };
143     static const int8_t left[12] = {
144         0, -1, TOP_DC_PRED, 0, -1, -1, -1, 0, -1, DC_128_PRED
145     };
146     int i;
147
148     if (!(sl->top_samples_available & 0x8000)) {
149         for (i = 0; i < 4; i++) {
150             int status = top[sl->intra4x4_pred_mode_cache[scan8[0] + i]];
151             if (status < 0) {
152                 av_log(h->avctx, AV_LOG_ERROR,
153                        "top block unavailable for requested intra4x4 mode %d at %d %d\n",
154                        status, sl->mb_x, sl->mb_y);
155                 return AVERROR_INVALIDDATA;
156             } else if (status) {
157                 sl->intra4x4_pred_mode_cache[scan8[0] + i] = status;
158             }
159         }
160     }
161
162     if ((sl->left_samples_available & 0x8888) != 0x8888) {
163         static const int mask[4] = { 0x8000, 0x2000, 0x80, 0x20 };
164         for (i = 0; i < 4; i++)
165             if (!(sl->left_samples_available & mask[i])) {
166                 int status = left[sl->intra4x4_pred_mode_cache[scan8[0] + 8 * i]];
167                 if (status < 0) {
168                     av_log(h->avctx, AV_LOG_ERROR,
169                            "left block unavailable for requested intra4x4 mode %d at %d %d\n",
170                            status, sl->mb_x, sl->mb_y);
171                     return AVERROR_INVALIDDATA;
172                 } else if (status) {
173                     sl->intra4x4_pred_mode_cache[scan8[0] + 8 * i] = status;
174                 }
175             }
176     }
177
178     return 0;
179 } // FIXME cleanup like ff_h264_check_intra_pred_mode
180
181 /**
182  * Check if the top & left blocks are available if needed and
183  * change the dc mode so it only uses the available blocks.
184  */
185 int ff_h264_check_intra_pred_mode(const H264Context *h, H264SliceContext *sl,
186                                   int mode, int is_chroma)
187 {
188     static const int8_t top[4]  = { LEFT_DC_PRED8x8, 1, -1, -1 };
189     static const int8_t left[5] = { TOP_DC_PRED8x8, -1,  2, -1, DC_128_PRED8x8 };
190
191     if (mode > 3U) {
192         av_log(h->avctx, AV_LOG_ERROR,
193                "out of range intra chroma pred mode at %d %d\n",
194                sl->mb_x, sl->mb_y);
195         return AVERROR_INVALIDDATA;
196     }
197
198     if (!(sl->top_samples_available & 0x8000)) {
199         mode = top[mode];
200         if (mode < 0) {
201             av_log(h->avctx, AV_LOG_ERROR,
202                    "top block unavailable for requested intra mode at %d %d\n",
203                    sl->mb_x, sl->mb_y);
204             return AVERROR_INVALIDDATA;
205         }
206     }
207
208     if ((sl->left_samples_available & 0x8080) != 0x8080) {
209         mode = left[mode];
210         if (mode < 0) {
211             av_log(h->avctx, AV_LOG_ERROR,
212                    "left block unavailable for requested intra mode at %d %d\n",
213                    sl->mb_x, sl->mb_y);
214             return AVERROR_INVALIDDATA;
215         }
216         if (is_chroma && (sl->left_samples_available & 0x8080)) {
217             // mad cow disease mode, aka MBAFF + constrained_intra_pred
218             mode = ALZHEIMER_DC_L0T_PRED8x8 +
219                    (!(sl->left_samples_available & 0x8000)) +
220                    2 * (mode == DC_128_PRED8x8);
221         }
222     }
223
224     return mode;
225 }
226
227 const uint8_t *ff_h264_decode_nal(H264Context *h, H264SliceContext *sl,
228                                   const uint8_t *src,
229                                   int *dst_length, int *consumed, int length)
230 {
231     int i, si, di;
232     uint8_t *dst;
233
234     // src[0]&0x80; // forbidden bit
235     h->nal_ref_idc   = src[0] >> 5;
236     h->nal_unit_type = src[0] & 0x1F;
237
238     src++;
239     length--;
240
241 #define STARTCODE_TEST                                                  \
242     if (i + 2 < length && src[i + 1] == 0 && src[i + 2] <= 3) {         \
243         if (src[i + 2] != 3 && src[i + 2] != 0) {                       \
244             /* startcode, so we must be past the end */                 \
245             length = i;                                                 \
246         }                                                               \
247         break;                                                          \
248     }
249
250 #if HAVE_FAST_UNALIGNED
251 #define FIND_FIRST_ZERO                                                 \
252     if (i > 0 && !src[i])                                               \
253         i--;                                                            \
254     while (src[i])                                                      \
255         i++
256
257 #if HAVE_FAST_64BIT
258     for (i = 0; i + 1 < length; i += 9) {
259         if (!((~AV_RN64A(src + i) &
260                (AV_RN64A(src + i) - 0x0100010001000101ULL)) &
261               0x8000800080008080ULL))
262             continue;
263         FIND_FIRST_ZERO;
264         STARTCODE_TEST;
265         i -= 7;
266     }
267 #else
268     for (i = 0; i + 1 < length; i += 5) {
269         if (!((~AV_RN32A(src + i) &
270                (AV_RN32A(src + i) - 0x01000101U)) &
271               0x80008080U))
272             continue;
273         FIND_FIRST_ZERO;
274         STARTCODE_TEST;
275         i -= 3;
276     }
277 #endif
278 #else
279     for (i = 0; i + 1 < length; i += 2) {
280         if (src[i])
281             continue;
282         if (i > 0 && src[i - 1] == 0)
283             i--;
284         STARTCODE_TEST;
285     }
286 #endif
287
288     av_fast_padded_malloc(&sl->rbsp_buffer, &sl->rbsp_buffer_size, length+MAX_MBPAIR_SIZE);
289     dst = sl->rbsp_buffer;
290
291     if (!dst)
292         return NULL;
293
294     if(i>=length-1){ //no escaped 0
295         *dst_length= length;
296         *consumed= length+1; //+1 for the header
297         if(h->avctx->flags2 & AV_CODEC_FLAG2_FAST){
298             return src;
299         }else{
300             memcpy(dst, src, length);
301             return dst;
302         }
303     }
304
305     memcpy(dst, src, i);
306     si = di = i;
307     while (si + 2 < length) {
308         // remove escapes (very rare 1:2^22)
309         if (src[si + 2] > 3) {
310             dst[di++] = src[si++];
311             dst[di++] = src[si++];
312         } else if (src[si] == 0 && src[si + 1] == 0 && src[si + 2] != 0) {
313             if (src[si + 2] == 3) { // escape
314                 dst[di++]  = 0;
315                 dst[di++]  = 0;
316                 si        += 3;
317                 continue;
318             } else // next start code
319                 goto nsc;
320         }
321
322         dst[di++] = src[si++];
323     }
324     while (si < length)
325         dst[di++] = src[si++];
326
327 nsc:
328     memset(dst + di, 0, AV_INPUT_BUFFER_PADDING_SIZE);
329
330     *dst_length = di;
331     *consumed   = si + 1; // +1 for the header
332     /* FIXME store exact number of bits in the getbitcontext
333      * (it is needed for decoding) */
334     return dst;
335 }
336
337 /**
338  * Identify the exact end of the bitstream
339  * @return the length of the trailing, or 0 if damaged
340  */
341 static int decode_rbsp_trailing(H264Context *h, const uint8_t *src)
342 {
343     int v = *src;
344     int r;
345
346     ff_tlog(h->avctx, "rbsp trailing %X\n", v);
347
348     for (r = 1; r < 9; r++) {
349         if (v & 1)
350             return r;
351         v >>= 1;
352     }
353     return 0;
354 }
355
356 void ff_h264_free_tables(H264Context *h)
357 {
358     int i;
359
360     av_freep(&h->intra4x4_pred_mode);
361     av_freep(&h->chroma_pred_mode_table);
362     av_freep(&h->cbp_table);
363     av_freep(&h->mvd_table[0]);
364     av_freep(&h->mvd_table[1]);
365     av_freep(&h->direct_table);
366     av_freep(&h->non_zero_count);
367     av_freep(&h->slice_table_base);
368     h->slice_table = NULL;
369     av_freep(&h->list_counts);
370
371     av_freep(&h->mb2b_xy);
372     av_freep(&h->mb2br_xy);
373
374     av_buffer_pool_uninit(&h->qscale_table_pool);
375     av_buffer_pool_uninit(&h->mb_type_pool);
376     av_buffer_pool_uninit(&h->motion_val_pool);
377     av_buffer_pool_uninit(&h->ref_index_pool);
378
379     for (i = 0; i < h->nb_slice_ctx; i++) {
380         H264SliceContext *sl = &h->slice_ctx[i];
381
382         av_freep(&sl->dc_val_base);
383         av_freep(&sl->er.mb_index2xy);
384         av_freep(&sl->er.error_status_table);
385         av_freep(&sl->er.er_temp_buffer);
386
387         av_freep(&sl->bipred_scratchpad);
388         av_freep(&sl->edge_emu_buffer);
389         av_freep(&sl->top_borders[0]);
390         av_freep(&sl->top_borders[1]);
391
392         sl->bipred_scratchpad_allocated = 0;
393         sl->edge_emu_buffer_allocated   = 0;
394         sl->top_borders_allocated[0]    = 0;
395         sl->top_borders_allocated[1]    = 0;
396     }
397 }
398
399 int ff_h264_alloc_tables(H264Context *h)
400 {
401     const int big_mb_num = h->mb_stride * (h->mb_height + 1);
402     const int row_mb_num = 2*h->mb_stride*FFMAX(h->avctx->thread_count, 1);
403     int x, y;
404
405     FF_ALLOCZ_ARRAY_OR_GOTO(h->avctx, h->intra4x4_pred_mode,
406                       row_mb_num, 8 * sizeof(uint8_t), fail)
407     h->slice_ctx[0].intra4x4_pred_mode = h->intra4x4_pred_mode;
408
409     FF_ALLOCZ_OR_GOTO(h->avctx, h->non_zero_count,
410                       big_mb_num * 48 * sizeof(uint8_t), fail)
411     FF_ALLOCZ_OR_GOTO(h->avctx, h->slice_table_base,
412                       (big_mb_num + h->mb_stride) * sizeof(*h->slice_table_base), fail)
413     FF_ALLOCZ_OR_GOTO(h->avctx, h->cbp_table,
414                       big_mb_num * sizeof(uint16_t), fail)
415     FF_ALLOCZ_OR_GOTO(h->avctx, h->chroma_pred_mode_table,
416                       big_mb_num * sizeof(uint8_t), fail)
417     FF_ALLOCZ_ARRAY_OR_GOTO(h->avctx, h->mvd_table[0],
418                       row_mb_num, 16 * sizeof(uint8_t), fail);
419     FF_ALLOCZ_ARRAY_OR_GOTO(h->avctx, h->mvd_table[1],
420                       row_mb_num, 16 * sizeof(uint8_t), fail);
421     h->slice_ctx[0].mvd_table[0] = h->mvd_table[0];
422     h->slice_ctx[0].mvd_table[1] = h->mvd_table[1];
423
424     FF_ALLOCZ_OR_GOTO(h->avctx, h->direct_table,
425                       4 * big_mb_num * sizeof(uint8_t), fail);
426     FF_ALLOCZ_OR_GOTO(h->avctx, h->list_counts,
427                       big_mb_num * sizeof(uint8_t), fail)
428
429     memset(h->slice_table_base, -1,
430            (big_mb_num + h->mb_stride) * sizeof(*h->slice_table_base));
431     h->slice_table = h->slice_table_base + h->mb_stride * 2 + 1;
432
433     FF_ALLOCZ_OR_GOTO(h->avctx, h->mb2b_xy,
434                       big_mb_num * sizeof(uint32_t), fail);
435     FF_ALLOCZ_OR_GOTO(h->avctx, h->mb2br_xy,
436                       big_mb_num * sizeof(uint32_t), fail);
437     for (y = 0; y < h->mb_height; y++)
438         for (x = 0; x < h->mb_width; x++) {
439             const int mb_xy = x + y * h->mb_stride;
440             const int b_xy  = 4 * x + 4 * y * h->b_stride;
441
442             h->mb2b_xy[mb_xy]  = b_xy;
443             h->mb2br_xy[mb_xy] = 8 * (FMO ? mb_xy : (mb_xy % (2 * h->mb_stride)));
444         }
445
446     if (!h->dequant4_coeff[0])
447         ff_h264_init_dequant_tables(h);
448
449     return 0;
450
451 fail:
452     ff_h264_free_tables(h);
453     return AVERROR(ENOMEM);
454 }
455
456 /**
457  * Init context
458  * Allocate buffers which are not shared amongst multiple threads.
459  */
460 int ff_h264_slice_context_init(H264Context *h, H264SliceContext *sl)
461 {
462     ERContext *er = &sl->er;
463     int mb_array_size = h->mb_height * h->mb_stride;
464     int y_size  = (2 * h->mb_width + 1) * (2 * h->mb_height + 1);
465     int c_size  = h->mb_stride * (h->mb_height + 1);
466     int yc_size = y_size + 2   * c_size;
467     int x, y, i;
468
469     sl->ref_cache[0][scan8[5]  + 1] =
470     sl->ref_cache[0][scan8[7]  + 1] =
471     sl->ref_cache[0][scan8[13] + 1] =
472     sl->ref_cache[1][scan8[5]  + 1] =
473     sl->ref_cache[1][scan8[7]  + 1] =
474     sl->ref_cache[1][scan8[13] + 1] = PART_NOT_AVAILABLE;
475
476     if (sl != h->slice_ctx) {
477         memset(er, 0, sizeof(*er));
478     } else
479     if (CONFIG_ERROR_RESILIENCE) {
480
481         /* init ER */
482         er->avctx          = h->avctx;
483         er->decode_mb      = h264_er_decode_mb;
484         er->opaque         = h;
485         er->quarter_sample = 1;
486
487         er->mb_num      = h->mb_num;
488         er->mb_width    = h->mb_width;
489         er->mb_height   = h->mb_height;
490         er->mb_stride   = h->mb_stride;
491         er->b8_stride   = h->mb_width * 2 + 1;
492
493         // error resilience code looks cleaner with this
494         FF_ALLOCZ_OR_GOTO(h->avctx, er->mb_index2xy,
495                           (h->mb_num + 1) * sizeof(int), fail);
496
497         for (y = 0; y < h->mb_height; y++)
498             for (x = 0; x < h->mb_width; x++)
499                 er->mb_index2xy[x + y * h->mb_width] = x + y * h->mb_stride;
500
501         er->mb_index2xy[h->mb_height * h->mb_width] = (h->mb_height - 1) *
502                                                       h->mb_stride + h->mb_width;
503
504         FF_ALLOCZ_OR_GOTO(h->avctx, er->error_status_table,
505                           mb_array_size * sizeof(uint8_t), fail);
506
507         FF_ALLOC_OR_GOTO(h->avctx, er->er_temp_buffer,
508                          h->mb_height * h->mb_stride, fail);
509
510         FF_ALLOCZ_OR_GOTO(h->avctx, sl->dc_val_base,
511                           yc_size * sizeof(int16_t), fail);
512         er->dc_val[0] = sl->dc_val_base + h->mb_width * 2 + 2;
513         er->dc_val[1] = sl->dc_val_base + y_size + h->mb_stride + 1;
514         er->dc_val[2] = er->dc_val[1] + c_size;
515         for (i = 0; i < yc_size; i++)
516             sl->dc_val_base[i] = 1024;
517     }
518
519     return 0;
520
521 fail:
522     return AVERROR(ENOMEM); // ff_h264_free_tables will clean up for us
523 }
524
525 static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size,
526                             int parse_extradata);
527
528 int ff_h264_decode_extradata(H264Context *h, const uint8_t *buf, int size)
529 {
530     AVCodecContext *avctx = h->avctx;
531     int ret;
532
533     if (!buf || size <= 0)
534         return -1;
535
536     if (buf[0] == 1) {
537         int i, cnt, nalsize;
538         const unsigned char *p = buf;
539
540         h->is_avc = 1;
541
542         if (size < 7) {
543             av_log(avctx, AV_LOG_ERROR,
544                    "avcC %d too short\n", size);
545             return AVERROR_INVALIDDATA;
546         }
547         /* sps and pps in the avcC always have length coded with 2 bytes,
548          * so put a fake nal_length_size = 2 while parsing them */
549         h->nal_length_size = 2;
550         // Decode sps from avcC
551         cnt = *(p + 5) & 0x1f; // Number of sps
552         p  += 6;
553         for (i = 0; i < cnt; i++) {
554             nalsize = AV_RB16(p) + 2;
555             if(nalsize > size - (p-buf))
556                 return AVERROR_INVALIDDATA;
557             ret = decode_nal_units(h, p, nalsize, 1);
558             if (ret < 0) {
559                 av_log(avctx, AV_LOG_ERROR,
560                        "Decoding sps %d from avcC failed\n", i);
561                 return ret;
562             }
563             p += nalsize;
564         }
565         // Decode pps from avcC
566         cnt = *(p++); // Number of pps
567         for (i = 0; i < cnt; i++) {
568             nalsize = AV_RB16(p) + 2;
569             if(nalsize > size - (p-buf))
570                 return AVERROR_INVALIDDATA;
571             ret = decode_nal_units(h, p, nalsize, 1);
572             if (ret < 0) {
573                 av_log(avctx, AV_LOG_ERROR,
574                        "Decoding pps %d from avcC failed\n", i);
575                 return ret;
576             }
577             p += nalsize;
578         }
579         // Store right nal length size that will be used to parse all other nals
580         h->nal_length_size = (buf[4] & 0x03) + 1;
581     } else {
582         h->is_avc = 0;
583         ret = decode_nal_units(h, buf, size, 1);
584         if (ret < 0)
585             return ret;
586     }
587     return size;
588 }
589
590 static int h264_init_context(AVCodecContext *avctx, H264Context *h)
591 {
592     int i;
593
594     h->avctx                 = avctx;
595     h->backup_width          = -1;
596     h->backup_height         = -1;
597     h->backup_pix_fmt        = AV_PIX_FMT_NONE;
598     h->dequant_coeff_pps     = -1;
599     h->current_sps_id        = -1;
600     h->cur_chroma_format_idc = -1;
601
602     h->picture_structure     = PICT_FRAME;
603     h->slice_context_count   = 1;
604     h->workaround_bugs       = avctx->workaround_bugs;
605     h->flags                 = avctx->flags;
606     h->prev_poc_msb          = 1 << 16;
607     h->x264_build            = -1;
608     h->recovery_frame        = -1;
609     h->frame_recovered       = 0;
610     h->prev_frame_num        = -1;
611     h->sei_fpa.frame_packing_arrangement_cancel_flag = -1;
612
613     h->next_outputed_poc = INT_MIN;
614     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
615         h->last_pocs[i] = INT_MIN;
616
617     ff_h264_reset_sei(h);
618
619     avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
620
621     h->nb_slice_ctx = (avctx->active_thread_type & FF_THREAD_SLICE) ?  H264_MAX_THREADS : 1;
622     h->slice_ctx = av_mallocz_array(h->nb_slice_ctx, sizeof(*h->slice_ctx));
623     if (!h->slice_ctx) {
624         h->nb_slice_ctx = 0;
625         return AVERROR(ENOMEM);
626     }
627
628     for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
629         h->DPB[i].f = av_frame_alloc();
630         if (!h->DPB[i].f)
631             return AVERROR(ENOMEM);
632     }
633
634     h->cur_pic.f = av_frame_alloc();
635     if (!h->cur_pic.f)
636         return AVERROR(ENOMEM);
637
638     h->last_pic_for_ec.f = av_frame_alloc();
639     if (!h->last_pic_for_ec.f)
640         return AVERROR(ENOMEM);
641
642     for (i = 0; i < h->nb_slice_ctx; i++)
643         h->slice_ctx[i].h264 = h;
644
645     return 0;
646 }
647
648 static AVOnce h264_vlc_init = AV_ONCE_INIT;
649
650 av_cold int ff_h264_decode_init(AVCodecContext *avctx)
651 {
652     H264Context *h = avctx->priv_data;
653     int ret;
654
655     ret = h264_init_context(avctx, h);
656     if (ret < 0)
657         return ret;
658
659     /* set defaults */
660     if (!avctx->has_b_frames)
661         h->low_delay = 1;
662
663     ret = ff_thread_once(&h264_vlc_init, ff_h264_decode_init_vlc);
664     if (ret != 0) {
665         av_log(avctx, AV_LOG_ERROR, "pthread_once has failed.");
666         return AVERROR_UNKNOWN;
667     }
668
669     if (avctx->codec_id == AV_CODEC_ID_H264) {
670         if (avctx->ticks_per_frame == 1) {
671             if(h->avctx->time_base.den < INT_MAX/2) {
672                 h->avctx->time_base.den *= 2;
673             } else
674                 h->avctx->time_base.num /= 2;
675         }
676         avctx->ticks_per_frame = 2;
677     }
678
679     if (avctx->extradata_size > 0 && avctx->extradata) {
680         ret = ff_h264_decode_extradata(h, avctx->extradata, avctx->extradata_size);
681         if (ret < 0) {
682             ff_h264_free_context(h);
683             return ret;
684         }
685     }
686
687     if (h->sps.bitstream_restriction_flag &&
688         h->avctx->has_b_frames < h->sps.num_reorder_frames) {
689         h->avctx->has_b_frames = h->sps.num_reorder_frames;
690         h->low_delay           = 0;
691     }
692
693     avctx->internal->allocate_progress = 1;
694
695     ff_h264_flush_change(h);
696
697     if (h->enable_er < 0 && (avctx->active_thread_type & FF_THREAD_SLICE))
698         h->enable_er = 0;
699
700     if (h->enable_er && (avctx->active_thread_type & FF_THREAD_SLICE)) {
701         av_log(avctx, AV_LOG_WARNING,
702                "Error resilience with slice threads is enabled. It is unsafe and unsupported and may crash. "
703                "Use it at your own risk\n");
704     }
705
706     return 0;
707 }
708
709 #if HAVE_THREADS
710 static int decode_init_thread_copy(AVCodecContext *avctx)
711 {
712     H264Context *h = avctx->priv_data;
713     int ret;
714
715     if (!avctx->internal->is_copy)
716         return 0;
717
718     memset(h, 0, sizeof(*h));
719
720     ret = h264_init_context(avctx, h);
721     if (ret < 0)
722         return ret;
723
724     h->context_initialized = 0;
725
726     return 0;
727 }
728 #endif
729
730 /**
731  * Run setup operations that must be run after slice header decoding.
732  * This includes finding the next displayed frame.
733  *
734  * @param h h264 master context
735  * @param setup_finished enough NALs have been read that we can call
736  * ff_thread_finish_setup()
737  */
738 static void decode_postinit(H264Context *h, int setup_finished)
739 {
740     H264Picture *out = h->cur_pic_ptr;
741     H264Picture *cur = h->cur_pic_ptr;
742     int i, pics, out_of_order, out_idx;
743
744     h->cur_pic_ptr->f->pict_type = h->pict_type;
745
746     if (h->next_output_pic)
747         return;
748
749     if (cur->field_poc[0] == INT_MAX || cur->field_poc[1] == INT_MAX) {
750         /* FIXME: if we have two PAFF fields in one packet, we can't start
751          * the next thread here. If we have one field per packet, we can.
752          * The check in decode_nal_units() is not good enough to find this
753          * yet, so we assume the worst for now. */
754         // if (setup_finished)
755         //    ff_thread_finish_setup(h->avctx);
756         if (cur->field_poc[0] == INT_MAX && cur->field_poc[1] == INT_MAX)
757             return;
758         if (h->avctx->hwaccel || h->missing_fields <=1)
759             return;
760     }
761
762     cur->f->interlaced_frame = 0;
763     cur->f->repeat_pict      = 0;
764
765     /* Signal interlacing information externally. */
766     /* Prioritize picture timing SEI information over used
767      * decoding process if it exists. */
768
769     if (h->sps.pic_struct_present_flag) {
770         switch (h->sei_pic_struct) {
771         case SEI_PIC_STRUCT_FRAME:
772             break;
773         case SEI_PIC_STRUCT_TOP_FIELD:
774         case SEI_PIC_STRUCT_BOTTOM_FIELD:
775             cur->f->interlaced_frame = 1;
776             break;
777         case SEI_PIC_STRUCT_TOP_BOTTOM:
778         case SEI_PIC_STRUCT_BOTTOM_TOP:
779             if (FIELD_OR_MBAFF_PICTURE(h))
780                 cur->f->interlaced_frame = 1;
781             else
782                 // try to flag soft telecine progressive
783                 cur->f->interlaced_frame = h->prev_interlaced_frame;
784             break;
785         case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
786         case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
787             /* Signal the possibility of telecined film externally
788              * (pic_struct 5,6). From these hints, let the applications
789              * decide if they apply deinterlacing. */
790             cur->f->repeat_pict = 1;
791             break;
792         case SEI_PIC_STRUCT_FRAME_DOUBLING:
793             cur->f->repeat_pict = 2;
794             break;
795         case SEI_PIC_STRUCT_FRAME_TRIPLING:
796             cur->f->repeat_pict = 4;
797             break;
798         }
799
800         if ((h->sei_ct_type & 3) &&
801             h->sei_pic_struct <= SEI_PIC_STRUCT_BOTTOM_TOP)
802             cur->f->interlaced_frame = (h->sei_ct_type & (1 << 1)) != 0;
803     } else {
804         /* Derive interlacing flag from used decoding process. */
805         cur->f->interlaced_frame = FIELD_OR_MBAFF_PICTURE(h);
806     }
807     h->prev_interlaced_frame = cur->f->interlaced_frame;
808
809     if (cur->field_poc[0] != cur->field_poc[1]) {
810         /* Derive top_field_first from field pocs. */
811         cur->f->top_field_first = cur->field_poc[0] < cur->field_poc[1];
812     } else {
813         if (h->sps.pic_struct_present_flag) {
814             /* Use picture timing SEI information. Even if it is a
815              * information of a past frame, better than nothing. */
816             if (h->sei_pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM ||
817                 h->sei_pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM_TOP)
818                 cur->f->top_field_first = 1;
819             else
820                 cur->f->top_field_first = 0;
821         } else if (cur->f->interlaced_frame) {
822             /* Default to top field first when pic_struct_present_flag
823              * is not set but interlaced frame detected */
824             cur->f->top_field_first = 1;
825         } else {
826             /* Most likely progressive */
827             cur->f->top_field_first = 0;
828         }
829     }
830
831     if (h->sei_frame_packing_present &&
832         h->frame_packing_arrangement_type >= 0 &&
833         h->frame_packing_arrangement_type <= 6 &&
834         h->content_interpretation_type > 0 &&
835         h->content_interpretation_type < 3) {
836         AVStereo3D *stereo = av_stereo3d_create_side_data(cur->f);
837         if (stereo) {
838         switch (h->frame_packing_arrangement_type) {
839         case 0:
840             stereo->type = AV_STEREO3D_CHECKERBOARD;
841             break;
842         case 1:
843             stereo->type = AV_STEREO3D_COLUMNS;
844             break;
845         case 2:
846             stereo->type = AV_STEREO3D_LINES;
847             break;
848         case 3:
849             if (h->quincunx_subsampling)
850                 stereo->type = AV_STEREO3D_SIDEBYSIDE_QUINCUNX;
851             else
852                 stereo->type = AV_STEREO3D_SIDEBYSIDE;
853             break;
854         case 4:
855             stereo->type = AV_STEREO3D_TOPBOTTOM;
856             break;
857         case 5:
858             stereo->type = AV_STEREO3D_FRAMESEQUENCE;
859             break;
860         case 6:
861             stereo->type = AV_STEREO3D_2D;
862             break;
863         }
864
865         if (h->content_interpretation_type == 2)
866             stereo->flags = AV_STEREO3D_FLAG_INVERT;
867         }
868     }
869
870     if (h->sei_display_orientation_present &&
871         (h->sei_anticlockwise_rotation || h->sei_hflip || h->sei_vflip)) {
872         double angle = h->sei_anticlockwise_rotation * 360 / (double) (1 << 16);
873         AVFrameSideData *rotation = av_frame_new_side_data(cur->f,
874                                                            AV_FRAME_DATA_DISPLAYMATRIX,
875                                                            sizeof(int32_t) * 9);
876         if (rotation) {
877             av_display_rotation_set((int32_t *)rotation->data, angle);
878             av_display_matrix_flip((int32_t *)rotation->data,
879                                    h->sei_hflip, h->sei_vflip);
880         }
881     }
882
883     if (h->sei_reguserdata_afd_present) {
884         AVFrameSideData *sd = av_frame_new_side_data(cur->f, AV_FRAME_DATA_AFD,
885                                                      sizeof(uint8_t));
886
887         if (sd) {
888             *sd->data = h->active_format_description;
889             h->sei_reguserdata_afd_present = 0;
890         }
891     }
892
893     if (h->a53_caption) {
894         AVFrameSideData *sd = av_frame_new_side_data(cur->f,
895                                                      AV_FRAME_DATA_A53_CC,
896                                                      h->a53_caption_size);
897         if (sd)
898             memcpy(sd->data, h->a53_caption, h->a53_caption_size);
899         av_freep(&h->a53_caption);
900         h->a53_caption_size = 0;
901         h->avctx->properties |= FF_CODEC_PROPERTY_CLOSED_CAPTIONS;
902     }
903
904     cur->mmco_reset = h->mmco_reset;
905     h->mmco_reset = 0;
906
907     // FIXME do something with unavailable reference frames
908
909     /* Sort B-frames into display order */
910     if (h->sps.bitstream_restriction_flag ||
911         h->avctx->strict_std_compliance >= FF_COMPLIANCE_STRICT) {
912         h->avctx->has_b_frames = FFMAX(h->avctx->has_b_frames, h->sps.num_reorder_frames);
913     }
914     h->low_delay = !h->avctx->has_b_frames;
915
916     for (i = 0; 1; i++) {
917         if(i == MAX_DELAYED_PIC_COUNT || cur->poc < h->last_pocs[i]){
918             if(i)
919                 h->last_pocs[i-1] = cur->poc;
920             break;
921         } else if(i) {
922             h->last_pocs[i-1]= h->last_pocs[i];
923         }
924     }
925     out_of_order = MAX_DELAYED_PIC_COUNT - i;
926     if(   cur->f->pict_type == AV_PICTURE_TYPE_B
927        || (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))
928         out_of_order = FFMAX(out_of_order, 1);
929     if (out_of_order == MAX_DELAYED_PIC_COUNT) {
930         av_log(h->avctx, AV_LOG_VERBOSE, "Invalid POC %d<%d\n", cur->poc, h->last_pocs[0]);
931         for (i = 1; i < MAX_DELAYED_PIC_COUNT; i++)
932             h->last_pocs[i] = INT_MIN;
933         h->last_pocs[0] = cur->poc;
934         cur->mmco_reset = 1;
935     } else if(h->avctx->has_b_frames < out_of_order && !h->sps.bitstream_restriction_flag){
936         av_log(h->avctx, AV_LOG_VERBOSE, "Increasing reorder buffer to %d\n", out_of_order);
937         h->avctx->has_b_frames = out_of_order;
938         h->low_delay = 0;
939     }
940
941     pics = 0;
942     while (h->delayed_pic[pics])
943         pics++;
944
945     av_assert0(pics <= MAX_DELAYED_PIC_COUNT);
946
947     h->delayed_pic[pics++] = cur;
948     if (cur->reference == 0)
949         cur->reference = DELAYED_PIC_REF;
950
951     out     = h->delayed_pic[0];
952     out_idx = 0;
953     for (i = 1; h->delayed_pic[i] &&
954                 !h->delayed_pic[i]->f->key_frame &&
955                 !h->delayed_pic[i]->mmco_reset;
956          i++)
957         if (h->delayed_pic[i]->poc < out->poc) {
958             out     = h->delayed_pic[i];
959             out_idx = i;
960         }
961     if (h->avctx->has_b_frames == 0 &&
962         (h->delayed_pic[0]->f->key_frame || h->delayed_pic[0]->mmco_reset))
963         h->next_outputed_poc = INT_MIN;
964     out_of_order = out->poc < h->next_outputed_poc;
965
966     if (out_of_order || pics > h->avctx->has_b_frames) {
967         out->reference &= ~DELAYED_PIC_REF;
968         // for frame threading, the owner must be the second field's thread or
969         // else the first thread can release the picture and reuse it unsafely
970         for (i = out_idx; h->delayed_pic[i]; i++)
971             h->delayed_pic[i] = h->delayed_pic[i + 1];
972     }
973     if (!out_of_order && pics > h->avctx->has_b_frames) {
974         h->next_output_pic = out;
975         if (out_idx == 0 && h->delayed_pic[0] && (h->delayed_pic[0]->f->key_frame || h->delayed_pic[0]->mmco_reset)) {
976             h->next_outputed_poc = INT_MIN;
977         } else
978             h->next_outputed_poc = out->poc;
979     } else {
980         av_log(h->avctx, AV_LOG_DEBUG, "no picture %s\n", out_of_order ? "ooo" : "");
981     }
982
983     if (h->next_output_pic) {
984         if (h->next_output_pic->recovered) {
985             // We have reached an recovery point and all frames after it in
986             // display order are "recovered".
987             h->frame_recovered |= FRAME_RECOVERED_SEI;
988         }
989         h->next_output_pic->recovered |= !!(h->frame_recovered & FRAME_RECOVERED_SEI);
990     }
991
992     if (setup_finished && !h->avctx->hwaccel) {
993         ff_thread_finish_setup(h->avctx);
994
995         if (h->avctx->active_thread_type & FF_THREAD_FRAME)
996             h->setup_finished = 1;
997     }
998 }
999
1000 int ff_pred_weight_table(H264Context *h, H264SliceContext *sl)
1001 {
1002     int list, i;
1003     int luma_def, chroma_def;
1004
1005     sl->use_weight             = 0;
1006     sl->use_weight_chroma      = 0;
1007     sl->luma_log2_weight_denom = get_ue_golomb(&sl->gb);
1008     if (h->sps.chroma_format_idc)
1009         sl->chroma_log2_weight_denom = get_ue_golomb(&sl->gb);
1010
1011     if (sl->luma_log2_weight_denom > 7U) {
1012         av_log(h->avctx, AV_LOG_ERROR, "luma_log2_weight_denom %d is out of range\n", sl->luma_log2_weight_denom);
1013         sl->luma_log2_weight_denom = 0;
1014     }
1015     if (sl->chroma_log2_weight_denom > 7U) {
1016         av_log(h->avctx, AV_LOG_ERROR, "chroma_log2_weight_denom %d is out of range\n", sl->chroma_log2_weight_denom);
1017         sl->chroma_log2_weight_denom = 0;
1018     }
1019
1020     luma_def   = 1 << sl->luma_log2_weight_denom;
1021     chroma_def = 1 << sl->chroma_log2_weight_denom;
1022
1023     for (list = 0; list < 2; list++) {
1024         sl->luma_weight_flag[list]   = 0;
1025         sl->chroma_weight_flag[list] = 0;
1026         for (i = 0; i < sl->ref_count[list]; i++) {
1027             int luma_weight_flag, chroma_weight_flag;
1028
1029             luma_weight_flag = get_bits1(&sl->gb);
1030             if (luma_weight_flag) {
1031                 sl->luma_weight[i][list][0] = get_se_golomb(&sl->gb);
1032                 sl->luma_weight[i][list][1] = get_se_golomb(&sl->gb);
1033                 if (sl->luma_weight[i][list][0] != luma_def ||
1034                     sl->luma_weight[i][list][1] != 0) {
1035                     sl->use_weight             = 1;
1036                     sl->luma_weight_flag[list] = 1;
1037                 }
1038             } else {
1039                 sl->luma_weight[i][list][0] = luma_def;
1040                 sl->luma_weight[i][list][1] = 0;
1041             }
1042
1043             if (h->sps.chroma_format_idc) {
1044                 chroma_weight_flag = get_bits1(&sl->gb);
1045                 if (chroma_weight_flag) {
1046                     int j;
1047                     for (j = 0; j < 2; j++) {
1048                         sl->chroma_weight[i][list][j][0] = get_se_golomb(&sl->gb);
1049                         sl->chroma_weight[i][list][j][1] = get_se_golomb(&sl->gb);
1050                         if (sl->chroma_weight[i][list][j][0] != chroma_def ||
1051                             sl->chroma_weight[i][list][j][1] != 0) {
1052                             sl->use_weight_chroma        = 1;
1053                             sl->chroma_weight_flag[list] = 1;
1054                         }
1055                     }
1056                 } else {
1057                     int j;
1058                     for (j = 0; j < 2; j++) {
1059                         sl->chroma_weight[i][list][j][0] = chroma_def;
1060                         sl->chroma_weight[i][list][j][1] = 0;
1061                     }
1062                 }
1063             }
1064         }
1065         if (sl->slice_type_nos != AV_PICTURE_TYPE_B)
1066             break;
1067     }
1068     sl->use_weight = sl->use_weight || sl->use_weight_chroma;
1069     return 0;
1070 }
1071
1072 /**
1073  * instantaneous decoder refresh.
1074  */
1075 static void idr(H264Context *h)
1076 {
1077     int i;
1078     ff_h264_remove_all_refs(h);
1079     h->prev_frame_num        =
1080     h->prev_frame_num_offset = 0;
1081     h->prev_poc_msb          = 1<<16;
1082     h->prev_poc_lsb          = 0;
1083     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
1084         h->last_pocs[i] = INT_MIN;
1085 }
1086
1087 /* forget old pics after a seek */
1088 void ff_h264_flush_change(H264Context *h)
1089 {
1090     int i, j;
1091
1092     h->next_outputed_poc = INT_MIN;
1093     h->prev_interlaced_frame = 1;
1094     idr(h);
1095
1096     h->prev_frame_num = -1;
1097     if (h->cur_pic_ptr) {
1098         h->cur_pic_ptr->reference = 0;
1099         for (j=i=0; h->delayed_pic[i]; i++)
1100             if (h->delayed_pic[i] != h->cur_pic_ptr)
1101                 h->delayed_pic[j++] = h->delayed_pic[i];
1102         h->delayed_pic[j] = NULL;
1103     }
1104     ff_h264_unref_picture(h, &h->last_pic_for_ec);
1105
1106     h->first_field = 0;
1107     ff_h264_reset_sei(h);
1108     h->recovery_frame = -1;
1109     h->frame_recovered = 0;
1110     h->current_slice = 0;
1111     h->mmco_reset = 1;
1112     for (i = 0; i < h->nb_slice_ctx; i++)
1113         h->slice_ctx[i].list_count = 0;
1114 }
1115
1116 /* forget old pics after a seek */
1117 static void flush_dpb(AVCodecContext *avctx)
1118 {
1119     H264Context *h = avctx->priv_data;
1120     int i;
1121
1122     memset(h->delayed_pic, 0, sizeof(h->delayed_pic));
1123
1124     ff_h264_flush_change(h);
1125
1126     for (i = 0; i < H264_MAX_PICTURE_COUNT; i++)
1127         ff_h264_unref_picture(h, &h->DPB[i]);
1128     h->cur_pic_ptr = NULL;
1129     ff_h264_unref_picture(h, &h->cur_pic);
1130
1131     h->mb_y = 0;
1132
1133     ff_h264_free_tables(h);
1134     h->context_initialized = 0;
1135 }
1136
1137 int ff_init_poc(H264Context *h, int pic_field_poc[2], int *pic_poc)
1138 {
1139     const int max_frame_num = 1 << h->sps.log2_max_frame_num;
1140     int field_poc[2];
1141
1142     h->frame_num_offset = h->prev_frame_num_offset;
1143     if (h->frame_num < h->prev_frame_num)
1144         h->frame_num_offset += max_frame_num;
1145
1146     if (h->sps.poc_type == 0) {
1147         const int max_poc_lsb = 1 << h->sps.log2_max_poc_lsb;
1148
1149         if (h->poc_lsb < h->prev_poc_lsb &&
1150             h->prev_poc_lsb - h->poc_lsb >= max_poc_lsb / 2)
1151             h->poc_msb = h->prev_poc_msb + max_poc_lsb;
1152         else if (h->poc_lsb > h->prev_poc_lsb &&
1153                  h->prev_poc_lsb - h->poc_lsb < -max_poc_lsb / 2)
1154             h->poc_msb = h->prev_poc_msb - max_poc_lsb;
1155         else
1156             h->poc_msb = h->prev_poc_msb;
1157         field_poc[0] =
1158         field_poc[1] = h->poc_msb + h->poc_lsb;
1159         if (h->picture_structure == PICT_FRAME)
1160             field_poc[1] += h->delta_poc_bottom;
1161     } else if (h->sps.poc_type == 1) {
1162         int abs_frame_num, expected_delta_per_poc_cycle, expectedpoc;
1163         int i;
1164
1165         if (h->sps.poc_cycle_length != 0)
1166             abs_frame_num = h->frame_num_offset + h->frame_num;
1167         else
1168             abs_frame_num = 0;
1169
1170         if (h->nal_ref_idc == 0 && abs_frame_num > 0)
1171             abs_frame_num--;
1172
1173         expected_delta_per_poc_cycle = 0;
1174         for (i = 0; i < h->sps.poc_cycle_length; i++)
1175             // FIXME integrate during sps parse
1176             expected_delta_per_poc_cycle += h->sps.offset_for_ref_frame[i];
1177
1178         if (abs_frame_num > 0) {
1179             int poc_cycle_cnt          = (abs_frame_num - 1) / h->sps.poc_cycle_length;
1180             int frame_num_in_poc_cycle = (abs_frame_num - 1) % h->sps.poc_cycle_length;
1181
1182             expectedpoc = poc_cycle_cnt * expected_delta_per_poc_cycle;
1183             for (i = 0; i <= frame_num_in_poc_cycle; i++)
1184                 expectedpoc = expectedpoc + h->sps.offset_for_ref_frame[i];
1185         } else
1186             expectedpoc = 0;
1187
1188         if (h->nal_ref_idc == 0)
1189             expectedpoc = expectedpoc + h->sps.offset_for_non_ref_pic;
1190
1191         field_poc[0] = expectedpoc + h->delta_poc[0];
1192         field_poc[1] = field_poc[0] + h->sps.offset_for_top_to_bottom_field;
1193
1194         if (h->picture_structure == PICT_FRAME)
1195             field_poc[1] += h->delta_poc[1];
1196     } else {
1197         int poc = 2 * (h->frame_num_offset + h->frame_num);
1198
1199         if (!h->nal_ref_idc)
1200             poc--;
1201
1202         field_poc[0] = poc;
1203         field_poc[1] = poc;
1204     }
1205
1206     if (h->picture_structure != PICT_BOTTOM_FIELD)
1207         pic_field_poc[0] = field_poc[0];
1208     if (h->picture_structure != PICT_TOP_FIELD)
1209         pic_field_poc[1] = field_poc[1];
1210     *pic_poc = FFMIN(pic_field_poc[0], pic_field_poc[1]);
1211
1212     return 0;
1213 }
1214
1215 /**
1216  * Compute profile from profile_idc and constraint_set?_flags.
1217  *
1218  * @param sps SPS
1219  *
1220  * @return profile as defined by FF_PROFILE_H264_*
1221  */
1222 int ff_h264_get_profile(SPS *sps)
1223 {
1224     int profile = sps->profile_idc;
1225
1226     switch (sps->profile_idc) {
1227     case FF_PROFILE_H264_BASELINE:
1228         // constraint_set1_flag set to 1
1229         profile |= (sps->constraint_set_flags & 1 << 1) ? FF_PROFILE_H264_CONSTRAINED : 0;
1230         break;
1231     case FF_PROFILE_H264_HIGH_10:
1232     case FF_PROFILE_H264_HIGH_422:
1233     case FF_PROFILE_H264_HIGH_444_PREDICTIVE:
1234         // constraint_set3_flag set to 1
1235         profile |= (sps->constraint_set_flags & 1 << 3) ? FF_PROFILE_H264_INTRA : 0;
1236         break;
1237     }
1238
1239     return profile;
1240 }
1241
1242 int ff_set_ref_count(H264Context *h, H264SliceContext *sl)
1243 {
1244     int ref_count[2], list_count;
1245     int num_ref_idx_active_override_flag;
1246
1247     // set defaults, might be overridden a few lines later
1248     ref_count[0] = h->pps.ref_count[0];
1249     ref_count[1] = h->pps.ref_count[1];
1250
1251     if (sl->slice_type_nos != AV_PICTURE_TYPE_I) {
1252         unsigned max[2];
1253         max[0] = max[1] = h->picture_structure == PICT_FRAME ? 15 : 31;
1254
1255         if (sl->slice_type_nos == AV_PICTURE_TYPE_B)
1256             sl->direct_spatial_mv_pred = get_bits1(&sl->gb);
1257         num_ref_idx_active_override_flag = get_bits1(&sl->gb);
1258
1259         if (num_ref_idx_active_override_flag) {
1260             ref_count[0] = get_ue_golomb(&sl->gb) + 1;
1261             if (sl->slice_type_nos == AV_PICTURE_TYPE_B) {
1262                 ref_count[1] = get_ue_golomb(&sl->gb) + 1;
1263             } else
1264                 // full range is spec-ok in this case, even for frames
1265                 ref_count[1] = 1;
1266         }
1267
1268         if (ref_count[0]-1 > max[0] || ref_count[1]-1 > max[1]){
1269             av_log(h->avctx, AV_LOG_ERROR, "reference overflow %u > %u or %u > %u\n", ref_count[0]-1, max[0], ref_count[1]-1, max[1]);
1270             sl->ref_count[0] = sl->ref_count[1] = 0;
1271             sl->list_count   = 0;
1272             return AVERROR_INVALIDDATA;
1273         }
1274
1275         if (sl->slice_type_nos == AV_PICTURE_TYPE_B)
1276             list_count = 2;
1277         else
1278             list_count = 1;
1279     } else {
1280         list_count   = 0;
1281         ref_count[0] = ref_count[1] = 0;
1282     }
1283
1284     if (list_count   != sl->list_count   ||
1285         ref_count[0] != sl->ref_count[0] ||
1286         ref_count[1] != sl->ref_count[1]) {
1287         sl->ref_count[0] = ref_count[0];
1288         sl->ref_count[1] = ref_count[1];
1289         sl->list_count   = list_count;
1290         return 1;
1291     }
1292
1293     return 0;
1294 }
1295
1296 static const uint8_t start_code[] = { 0x00, 0x00, 0x01 };
1297
1298 static int get_bit_length(H264Context *h, const uint8_t *buf,
1299                           const uint8_t *ptr, int dst_length,
1300                           int i, int next_avc)
1301 {
1302     if ((h->workaround_bugs & FF_BUG_AUTODETECT) && i + 3 < next_avc &&
1303         buf[i]     == 0x00 && buf[i + 1] == 0x00 &&
1304         buf[i + 2] == 0x01 && buf[i + 3] == 0xE0)
1305         h->workaround_bugs |= FF_BUG_TRUNCATED;
1306
1307     if (!(h->workaround_bugs & FF_BUG_TRUNCATED))
1308         while (dst_length > 0 && ptr[dst_length - 1] == 0)
1309             dst_length--;
1310
1311     if (!dst_length)
1312         return 0;
1313
1314     return 8 * dst_length - decode_rbsp_trailing(h, ptr + dst_length - 1);
1315 }
1316
1317 static int get_last_needed_nal(H264Context *h, const uint8_t *buf, int buf_size)
1318 {
1319     int next_avc    = h->is_avc ? 0 : buf_size;
1320     int nal_index   = 0;
1321     int buf_index   = 0;
1322     int nals_needed = 0;
1323     int first_slice = 0;
1324
1325     while(1) {
1326         GetBitContext gb;
1327         int nalsize = 0;
1328         int dst_length, bit_length, consumed;
1329         const uint8_t *ptr;
1330
1331         if (buf_index >= next_avc) {
1332             nalsize = get_avc_nalsize(h, buf, buf_size, &buf_index);
1333             if (nalsize < 0)
1334                 break;
1335             next_avc = buf_index + nalsize;
1336         } else {
1337             buf_index = find_start_code(buf, buf_size, buf_index, next_avc);
1338             if (buf_index >= buf_size)
1339                 break;
1340             if (buf_index >= next_avc)
1341                 continue;
1342         }
1343
1344         ptr = ff_h264_decode_nal(h, &h->slice_ctx[0], buf + buf_index, &dst_length, &consumed,
1345                                  next_avc - buf_index);
1346
1347         if (!ptr || dst_length < 0)
1348             return AVERROR_INVALIDDATA;
1349
1350         buf_index += consumed;
1351
1352         bit_length = get_bit_length(h, buf, ptr, dst_length,
1353                                     buf_index, next_avc);
1354         nal_index++;
1355
1356         /* packets can sometimes contain multiple PPS/SPS,
1357          * e.g. two PAFF field pictures in one packet, or a demuxer
1358          * which splits NALs strangely if so, when frame threading we
1359          * can't start the next thread until we've read all of them */
1360         switch (h->nal_unit_type) {
1361         case NAL_SPS:
1362         case NAL_PPS:
1363             nals_needed = nal_index;
1364             break;
1365         case NAL_DPA:
1366         case NAL_IDR_SLICE:
1367         case NAL_SLICE:
1368             init_get_bits(&gb, ptr, bit_length);
1369             if (!get_ue_golomb_long(&gb) ||  // first_mb_in_slice
1370                 !first_slice ||
1371                 first_slice != h->nal_unit_type)
1372                 nals_needed = nal_index;
1373             if (!first_slice)
1374                 first_slice = h->nal_unit_type;
1375         }
1376     }
1377
1378     return nals_needed;
1379 }
1380
1381 static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size,
1382                             int parse_extradata)
1383 {
1384     AVCodecContext *const avctx = h->avctx;
1385     H264SliceContext *sl;
1386     int buf_index;
1387     unsigned context_count;
1388     int next_avc;
1389     int nals_needed = 0; ///< number of NALs that need decoding before the next frame thread starts
1390     int nal_index;
1391     int idr_cleared=0;
1392     int ret = 0;
1393
1394     h->nal_unit_type= 0;
1395
1396     if(!h->slice_context_count)
1397          h->slice_context_count= 1;
1398     h->max_contexts = h->slice_context_count;
1399     if (!(avctx->flags2 & AV_CODEC_FLAG2_CHUNKS)) {
1400         h->current_slice = 0;
1401         if (!h->first_field)
1402             h->cur_pic_ptr = NULL;
1403         ff_h264_reset_sei(h);
1404     }
1405
1406     if (h->nal_length_size == 4) {
1407         if (buf_size > 8 && AV_RB32(buf) == 1 && AV_RB32(buf+5) > (unsigned)buf_size) {
1408             h->is_avc = 0;
1409         }else if(buf_size > 3 && AV_RB32(buf) > 1 && AV_RB32(buf) <= (unsigned)buf_size)
1410             h->is_avc = 1;
1411     }
1412
1413     if (avctx->active_thread_type & FF_THREAD_FRAME)
1414         nals_needed = get_last_needed_nal(h, buf, buf_size);
1415
1416     {
1417         buf_index     = 0;
1418         context_count = 0;
1419         next_avc      = h->is_avc ? 0 : buf_size;
1420         nal_index     = 0;
1421         for (;;) {
1422             int consumed;
1423             int dst_length;
1424             int bit_length;
1425             const uint8_t *ptr;
1426             int nalsize = 0;
1427             int err;
1428
1429             if (buf_index >= next_avc) {
1430                 nalsize = get_avc_nalsize(h, buf, buf_size, &buf_index);
1431                 if (nalsize < 0)
1432                     break;
1433                 next_avc = buf_index + nalsize;
1434             } else {
1435                 buf_index = find_start_code(buf, buf_size, buf_index, next_avc);
1436                 if (buf_index >= buf_size)
1437                     break;
1438                 if (buf_index >= next_avc)
1439                     continue;
1440             }
1441
1442             sl = &h->slice_ctx[context_count];
1443
1444             ptr = ff_h264_decode_nal(h, sl, buf + buf_index, &dst_length,
1445                                      &consumed, next_avc - buf_index);
1446             if (!ptr || dst_length < 0) {
1447                 ret = -1;
1448                 goto end;
1449             }
1450
1451             bit_length = get_bit_length(h, buf, ptr, dst_length,
1452                                         buf_index + consumed, next_avc);
1453
1454             if (h->avctx->debug & FF_DEBUG_STARTCODE)
1455                 av_log(h->avctx, AV_LOG_DEBUG,
1456                        "NAL %d/%d at %d/%d length %d\n",
1457                        h->nal_unit_type, h->nal_ref_idc, buf_index, buf_size, dst_length);
1458
1459             if (h->is_avc && (nalsize != consumed) && nalsize)
1460                 av_log(h->avctx, AV_LOG_DEBUG,
1461                        "AVC: Consumed only %d bytes instead of %d\n",
1462                        consumed, nalsize);
1463
1464             buf_index += consumed;
1465             nal_index++;
1466
1467             if (avctx->skip_frame >= AVDISCARD_NONREF &&
1468                 h->nal_ref_idc == 0 &&
1469                 h->nal_unit_type != NAL_SEI)
1470                 continue;
1471
1472 again:
1473             /* Ignore per frame NAL unit type during extradata
1474              * parsing. Decoding slices is not possible in codec init
1475              * with frame-mt */
1476             if (parse_extradata) {
1477                 switch (h->nal_unit_type) {
1478                 case NAL_IDR_SLICE:
1479                 case NAL_SLICE:
1480                 case NAL_DPA:
1481                 case NAL_DPB:
1482                 case NAL_DPC:
1483                     av_log(h->avctx, AV_LOG_WARNING,
1484                            "Ignoring NAL %d in global header/extradata\n",
1485                            h->nal_unit_type);
1486                     // fall through to next case
1487                 case NAL_AUXILIARY_SLICE:
1488                     h->nal_unit_type = NAL_FF_IGNORE;
1489                 }
1490             }
1491
1492             err = 0;
1493
1494             switch (h->nal_unit_type) {
1495             case NAL_IDR_SLICE:
1496                 if ((ptr[0] & 0xFC) == 0x98) {
1497                     av_log(h->avctx, AV_LOG_ERROR, "Invalid inter IDR frame\n");
1498                     h->next_outputed_poc = INT_MIN;
1499                     ret = -1;
1500                     goto end;
1501                 }
1502                 if (h->nal_unit_type != NAL_IDR_SLICE) {
1503                     av_log(h->avctx, AV_LOG_ERROR,
1504                            "Invalid mix of idr and non-idr slices\n");
1505                     ret = -1;
1506                     goto end;
1507                 }
1508                 if(!idr_cleared) {
1509                     if (h->current_slice && (avctx->active_thread_type & FF_THREAD_SLICE)) {
1510                         av_log(h, AV_LOG_ERROR, "invalid mixed IDR / non IDR frames cannot be decoded in slice multithreading mode\n");
1511                         ret = AVERROR_INVALIDDATA;
1512                         goto end;
1513                     }
1514                     idr(h); // FIXME ensure we don't lose some frames if there is reordering
1515                 }
1516                 idr_cleared = 1;
1517                 h->has_recovery_point = 1;
1518             case NAL_SLICE:
1519                 init_get_bits(&sl->gb, ptr, bit_length);
1520
1521                 if (   nals_needed >= nal_index
1522                     || (!(avctx->active_thread_type & FF_THREAD_FRAME) && !context_count))
1523                     h->au_pps_id = -1;
1524
1525                 if ((err = ff_h264_decode_slice_header(h, sl)))
1526                     break;
1527
1528                 if (h->sei_recovery_frame_cnt >= 0) {
1529                     if (h->frame_num != h->sei_recovery_frame_cnt || sl->slice_type_nos != AV_PICTURE_TYPE_I)
1530                         h->valid_recovery_point = 1;
1531
1532                     if (   h->recovery_frame < 0
1533                         || av_mod_uintp2(h->recovery_frame - h->frame_num, h->sps.log2_max_frame_num) > h->sei_recovery_frame_cnt) {
1534                         h->recovery_frame = av_mod_uintp2(h->frame_num + h->sei_recovery_frame_cnt, h->sps.log2_max_frame_num);
1535
1536                         if (!h->valid_recovery_point)
1537                             h->recovery_frame = h->frame_num;
1538                     }
1539                 }
1540
1541                 h->cur_pic_ptr->f->key_frame |=
1542                     (h->nal_unit_type == NAL_IDR_SLICE);
1543
1544                 if (h->nal_unit_type == NAL_IDR_SLICE ||
1545                     h->recovery_frame == h->frame_num) {
1546                     h->recovery_frame         = -1;
1547                     h->cur_pic_ptr->recovered = 1;
1548                 }
1549                 // If we have an IDR, all frames after it in decoded order are
1550                 // "recovered".
1551                 if (h->nal_unit_type == NAL_IDR_SLICE)
1552                     h->frame_recovered |= FRAME_RECOVERED_IDR;
1553 #if 1
1554                 h->cur_pic_ptr->recovered |= h->frame_recovered;
1555 #else
1556                 h->cur_pic_ptr->recovered |= !!(h->frame_recovered & FRAME_RECOVERED_IDR);
1557 #endif
1558
1559                 if (h->current_slice == 1) {
1560                     if (!(avctx->flags2 & AV_CODEC_FLAG2_CHUNKS))
1561                         decode_postinit(h, nal_index >= nals_needed);
1562
1563                     if (h->avctx->hwaccel &&
1564                         (ret = h->avctx->hwaccel->start_frame(h->avctx, buf, buf_size)) < 0)
1565                         goto end;
1566 #if FF_API_CAP_VDPAU
1567                     if (CONFIG_H264_VDPAU_DECODER &&
1568                         h->avctx->codec->capabilities & AV_CODEC_CAP_HWACCEL_VDPAU)
1569                         ff_vdpau_h264_picture_start(h);
1570 #endif
1571                 }
1572
1573                 if (sl->redundant_pic_count == 0) {
1574                     if (avctx->hwaccel) {
1575                         ret = avctx->hwaccel->decode_slice(avctx,
1576                                                            &buf[buf_index - consumed],
1577                                                            consumed);
1578                         if (ret < 0)
1579                             goto end;
1580 #if FF_API_CAP_VDPAU
1581                     } else if (CONFIG_H264_VDPAU_DECODER &&
1582                                h->avctx->codec->capabilities & AV_CODEC_CAP_HWACCEL_VDPAU) {
1583                         ff_vdpau_add_data_chunk(h->cur_pic_ptr->f->data[0],
1584                                                 start_code,
1585                                                 sizeof(start_code));
1586                         ff_vdpau_add_data_chunk(h->cur_pic_ptr->f->data[0],
1587                                                 &buf[buf_index - consumed],
1588                                                 consumed);
1589 #endif
1590                     } else
1591                         context_count++;
1592                 }
1593                 break;
1594             case NAL_DPA:
1595             case NAL_DPB:
1596             case NAL_DPC:
1597                 avpriv_request_sample(avctx, "data partitioning");
1598                 break;
1599             case NAL_SEI:
1600                 init_get_bits(&h->gb, ptr, bit_length);
1601                 ret = ff_h264_decode_sei(h);
1602                 if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1603                     goto end;
1604                 break;
1605             case NAL_SPS:
1606                 init_get_bits(&h->gb, ptr, bit_length);
1607                 if (ff_h264_decode_seq_parameter_set(h, 0) >= 0)
1608                     break;
1609                 if (h->is_avc ? nalsize : 1) {
1610                     av_log(h->avctx, AV_LOG_DEBUG,
1611                            "SPS decoding failure, trying again with the complete NAL\n");
1612                     if (h->is_avc)
1613                         av_assert0(next_avc - buf_index + consumed == nalsize);
1614                     if ((next_avc - buf_index + consumed - 1) >= INT_MAX/8)
1615                         break;
1616                     init_get_bits(&h->gb, &buf[buf_index + 1 - consumed],
1617                                   8*(next_avc - buf_index + consumed - 1));
1618                     if (ff_h264_decode_seq_parameter_set(h, 0) >= 0)
1619                         break;
1620                 }
1621                 init_get_bits(&h->gb, ptr, bit_length);
1622                 ff_h264_decode_seq_parameter_set(h, 1);
1623
1624                 break;
1625             case NAL_PPS:
1626                 init_get_bits(&h->gb, ptr, bit_length);
1627                 ret = ff_h264_decode_picture_parameter_set(h, bit_length);
1628                 if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1629                     goto end;
1630                 break;
1631             case NAL_AUD:
1632             case NAL_END_SEQUENCE:
1633             case NAL_END_STREAM:
1634             case NAL_FILLER_DATA:
1635             case NAL_SPS_EXT:
1636             case NAL_AUXILIARY_SLICE:
1637                 break;
1638             case NAL_FF_IGNORE:
1639                 break;
1640             default:
1641                 av_log(avctx, AV_LOG_DEBUG, "Unknown NAL code: %d (%d bits)\n",
1642                        h->nal_unit_type, bit_length);
1643             }
1644
1645             if (context_count == h->max_contexts) {
1646                 ret = ff_h264_execute_decode_slices(h, context_count);
1647                 if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1648                     goto end;
1649                 context_count = 0;
1650             }
1651
1652             if (err < 0 || err == SLICE_SKIPED) {
1653                 if (err < 0)
1654                     av_log(h->avctx, AV_LOG_ERROR, "decode_slice_header error\n");
1655                 sl->ref_count[0] = sl->ref_count[1] = sl->list_count = 0;
1656             } else if (err == SLICE_SINGLETHREAD) {
1657                 if (context_count > 1) {
1658                     ret = ff_h264_execute_decode_slices(h, context_count - 1);
1659                     if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1660                         goto end;
1661                     context_count = 0;
1662                 }
1663                 /* Slice could not be decoded in parallel mode, restart. Note
1664                  * that rbsp_buffer is not transferred, but since we no longer
1665                  * run in parallel mode this should not be an issue. */
1666                 sl               = &h->slice_ctx[0];
1667                 goto again;
1668             }
1669         }
1670     }
1671     if (context_count) {
1672         ret = ff_h264_execute_decode_slices(h, context_count);
1673         if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1674             goto end;
1675     }
1676
1677     ret = 0;
1678 end:
1679     /* clean up */
1680     if (h->cur_pic_ptr && !h->droppable) {
1681         ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
1682                                   h->picture_structure == PICT_BOTTOM_FIELD);
1683     }
1684
1685     return (ret < 0) ? ret : buf_index;
1686 }
1687
1688 /**
1689  * Return the number of bytes consumed for building the current frame.
1690  */
1691 static int get_consumed_bytes(int pos, int buf_size)
1692 {
1693     if (pos == 0)
1694         pos = 1;        // avoid infinite loops (I doubt that is needed but...)
1695     if (pos + 10 > buf_size)
1696         pos = buf_size; // oops ;)
1697
1698     return pos;
1699 }
1700
1701 static int output_frame(H264Context *h, AVFrame *dst, H264Picture *srcp)
1702 {
1703     AVFrame *src = srcp->f;
1704     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(src->format);
1705     int i;
1706     int ret = av_frame_ref(dst, src);
1707     if (ret < 0)
1708         return ret;
1709
1710     av_dict_set(&dst->metadata, "stereo_mode", ff_h264_sei_stereo_mode(h), 0);
1711
1712     h->backup_width   = h->avctx->width;
1713     h->backup_height  = h->avctx->height;
1714     h->backup_pix_fmt = h->avctx->pix_fmt;
1715
1716     h->avctx->width   = dst->width;
1717     h->avctx->height  = dst->height;
1718     h->avctx->pix_fmt = dst->format;
1719
1720     if (srcp->sei_recovery_frame_cnt == 0)
1721         dst->key_frame = 1;
1722     if (!srcp->crop)
1723         return 0;
1724
1725     for (i = 0; i < desc->nb_components; i++) {
1726         int hshift = (i > 0) ? desc->log2_chroma_w : 0;
1727         int vshift = (i > 0) ? desc->log2_chroma_h : 0;
1728         int off    = ((srcp->crop_left >> hshift) << h->pixel_shift) +
1729                       (srcp->crop_top  >> vshift) * dst->linesize[i];
1730         dst->data[i] += off;
1731     }
1732     return 0;
1733 }
1734
1735 static int is_extra(const uint8_t *buf, int buf_size)
1736 {
1737     int cnt= buf[5]&0x1f;
1738     const uint8_t *p= buf+6;
1739     while(cnt--){
1740         int nalsize= AV_RB16(p) + 2;
1741         if(nalsize > buf_size - (p-buf) || p[2]!=0x67)
1742             return 0;
1743         p += nalsize;
1744     }
1745     cnt = *(p++);
1746     if(!cnt)
1747         return 0;
1748     while(cnt--){
1749         int nalsize= AV_RB16(p) + 2;
1750         if(nalsize > buf_size - (p-buf) || p[2]!=0x68)
1751             return 0;
1752         p += nalsize;
1753     }
1754     return 1;
1755 }
1756
1757 static int h264_decode_frame(AVCodecContext *avctx, void *data,
1758                              int *got_frame, AVPacket *avpkt)
1759 {
1760     const uint8_t *buf = avpkt->data;
1761     int buf_size       = avpkt->size;
1762     H264Context *h     = avctx->priv_data;
1763     AVFrame *pict      = data;
1764     int buf_index      = 0;
1765     H264Picture *out;
1766     int i, out_idx;
1767     int ret;
1768
1769     h->flags = avctx->flags;
1770     h->setup_finished = 0;
1771
1772     if (h->backup_width != -1) {
1773         avctx->width    = h->backup_width;
1774         h->backup_width = -1;
1775     }
1776     if (h->backup_height != -1) {
1777         avctx->height    = h->backup_height;
1778         h->backup_height = -1;
1779     }
1780     if (h->backup_pix_fmt != AV_PIX_FMT_NONE) {
1781         avctx->pix_fmt    = h->backup_pix_fmt;
1782         h->backup_pix_fmt = AV_PIX_FMT_NONE;
1783     }
1784
1785     ff_h264_unref_picture(h, &h->last_pic_for_ec);
1786
1787     /* end of stream, output what is still in the buffers */
1788     if (buf_size == 0) {
1789  out:
1790
1791         h->cur_pic_ptr = NULL;
1792         h->first_field = 0;
1793
1794         // FIXME factorize this with the output code below
1795         out     = h->delayed_pic[0];
1796         out_idx = 0;
1797         for (i = 1;
1798              h->delayed_pic[i] &&
1799              !h->delayed_pic[i]->f->key_frame &&
1800              !h->delayed_pic[i]->mmco_reset;
1801              i++)
1802             if (h->delayed_pic[i]->poc < out->poc) {
1803                 out     = h->delayed_pic[i];
1804                 out_idx = i;
1805             }
1806
1807         for (i = out_idx; h->delayed_pic[i]; i++)
1808             h->delayed_pic[i] = h->delayed_pic[i + 1];
1809
1810         if (out) {
1811             out->reference &= ~DELAYED_PIC_REF;
1812             ret = output_frame(h, pict, out);
1813             if (ret < 0)
1814                 return ret;
1815             *got_frame = 1;
1816         }
1817
1818         return buf_index;
1819     }
1820     if (h->is_avc && av_packet_get_side_data(avpkt, AV_PKT_DATA_NEW_EXTRADATA, NULL)) {
1821         int side_size;
1822         uint8_t *side = av_packet_get_side_data(avpkt, AV_PKT_DATA_NEW_EXTRADATA, &side_size);
1823         if (is_extra(side, side_size))
1824             ff_h264_decode_extradata(h, side, side_size);
1825     }
1826     if(h->is_avc && buf_size >= 9 && buf[0]==1 && buf[2]==0 && (buf[4]&0xFC)==0xFC && (buf[5]&0x1F) && buf[8]==0x67){
1827         if (is_extra(buf, buf_size))
1828             return ff_h264_decode_extradata(h, buf, buf_size);
1829     }
1830
1831     buf_index = decode_nal_units(h, buf, buf_size, 0);
1832     if (buf_index < 0)
1833         return AVERROR_INVALIDDATA;
1834
1835     if (!h->cur_pic_ptr && h->nal_unit_type == NAL_END_SEQUENCE) {
1836         av_assert0(buf_index <= buf_size);
1837         goto out;
1838     }
1839
1840     if (!(avctx->flags2 & AV_CODEC_FLAG2_CHUNKS) && !h->cur_pic_ptr) {
1841         if (avctx->skip_frame >= AVDISCARD_NONREF ||
1842             buf_size >= 4 && !memcmp("Q264", buf, 4))
1843             return buf_size;
1844         av_log(avctx, AV_LOG_ERROR, "no frame!\n");
1845         return AVERROR_INVALIDDATA;
1846     }
1847
1848     if (!(avctx->flags2 & AV_CODEC_FLAG2_CHUNKS) ||
1849         (h->mb_y >= h->mb_height && h->mb_height)) {
1850         if (avctx->flags2 & AV_CODEC_FLAG2_CHUNKS)
1851             decode_postinit(h, 1);
1852
1853         if ((ret = ff_h264_field_end(h, &h->slice_ctx[0], 0)) < 0)
1854             return ret;
1855
1856         /* Wait for second field. */
1857         *got_frame = 0;
1858         if (h->next_output_pic && ((avctx->flags & AV_CODEC_FLAG_OUTPUT_CORRUPT) ||
1859                                    (avctx->flags2 & AV_CODEC_FLAG2_SHOW_ALL) ||
1860                                    h->next_output_pic->recovered)) {
1861             if (!h->next_output_pic->recovered)
1862                 h->next_output_pic->f->flags |= AV_FRAME_FLAG_CORRUPT;
1863
1864             if (!h->avctx->hwaccel &&
1865                  (h->next_output_pic->field_poc[0] == INT_MAX ||
1866                   h->next_output_pic->field_poc[1] == INT_MAX)
1867             ) {
1868                 int p;
1869                 AVFrame *f = h->next_output_pic->f;
1870                 int field = h->next_output_pic->field_poc[0] == INT_MAX;
1871                 uint8_t *dst_data[4];
1872                 int linesizes[4];
1873                 const uint8_t *src_data[4];
1874
1875                 av_log(h->avctx, AV_LOG_DEBUG, "Duplicating field %d to fill missing\n", field);
1876
1877                 for (p = 0; p<4; p++) {
1878                     dst_data[p] = f->data[p] + (field^1)*f->linesize[p];
1879                     src_data[p] = f->data[p] +  field   *f->linesize[p];
1880                     linesizes[p] = 2*f->linesize[p];
1881                 }
1882
1883                 av_image_copy(dst_data, linesizes, src_data, linesizes,
1884                               f->format, f->width, f->height>>1);
1885             }
1886
1887             ret = output_frame(h, pict, h->next_output_pic);
1888             if (ret < 0)
1889                 return ret;
1890             *got_frame = 1;
1891             if (CONFIG_MPEGVIDEO) {
1892                 ff_print_debug_info2(h->avctx, pict, NULL,
1893                                     h->next_output_pic->mb_type,
1894                                     h->next_output_pic->qscale_table,
1895                                     h->next_output_pic->motion_val,
1896                                     &h->low_delay,
1897                                     h->mb_width, h->mb_height, h->mb_stride, 1);
1898             }
1899         }
1900     }
1901
1902     av_assert0(pict->buf[0] || !*got_frame);
1903
1904     ff_h264_unref_picture(h, &h->last_pic_for_ec);
1905
1906     return get_consumed_bytes(buf_index, buf_size);
1907 }
1908
1909 av_cold void ff_h264_free_context(H264Context *h)
1910 {
1911     int i;
1912
1913     ff_h264_free_tables(h);
1914
1915     for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
1916         ff_h264_unref_picture(h, &h->DPB[i]);
1917         av_frame_free(&h->DPB[i].f);
1918     }
1919     memset(h->delayed_pic, 0, sizeof(h->delayed_pic));
1920
1921     h->cur_pic_ptr = NULL;
1922
1923     for (i = 0; i < h->nb_slice_ctx; i++)
1924         av_freep(&h->slice_ctx[i].rbsp_buffer);
1925     av_freep(&h->slice_ctx);
1926     h->nb_slice_ctx = 0;
1927
1928     for (i = 0; i < MAX_SPS_COUNT; i++)
1929         av_freep(h->sps_buffers + i);
1930
1931     for (i = 0; i < MAX_PPS_COUNT; i++)
1932         av_freep(h->pps_buffers + i);
1933 }
1934
1935 static av_cold int h264_decode_end(AVCodecContext *avctx)
1936 {
1937     H264Context *h = avctx->priv_data;
1938
1939     ff_h264_remove_all_refs(h);
1940     ff_h264_free_context(h);
1941
1942     ff_h264_unref_picture(h, &h->cur_pic);
1943     av_frame_free(&h->cur_pic.f);
1944     ff_h264_unref_picture(h, &h->last_pic_for_ec);
1945     av_frame_free(&h->last_pic_for_ec.f);
1946
1947     return 0;
1948 }
1949
1950 #define OFFSET(x) offsetof(H264Context, x)
1951 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
1952 static const AVOption h264_options[] = {
1953     {"is_avc", "is avc", offsetof(H264Context, is_avc), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, 0},
1954     {"nal_length_size", "nal_length_size", offsetof(H264Context, nal_length_size), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 4, 0},
1955     { "enable_er", "Enable error resilience on damaged frames (unsafe)", OFFSET(enable_er), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VD },
1956     { NULL },
1957 };
1958
1959 static const AVClass h264_class = {
1960     .class_name = "H264 Decoder",
1961     .item_name  = av_default_item_name,
1962     .option     = h264_options,
1963     .version    = LIBAVUTIL_VERSION_INT,
1964 };
1965
1966 AVCodec ff_h264_decoder = {
1967     .name                  = "h264",
1968     .long_name             = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
1969     .type                  = AVMEDIA_TYPE_VIDEO,
1970     .id                    = AV_CODEC_ID_H264,
1971     .priv_data_size        = sizeof(H264Context),
1972     .init                  = ff_h264_decode_init,
1973     .close                 = h264_decode_end,
1974     .decode                = h264_decode_frame,
1975     .capabilities          = /*AV_CODEC_CAP_DRAW_HORIZ_BAND |*/ AV_CODEC_CAP_DR1 |
1976                              AV_CODEC_CAP_DELAY | AV_CODEC_CAP_SLICE_THREADS |
1977                              AV_CODEC_CAP_FRAME_THREADS,
1978     .caps_internal         = FF_CODEC_CAP_INIT_THREADSAFE,
1979     .flush                 = flush_dpb,
1980     .init_thread_copy      = ONLY_IF_THREADS_ENABLED(decode_init_thread_copy),
1981     .update_thread_context = ONLY_IF_THREADS_ENABLED(ff_h264_update_thread_context),
1982     .profiles              = NULL_IF_CONFIG_SMALL(ff_h264_profiles),
1983     .priv_class            = &h264_class,
1984 };
1985
1986 #if CONFIG_H264_VDPAU_DECODER && FF_API_VDPAU
1987 static const AVClass h264_vdpau_class = {
1988     .class_name = "H264 VDPAU Decoder",
1989     .item_name  = av_default_item_name,
1990     .option     = h264_options,
1991     .version    = LIBAVUTIL_VERSION_INT,
1992 };
1993
1994 AVCodec ff_h264_vdpau_decoder = {
1995     .name           = "h264_vdpau",
1996     .long_name      = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (VDPAU acceleration)"),
1997     .type           = AVMEDIA_TYPE_VIDEO,
1998     .id             = AV_CODEC_ID_H264,
1999     .priv_data_size = sizeof(H264Context),
2000     .init           = ff_h264_decode_init,
2001     .close          = h264_decode_end,
2002     .decode         = h264_decode_frame,
2003     .capabilities   = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY | AV_CODEC_CAP_HWACCEL_VDPAU,
2004     .flush          = flush_dpb,
2005     .pix_fmts       = (const enum AVPixelFormat[]) { AV_PIX_FMT_VDPAU_H264,
2006                                                      AV_PIX_FMT_NONE},
2007     .profiles       = NULL_IF_CONFIG_SMALL(ff_h264_profiles),
2008     .priv_class     = &h264_vdpau_class,
2009 };
2010 #endif