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