]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264.c
Merge commit '370ddc7b38d6b27b54fc2f5ee5f3dd9506f8c7c8'
[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 "bytestream.h"
38 #include "cabac.h"
39 #include "cabac_functions.h"
40 #include "error_resilience.h"
41 #include "avcodec.h"
42 #include "h264.h"
43 #include "h2645_parse.h"
44 #include "h264data.h"
45 #include "h264chroma.h"
46 #include "h264_mvpred.h"
47 #include "golomb.h"
48 #include "mathops.h"
49 #include "me_cmp.h"
50 #include "mpegutils.h"
51 #include "profiles.h"
52 #include "rectangle.h"
53 #include "thread.h"
54 #include "vdpau_compat.h"
55
56 static int h264_decode_end(AVCodecContext *avctx);
57
58 const uint16_t ff_h264_mb_sizes[4] = { 256, 384, 512, 768 };
59
60 int avpriv_h264_has_num_reorder_frames(AVCodecContext *avctx)
61 {
62     H264Context *h = avctx->priv_data;
63     return h && h->ps.sps ? h->ps.sps->num_reorder_frames : 0;
64 }
65
66 static void h264_er_decode_mb(void *opaque, int ref, int mv_dir, int mv_type,
67                               int (*mv)[2][4][2],
68                               int mb_x, int mb_y, int mb_intra, int mb_skipped)
69 {
70     H264Context *h = opaque;
71     H264SliceContext *sl = &h->slice_ctx[0];
72
73     sl->mb_x = mb_x;
74     sl->mb_y = mb_y;
75     sl->mb_xy = mb_x + mb_y * h->mb_stride;
76     memset(sl->non_zero_count_cache, 0, sizeof(sl->non_zero_count_cache));
77     av_assert1(ref >= 0);
78     /* FIXME: It is possible albeit uncommon that slice references
79      * differ between slices. We take the easy approach and ignore
80      * it for now. If this turns out to have any relevance in
81      * practice then correct remapping should be added. */
82     if (ref >= sl->ref_count[0])
83         ref = 0;
84     if (!sl->ref_list[0][ref].data[0]) {
85         av_log(h->avctx, AV_LOG_DEBUG, "Reference not available for error concealing\n");
86         ref = 0;
87     }
88     if ((sl->ref_list[0][ref].reference&3) != 3) {
89         av_log(h->avctx, AV_LOG_DEBUG, "Reference invalid\n");
90         return;
91     }
92     fill_rectangle(&h->cur_pic.ref_index[0][4 * sl->mb_xy],
93                    2, 2, 2, ref, 1);
94     fill_rectangle(&sl->ref_cache[0][scan8[0]], 4, 4, 8, ref, 1);
95     fill_rectangle(sl->mv_cache[0][scan8[0]], 4, 4, 8,
96                    pack16to32((*mv)[0][0][0], (*mv)[0][0][1]), 4);
97     sl->mb_mbaff =
98     sl->mb_field_decoding_flag = 0;
99     ff_h264_hl_decode_mb(h, &h->slice_ctx[0]);
100 }
101
102 void ff_h264_draw_horiz_band(const H264Context *h, H264SliceContext *sl,
103                              int y, int height)
104 {
105     AVCodecContext *avctx = h->avctx;
106     const AVFrame   *src  = h->cur_pic.f;
107     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
108     int vshift = desc->log2_chroma_h;
109     const int field_pic = h->picture_structure != PICT_FRAME;
110     if (field_pic) {
111         height <<= 1;
112         y      <<= 1;
113     }
114
115     height = FFMIN(height, avctx->height - y);
116
117     if (field_pic && h->first_field && !(avctx->slice_flags & SLICE_FLAG_ALLOW_FIELD))
118         return;
119
120     if (avctx->draw_horiz_band) {
121         int offset[AV_NUM_DATA_POINTERS];
122         int i;
123
124         offset[0] = y * src->linesize[0];
125         offset[1] =
126         offset[2] = (y >> vshift) * src->linesize[1];
127         for (i = 3; i < AV_NUM_DATA_POINTERS; i++)
128             offset[i] = 0;
129
130         emms_c();
131
132         avctx->draw_horiz_band(avctx, src, offset,
133                                y, h->picture_structure, height);
134     }
135 }
136
137 void ff_h264_free_tables(H264Context *h)
138 {
139     int i;
140
141     av_freep(&h->intra4x4_pred_mode);
142     av_freep(&h->chroma_pred_mode_table);
143     av_freep(&h->cbp_table);
144     av_freep(&h->mvd_table[0]);
145     av_freep(&h->mvd_table[1]);
146     av_freep(&h->direct_table);
147     av_freep(&h->non_zero_count);
148     av_freep(&h->slice_table_base);
149     h->slice_table = NULL;
150     av_freep(&h->list_counts);
151
152     av_freep(&h->mb2b_xy);
153     av_freep(&h->mb2br_xy);
154
155     av_buffer_pool_uninit(&h->qscale_table_pool);
156     av_buffer_pool_uninit(&h->mb_type_pool);
157     av_buffer_pool_uninit(&h->motion_val_pool);
158     av_buffer_pool_uninit(&h->ref_index_pool);
159
160     for (i = 0; i < h->nb_slice_ctx; i++) {
161         H264SliceContext *sl = &h->slice_ctx[i];
162
163         av_freep(&sl->dc_val_base);
164         av_freep(&sl->er.mb_index2xy);
165         av_freep(&sl->er.error_status_table);
166         av_freep(&sl->er.er_temp_buffer);
167
168         av_freep(&sl->bipred_scratchpad);
169         av_freep(&sl->edge_emu_buffer);
170         av_freep(&sl->top_borders[0]);
171         av_freep(&sl->top_borders[1]);
172
173         sl->bipred_scratchpad_allocated = 0;
174         sl->edge_emu_buffer_allocated   = 0;
175         sl->top_borders_allocated[0]    = 0;
176         sl->top_borders_allocated[1]    = 0;
177     }
178 }
179
180 int ff_h264_alloc_tables(H264Context *h)
181 {
182     const int big_mb_num = h->mb_stride * (h->mb_height + 1);
183     const int row_mb_num = 2*h->mb_stride*FFMAX(h->avctx->thread_count, 1);
184     int x, y;
185
186     FF_ALLOCZ_ARRAY_OR_GOTO(h->avctx, h->intra4x4_pred_mode,
187                       row_mb_num, 8 * sizeof(uint8_t), fail)
188     h->slice_ctx[0].intra4x4_pred_mode = h->intra4x4_pred_mode;
189
190     FF_ALLOCZ_OR_GOTO(h->avctx, h->non_zero_count,
191                       big_mb_num * 48 * sizeof(uint8_t), fail)
192     FF_ALLOCZ_OR_GOTO(h->avctx, h->slice_table_base,
193                       (big_mb_num + h->mb_stride) * sizeof(*h->slice_table_base), fail)
194     FF_ALLOCZ_OR_GOTO(h->avctx, h->cbp_table,
195                       big_mb_num * sizeof(uint16_t), fail)
196     FF_ALLOCZ_OR_GOTO(h->avctx, h->chroma_pred_mode_table,
197                       big_mb_num * sizeof(uint8_t), fail)
198     FF_ALLOCZ_ARRAY_OR_GOTO(h->avctx, h->mvd_table[0],
199                       row_mb_num, 16 * sizeof(uint8_t), fail);
200     FF_ALLOCZ_ARRAY_OR_GOTO(h->avctx, h->mvd_table[1],
201                       row_mb_num, 16 * sizeof(uint8_t), fail);
202     h->slice_ctx[0].mvd_table[0] = h->mvd_table[0];
203     h->slice_ctx[0].mvd_table[1] = h->mvd_table[1];
204
205     FF_ALLOCZ_OR_GOTO(h->avctx, h->direct_table,
206                       4 * big_mb_num * sizeof(uint8_t), fail);
207     FF_ALLOCZ_OR_GOTO(h->avctx, h->list_counts,
208                       big_mb_num * sizeof(uint8_t), fail)
209
210     memset(h->slice_table_base, -1,
211            (big_mb_num + h->mb_stride) * sizeof(*h->slice_table_base));
212     h->slice_table = h->slice_table_base + h->mb_stride * 2 + 1;
213
214     FF_ALLOCZ_OR_GOTO(h->avctx, h->mb2b_xy,
215                       big_mb_num * sizeof(uint32_t), fail);
216     FF_ALLOCZ_OR_GOTO(h->avctx, h->mb2br_xy,
217                       big_mb_num * sizeof(uint32_t), fail);
218     for (y = 0; y < h->mb_height; y++)
219         for (x = 0; x < h->mb_width; x++) {
220             const int mb_xy = x + y * h->mb_stride;
221             const int b_xy  = 4 * x + 4 * y * h->b_stride;
222
223             h->mb2b_xy[mb_xy]  = b_xy;
224             h->mb2br_xy[mb_xy] = 8 * (FMO ? mb_xy : (mb_xy % (2 * h->mb_stride)));
225         }
226
227     return 0;
228
229 fail:
230     ff_h264_free_tables(h);
231     return AVERROR(ENOMEM);
232 }
233
234 /**
235  * Init context
236  * Allocate buffers which are not shared amongst multiple threads.
237  */
238 int ff_h264_slice_context_init(H264Context *h, H264SliceContext *sl)
239 {
240     ERContext *er = &sl->er;
241     int mb_array_size = h->mb_height * h->mb_stride;
242     int y_size  = (2 * h->mb_width + 1) * (2 * h->mb_height + 1);
243     int c_size  = h->mb_stride * (h->mb_height + 1);
244     int yc_size = y_size + 2   * c_size;
245     int x, y, i;
246
247     sl->ref_cache[0][scan8[5]  + 1] =
248     sl->ref_cache[0][scan8[7]  + 1] =
249     sl->ref_cache[0][scan8[13] + 1] =
250     sl->ref_cache[1][scan8[5]  + 1] =
251     sl->ref_cache[1][scan8[7]  + 1] =
252     sl->ref_cache[1][scan8[13] + 1] = PART_NOT_AVAILABLE;
253
254     if (sl != h->slice_ctx) {
255         memset(er, 0, sizeof(*er));
256     } else
257     if (CONFIG_ERROR_RESILIENCE) {
258
259         /* init ER */
260         er->avctx          = h->avctx;
261         er->decode_mb      = h264_er_decode_mb;
262         er->opaque         = h;
263         er->quarter_sample = 1;
264
265         er->mb_num      = h->mb_num;
266         er->mb_width    = h->mb_width;
267         er->mb_height   = h->mb_height;
268         er->mb_stride   = h->mb_stride;
269         er->b8_stride   = h->mb_width * 2 + 1;
270
271         // error resilience code looks cleaner with this
272         FF_ALLOCZ_OR_GOTO(h->avctx, er->mb_index2xy,
273                           (h->mb_num + 1) * sizeof(int), fail);
274
275         for (y = 0; y < h->mb_height; y++)
276             for (x = 0; x < h->mb_width; x++)
277                 er->mb_index2xy[x + y * h->mb_width] = x + y * h->mb_stride;
278
279         er->mb_index2xy[h->mb_height * h->mb_width] = (h->mb_height - 1) *
280                                                       h->mb_stride + h->mb_width;
281
282         FF_ALLOCZ_OR_GOTO(h->avctx, er->error_status_table,
283                           mb_array_size * sizeof(uint8_t), fail);
284
285         FF_ALLOC_OR_GOTO(h->avctx, er->er_temp_buffer,
286                          h->mb_height * h->mb_stride, fail);
287
288         FF_ALLOCZ_OR_GOTO(h->avctx, sl->dc_val_base,
289                           yc_size * sizeof(int16_t), fail);
290         er->dc_val[0] = sl->dc_val_base + h->mb_width * 2 + 2;
291         er->dc_val[1] = sl->dc_val_base + y_size + h->mb_stride + 1;
292         er->dc_val[2] = er->dc_val[1] + c_size;
293         for (i = 0; i < yc_size; i++)
294             sl->dc_val_base[i] = 1024;
295     }
296
297     return 0;
298
299 fail:
300     return AVERROR(ENOMEM); // ff_h264_free_tables will clean up for us
301 }
302
303 static int h264_init_context(AVCodecContext *avctx, H264Context *h)
304 {
305     int i;
306
307     h->avctx                 = avctx;
308     h->backup_width          = -1;
309     h->backup_height         = -1;
310     h->backup_pix_fmt        = AV_PIX_FMT_NONE;
311     h->current_sps_id        = -1;
312     h->cur_chroma_format_idc = -1;
313
314     h->picture_structure     = PICT_FRAME;
315     h->slice_context_count   = 1;
316     h->workaround_bugs       = avctx->workaround_bugs;
317     h->flags                 = avctx->flags;
318     h->poc.prev_poc_msb      = 1 << 16;
319     h->recovery_frame        = -1;
320     h->frame_recovered       = 0;
321     h->poc.prev_frame_num    = -1;
322     h->sei.frame_packing.frame_packing_arrangement_cancel_flag = -1;
323     h->sei.unregistered.x264_build = -1;
324
325     h->next_outputed_poc = INT_MIN;
326     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
327         h->last_pocs[i] = INT_MIN;
328
329     ff_h264_sei_uninit(&h->sei);
330
331     avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
332
333     h->nb_slice_ctx = (avctx->active_thread_type & FF_THREAD_SLICE) ?  H264_MAX_THREADS : 1;
334     h->slice_ctx = av_mallocz_array(h->nb_slice_ctx, sizeof(*h->slice_ctx));
335     if (!h->slice_ctx) {
336         h->nb_slice_ctx = 0;
337         return AVERROR(ENOMEM);
338     }
339
340     for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
341         h->DPB[i].f = av_frame_alloc();
342         if (!h->DPB[i].f)
343             return AVERROR(ENOMEM);
344     }
345
346     h->cur_pic.f = av_frame_alloc();
347     if (!h->cur_pic.f)
348         return AVERROR(ENOMEM);
349
350     h->last_pic_for_ec.f = av_frame_alloc();
351     if (!h->last_pic_for_ec.f)
352         return AVERROR(ENOMEM);
353
354     for (i = 0; i < h->nb_slice_ctx; i++)
355         h->slice_ctx[i].h264 = h;
356
357     return 0;
358 }
359
360 static av_cold int h264_decode_end(AVCodecContext *avctx)
361 {
362     H264Context *h = avctx->priv_data;
363     int i;
364
365     ff_h264_remove_all_refs(h);
366     ff_h264_free_tables(h);
367
368     for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
369         ff_h264_unref_picture(h, &h->DPB[i]);
370         av_frame_free(&h->DPB[i].f);
371     }
372     memset(h->delayed_pic, 0, sizeof(h->delayed_pic));
373
374     h->cur_pic_ptr = NULL;
375
376     av_freep(&h->slice_ctx);
377     h->nb_slice_ctx = 0;
378
379     ff_h264_sei_uninit(&h->sei);
380
381     for (i = 0; i < MAX_SPS_COUNT; i++)
382         av_buffer_unref(&h->ps.sps_list[i]);
383
384     for (i = 0; i < MAX_PPS_COUNT; i++)
385         av_buffer_unref(&h->ps.pps_list[i]);
386
387     av_buffer_unref(&h->ps.sps_ref);
388     av_buffer_unref(&h->ps.pps_ref);
389
390     ff_h2645_packet_uninit(&h->pkt);
391
392     ff_h264_unref_picture(h, &h->cur_pic);
393     av_frame_free(&h->cur_pic.f);
394     ff_h264_unref_picture(h, &h->last_pic_for_ec);
395     av_frame_free(&h->last_pic_for_ec.f);
396
397     return 0;
398 }
399
400 static AVOnce h264_vlc_init = AV_ONCE_INIT;
401
402 av_cold int ff_h264_decode_init(AVCodecContext *avctx)
403 {
404     H264Context *h = avctx->priv_data;
405     int ret;
406
407     ret = h264_init_context(avctx, h);
408     if (ret < 0)
409         return ret;
410
411     ret = ff_thread_once(&h264_vlc_init, ff_h264_decode_init_vlc);
412     if (ret != 0) {
413         av_log(avctx, AV_LOG_ERROR, "pthread_once has failed.");
414         return AVERROR_UNKNOWN;
415     }
416
417     if (avctx->codec_id == AV_CODEC_ID_H264) {
418         if (avctx->ticks_per_frame == 1) {
419             if(h->avctx->time_base.den < INT_MAX/2) {
420                 h->avctx->time_base.den *= 2;
421             } else
422                 h->avctx->time_base.num /= 2;
423         }
424         avctx->ticks_per_frame = 2;
425     }
426
427     if (avctx->extradata_size > 0 && avctx->extradata) {
428         ret = ff_h264_decode_extradata(avctx->extradata, avctx->extradata_size,
429                                        &h->ps, &h->is_avc, &h->nal_length_size,
430                                        avctx->err_recognition, avctx);
431         if (ret < 0) {
432             h264_decode_end(avctx);
433             return ret;
434         }
435     }
436
437     if (h->ps.sps && h->ps.sps->bitstream_restriction_flag &&
438         h->avctx->has_b_frames < h->ps.sps->num_reorder_frames) {
439         h->avctx->has_b_frames = h->ps.sps->num_reorder_frames;
440     }
441
442     avctx->internal->allocate_progress = 1;
443
444     ff_h264_flush_change(h);
445
446     if (h->enable_er < 0 && (avctx->active_thread_type & FF_THREAD_SLICE))
447         h->enable_er = 0;
448
449     if (h->enable_er && (avctx->active_thread_type & FF_THREAD_SLICE)) {
450         av_log(avctx, AV_LOG_WARNING,
451                "Error resilience with slice threads is enabled. It is unsafe and unsupported and may crash. "
452                "Use it at your own risk\n");
453     }
454
455     return 0;
456 }
457
458 #if HAVE_THREADS
459 static int decode_init_thread_copy(AVCodecContext *avctx)
460 {
461     H264Context *h = avctx->priv_data;
462     int ret;
463
464     if (!avctx->internal->is_copy)
465         return 0;
466
467     memset(h, 0, sizeof(*h));
468
469     ret = h264_init_context(avctx, h);
470     if (ret < 0)
471         return ret;
472
473     h->context_initialized = 0;
474
475     return 0;
476 }
477 #endif
478
479 /**
480  * Run setup operations that must be run after slice header decoding.
481  * This includes finding the next displayed frame.
482  *
483  * @param h h264 master context
484  * @param setup_finished enough NALs have been read that we can call
485  * ff_thread_finish_setup()
486  */
487 static void decode_postinit(H264Context *h, int setup_finished)
488 {
489     const SPS *sps = h->ps.sps;
490     H264Picture *out = h->cur_pic_ptr;
491     H264Picture *cur = h->cur_pic_ptr;
492     int i, pics, out_of_order, out_idx;
493
494     if (h->next_output_pic)
495         return;
496
497     if (cur->field_poc[0] == INT_MAX || cur->field_poc[1] == INT_MAX) {
498         /* FIXME: if we have two PAFF fields in one packet, we can't start
499          * the next thread here. If we have one field per packet, we can.
500          * The check in decode_nal_units() is not good enough to find this
501          * yet, so we assume the worst for now. */
502         // if (setup_finished)
503         //    ff_thread_finish_setup(h->avctx);
504         if (cur->field_poc[0] == INT_MAX && cur->field_poc[1] == INT_MAX)
505             return;
506         if (h->avctx->hwaccel || h->missing_fields <=1)
507             return;
508     }
509
510     cur->f->interlaced_frame = 0;
511     cur->f->repeat_pict      = 0;
512
513     /* Signal interlacing information externally. */
514     /* Prioritize picture timing SEI information over used
515      * decoding process if it exists. */
516
517     if (sps->pic_struct_present_flag) {
518         H264SEIPictureTiming *pt = &h->sei.picture_timing;
519         switch (pt->pic_struct) {
520         case SEI_PIC_STRUCT_FRAME:
521             break;
522         case SEI_PIC_STRUCT_TOP_FIELD:
523         case SEI_PIC_STRUCT_BOTTOM_FIELD:
524             cur->f->interlaced_frame = 1;
525             break;
526         case SEI_PIC_STRUCT_TOP_BOTTOM:
527         case SEI_PIC_STRUCT_BOTTOM_TOP:
528             if (FIELD_OR_MBAFF_PICTURE(h))
529                 cur->f->interlaced_frame = 1;
530             else
531                 // try to flag soft telecine progressive
532                 cur->f->interlaced_frame = h->prev_interlaced_frame;
533             break;
534         case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
535         case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
536             /* Signal the possibility of telecined film externally
537              * (pic_struct 5,6). From these hints, let the applications
538              * decide if they apply deinterlacing. */
539             cur->f->repeat_pict = 1;
540             break;
541         case SEI_PIC_STRUCT_FRAME_DOUBLING:
542             cur->f->repeat_pict = 2;
543             break;
544         case SEI_PIC_STRUCT_FRAME_TRIPLING:
545             cur->f->repeat_pict = 4;
546             break;
547         }
548
549         if ((pt->ct_type & 3) &&
550             pt->pic_struct <= SEI_PIC_STRUCT_BOTTOM_TOP)
551             cur->f->interlaced_frame = (pt->ct_type & (1 << 1)) != 0;
552     } else {
553         /* Derive interlacing flag from used decoding process. */
554         cur->f->interlaced_frame = FIELD_OR_MBAFF_PICTURE(h);
555     }
556     h->prev_interlaced_frame = cur->f->interlaced_frame;
557
558     if (cur->field_poc[0] != cur->field_poc[1]) {
559         /* Derive top_field_first from field pocs. */
560         cur->f->top_field_first = cur->field_poc[0] < cur->field_poc[1];
561     } else {
562         if (sps->pic_struct_present_flag) {
563             /* Use picture timing SEI information. Even if it is a
564              * information of a past frame, better than nothing. */
565             if (h->sei.picture_timing.pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM ||
566                 h->sei.picture_timing.pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM_TOP)
567                 cur->f->top_field_first = 1;
568             else
569                 cur->f->top_field_first = 0;
570         } else if (cur->f->interlaced_frame) {
571             /* Default to top field first when pic_struct_present_flag
572              * is not set but interlaced frame detected */
573             cur->f->top_field_first = 1;
574         } else {
575             /* Most likely progressive */
576             cur->f->top_field_first = 0;
577         }
578     }
579
580     if (h->sei.frame_packing.present &&
581         h->sei.frame_packing.frame_packing_arrangement_type <= 6 &&
582         h->sei.frame_packing.content_interpretation_type > 0 &&
583         h->sei.frame_packing.content_interpretation_type < 3) {
584         H264SEIFramePacking *fp = &h->sei.frame_packing;
585         AVStereo3D *stereo = av_stereo3d_create_side_data(cur->f);
586         if (stereo) {
587         switch (fp->frame_packing_arrangement_type) {
588         case 0:
589             stereo->type = AV_STEREO3D_CHECKERBOARD;
590             break;
591         case 1:
592             stereo->type = AV_STEREO3D_COLUMNS;
593             break;
594         case 2:
595             stereo->type = AV_STEREO3D_LINES;
596             break;
597         case 3:
598             if (fp->quincunx_sampling_flag)
599                 stereo->type = AV_STEREO3D_SIDEBYSIDE_QUINCUNX;
600             else
601                 stereo->type = AV_STEREO3D_SIDEBYSIDE;
602             break;
603         case 4:
604             stereo->type = AV_STEREO3D_TOPBOTTOM;
605             break;
606         case 5:
607             stereo->type = AV_STEREO3D_FRAMESEQUENCE;
608             break;
609         case 6:
610             stereo->type = AV_STEREO3D_2D;
611             break;
612         }
613
614         if (fp->content_interpretation_type == 2)
615             stereo->flags = AV_STEREO3D_FLAG_INVERT;
616         }
617     }
618
619     if (h->sei.display_orientation.present &&
620         (h->sei.display_orientation.anticlockwise_rotation ||
621          h->sei.display_orientation.hflip ||
622          h->sei.display_orientation.vflip)) {
623         H264SEIDisplayOrientation *o = &h->sei.display_orientation;
624         double angle = o->anticlockwise_rotation * 360 / (double) (1 << 16);
625         AVFrameSideData *rotation = av_frame_new_side_data(cur->f,
626                                                            AV_FRAME_DATA_DISPLAYMATRIX,
627                                                            sizeof(int32_t) * 9);
628         if (rotation) {
629             av_display_rotation_set((int32_t *)rotation->data, angle);
630             av_display_matrix_flip((int32_t *)rotation->data,
631                                    o->hflip, o->vflip);
632         }
633     }
634
635     if (h->sei.afd.present) {
636         AVFrameSideData *sd = av_frame_new_side_data(cur->f, AV_FRAME_DATA_AFD,
637                                                      sizeof(uint8_t));
638
639         if (sd) {
640             *sd->data = h->sei.afd.active_format_description;
641             h->sei.afd.present = 0;
642         }
643     }
644
645     if (h->sei.a53_caption.a53_caption) {
646         H264SEIA53Caption *a53 = &h->sei.a53_caption;
647         AVFrameSideData *sd = av_frame_new_side_data(cur->f,
648                                                      AV_FRAME_DATA_A53_CC,
649                                                      a53->a53_caption_size);
650         if (sd)
651             memcpy(sd->data, a53->a53_caption, a53->a53_caption_size);
652         av_freep(&a53->a53_caption);
653         a53->a53_caption_size = 0;
654         h->avctx->properties |= FF_CODEC_PROPERTY_CLOSED_CAPTIONS;
655     }
656
657     cur->mmco_reset = h->mmco_reset;
658     h->mmco_reset = 0;
659
660     // FIXME do something with unavailable reference frames
661
662     /* Sort B-frames into display order */
663     if (sps->bitstream_restriction_flag ||
664         h->avctx->strict_std_compliance >= FF_COMPLIANCE_STRICT) {
665         h->avctx->has_b_frames = FFMAX(h->avctx->has_b_frames, sps->num_reorder_frames);
666     }
667
668     for (i = 0; 1; i++) {
669         if(i == MAX_DELAYED_PIC_COUNT || cur->poc < h->last_pocs[i]){
670             if(i)
671                 h->last_pocs[i-1] = cur->poc;
672             break;
673         } else if(i) {
674             h->last_pocs[i-1]= h->last_pocs[i];
675         }
676     }
677     out_of_order = MAX_DELAYED_PIC_COUNT - i;
678     if(   cur->f->pict_type == AV_PICTURE_TYPE_B
679        || (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))
680         out_of_order = FFMAX(out_of_order, 1);
681     if (out_of_order == MAX_DELAYED_PIC_COUNT) {
682         av_log(h->avctx, AV_LOG_VERBOSE, "Invalid POC %d<%d\n", cur->poc, h->last_pocs[0]);
683         for (i = 1; i < MAX_DELAYED_PIC_COUNT; i++)
684             h->last_pocs[i] = INT_MIN;
685         h->last_pocs[0] = cur->poc;
686         cur->mmco_reset = 1;
687     } else if(h->avctx->has_b_frames < out_of_order && !sps->bitstream_restriction_flag){
688         av_log(h->avctx, AV_LOG_INFO, "Increasing reorder buffer to %d\n", out_of_order);
689         h->avctx->has_b_frames = out_of_order;
690     }
691
692     pics = 0;
693     while (h->delayed_pic[pics])
694         pics++;
695
696     av_assert0(pics <= MAX_DELAYED_PIC_COUNT);
697
698     h->delayed_pic[pics++] = cur;
699     if (cur->reference == 0)
700         cur->reference = DELAYED_PIC_REF;
701
702     out     = h->delayed_pic[0];
703     out_idx = 0;
704     for (i = 1; h->delayed_pic[i] &&
705                 !h->delayed_pic[i]->f->key_frame &&
706                 !h->delayed_pic[i]->mmco_reset;
707          i++)
708         if (h->delayed_pic[i]->poc < out->poc) {
709             out     = h->delayed_pic[i];
710             out_idx = i;
711         }
712     if (h->avctx->has_b_frames == 0 &&
713         (h->delayed_pic[0]->f->key_frame || h->delayed_pic[0]->mmco_reset))
714         h->next_outputed_poc = INT_MIN;
715     out_of_order = out->poc < h->next_outputed_poc;
716
717     if (out_of_order || pics > h->avctx->has_b_frames) {
718         out->reference &= ~DELAYED_PIC_REF;
719         for (i = out_idx; h->delayed_pic[i]; i++)
720             h->delayed_pic[i] = h->delayed_pic[i + 1];
721     }
722     if (!out_of_order && pics > h->avctx->has_b_frames) {
723         h->next_output_pic = out;
724         if (out_idx == 0 && h->delayed_pic[0] && (h->delayed_pic[0]->f->key_frame || h->delayed_pic[0]->mmco_reset)) {
725             h->next_outputed_poc = INT_MIN;
726         } else
727             h->next_outputed_poc = out->poc;
728     } else {
729         av_log(h->avctx, AV_LOG_DEBUG, "no picture %s\n", out_of_order ? "ooo" : "");
730     }
731
732     if (h->next_output_pic) {
733         if (h->next_output_pic->recovered) {
734             // We have reached an recovery point and all frames after it in
735             // display order are "recovered".
736             h->frame_recovered |= FRAME_RECOVERED_SEI;
737         }
738         h->next_output_pic->recovered |= !!(h->frame_recovered & FRAME_RECOVERED_SEI);
739     }
740
741     if (setup_finished && !h->avctx->hwaccel) {
742         ff_thread_finish_setup(h->avctx);
743
744         if (h->avctx->active_thread_type & FF_THREAD_FRAME)
745             h->setup_finished = 1;
746     }
747 }
748
749 /**
750  * instantaneous decoder refresh.
751  */
752 static void idr(H264Context *h)
753 {
754     int i;
755     ff_h264_remove_all_refs(h);
756     h->poc.prev_frame_num        =
757     h->poc.prev_frame_num_offset = 0;
758     h->poc.prev_poc_msb          = 1<<16;
759     h->poc.prev_poc_lsb          = 0;
760     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
761         h->last_pocs[i] = INT_MIN;
762 }
763
764 /* forget old pics after a seek */
765 void ff_h264_flush_change(H264Context *h)
766 {
767     int i, j;
768
769     h->next_outputed_poc = INT_MIN;
770     h->prev_interlaced_frame = 1;
771     idr(h);
772
773     h->poc.prev_frame_num = -1;
774     if (h->cur_pic_ptr) {
775         h->cur_pic_ptr->reference = 0;
776         for (j=i=0; h->delayed_pic[i]; i++)
777             if (h->delayed_pic[i] != h->cur_pic_ptr)
778                 h->delayed_pic[j++] = h->delayed_pic[i];
779         h->delayed_pic[j] = NULL;
780     }
781     ff_h264_unref_picture(h, &h->last_pic_for_ec);
782
783     h->first_field = 0;
784     ff_h264_sei_uninit(&h->sei);
785     h->recovery_frame = -1;
786     h->frame_recovered = 0;
787     h->current_slice = 0;
788     h->mmco_reset = 1;
789     for (i = 0; i < h->nb_slice_ctx; i++)
790         h->slice_ctx[i].list_count = 0;
791 }
792
793 /* forget old pics after a seek */
794 static void flush_dpb(AVCodecContext *avctx)
795 {
796     H264Context *h = avctx->priv_data;
797     int i;
798
799     memset(h->delayed_pic, 0, sizeof(h->delayed_pic));
800
801     ff_h264_flush_change(h);
802
803     for (i = 0; i < H264_MAX_PICTURE_COUNT; i++)
804         ff_h264_unref_picture(h, &h->DPB[i]);
805     h->cur_pic_ptr = NULL;
806     ff_h264_unref_picture(h, &h->cur_pic);
807
808     h->mb_y = 0;
809
810     ff_h264_free_tables(h);
811     h->context_initialized = 0;
812 }
813
814 #if FF_API_CAP_VDPAU
815 static const uint8_t start_code[] = { 0x00, 0x00, 0x01 };
816 #endif
817
818 static int get_last_needed_nal(H264Context *h)
819 {
820     int nals_needed = 0;
821     int first_slice = 0;
822     int i;
823     int ret;
824
825     for (i = 0; i < h->pkt.nb_nals; i++) {
826         H2645NAL *nal = &h->pkt.nals[i];
827         GetBitContext gb;
828
829         /* packets can sometimes contain multiple PPS/SPS,
830          * e.g. two PAFF field pictures in one packet, or a demuxer
831          * which splits NALs strangely if so, when frame threading we
832          * can't start the next thread until we've read all of them */
833         switch (nal->type) {
834         case NAL_SPS:
835         case NAL_PPS:
836             nals_needed = i;
837             break;
838         case NAL_DPA:
839         case NAL_IDR_SLICE:
840         case NAL_SLICE:
841             ret = init_get_bits8(&gb, nal->data + 1, (nal->size - 1));
842             if (ret < 0)
843                 return ret;
844             if (!get_ue_golomb_long(&gb) ||  // first_mb_in_slice
845                 !first_slice ||
846                 first_slice != nal->type)
847                 nals_needed = i;
848             if (!first_slice)
849                 first_slice = nal->type;
850         }
851     }
852
853     return nals_needed;
854 }
855
856 static void debug_green_metadata(const H264SEIGreenMetaData *gm, void *logctx)
857 {
858     av_log(logctx, AV_LOG_DEBUG, "Green Metadata Info SEI message\n");
859     av_log(logctx, AV_LOG_DEBUG, "  green_metadata_type: %d\n", gm->green_metadata_type);
860
861     if (gm->green_metadata_type == 0) {
862         av_log(logctx, AV_LOG_DEBUG, "  green_metadata_period_type: %d\n", gm->period_type);
863
864         if (gm->period_type == 2)
865             av_log(logctx, AV_LOG_DEBUG, "  green_metadata_num_seconds: %d\n", gm->num_seconds);
866         else if (gm->period_type == 3)
867             av_log(logctx, AV_LOG_DEBUG, "  green_metadata_num_pictures: %d\n", gm->num_pictures);
868
869         av_log(logctx, AV_LOG_DEBUG, "  SEI GREEN Complexity Metrics: %f %f %f %f\n",
870                (float)gm->percent_non_zero_macroblocks/255,
871                (float)gm->percent_intra_coded_macroblocks/255,
872                (float)gm->percent_six_tap_filtering/255,
873                (float)gm->percent_alpha_point_deblocking_instance/255);
874
875     } else if (gm->green_metadata_type == 1) {
876         av_log(logctx, AV_LOG_DEBUG, "  xsd_metric_type: %d\n", gm->xsd_metric_type);
877
878         if (gm->xsd_metric_type == 0)
879             av_log(logctx, AV_LOG_DEBUG, "  xsd_metric_value: %f\n",
880                    (float)gm->xsd_metric_value/100);
881     }
882 }
883
884 static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size)
885 {
886     AVCodecContext *const avctx = h->avctx;
887     unsigned context_count = 0;
888     int nals_needed = 0; ///< number of NALs that need decoding before the next frame thread starts
889     int idr_cleared=0;
890     int i, ret = 0;
891
892     h->nal_unit_type= 0;
893
894     if(!h->slice_context_count)
895          h->slice_context_count= 1;
896     h->max_contexts = h->slice_context_count;
897     if (!(avctx->flags2 & AV_CODEC_FLAG2_CHUNKS)) {
898         h->current_slice = 0;
899         if (!h->first_field)
900             h->cur_pic_ptr = NULL;
901         ff_h264_sei_uninit(&h->sei);
902     }
903
904     if (h->nal_length_size == 4) {
905         if (buf_size > 8 && AV_RB32(buf) == 1 && AV_RB32(buf+5) > (unsigned)buf_size) {
906             h->is_avc = 0;
907         }else if(buf_size > 3 && AV_RB32(buf) > 1 && AV_RB32(buf) <= (unsigned)buf_size)
908             h->is_avc = 1;
909     }
910
911     ret = ff_h2645_packet_split(&h->pkt, buf, buf_size, avctx, h->is_avc,
912                                 h->nal_length_size, avctx->codec_id);
913     if (ret < 0) {
914         av_log(avctx, AV_LOG_ERROR,
915                "Error splitting the input into NAL units.\n");
916         return ret;
917     }
918
919     if (avctx->active_thread_type & FF_THREAD_FRAME)
920         nals_needed = get_last_needed_nal(h);
921     if (nals_needed < 0)
922         return nals_needed;
923
924     for (i = 0; i < h->pkt.nb_nals; i++) {
925         H2645NAL *nal = &h->pkt.nals[i];
926         H264SliceContext *sl = &h->slice_ctx[context_count];
927         int err;
928
929         if (avctx->skip_frame >= AVDISCARD_NONREF &&
930             nal->ref_idc == 0 && nal->type != NAL_SEI)
931             continue;
932
933 again:
934         // FIXME these should stop being context-global variables
935         h->nal_ref_idc   = nal->ref_idc;
936         h->nal_unit_type = nal->type;
937
938         err = 0;
939         switch (nal->type) {
940         case NAL_IDR_SLICE:
941             if ((nal->data[1] & 0xFC) == 0x98) {
942                 av_log(h->avctx, AV_LOG_ERROR, "Invalid inter IDR frame\n");
943                 h->next_outputed_poc = INT_MIN;
944                 ret = -1;
945                 goto end;
946             }
947             if (nal->type != NAL_IDR_SLICE) {
948                 av_log(h->avctx, AV_LOG_ERROR,
949                        "Invalid mix of idr and non-idr slices\n");
950                 ret = -1;
951                 goto end;
952             }
953             if(!idr_cleared) {
954                 if (h->current_slice && (avctx->active_thread_type & FF_THREAD_SLICE)) {
955                     av_log(h, AV_LOG_ERROR, "invalid mixed IDR / non IDR frames cannot be decoded in slice multithreading mode\n");
956                     ret = AVERROR_INVALIDDATA;
957                     goto end;
958                 }
959                 idr(h); // FIXME ensure we don't lose some frames if there is reordering
960             }
961             idr_cleared = 1;
962             h->has_recovery_point = 1;
963         case NAL_SLICE:
964             sl->gb = nal->gb;
965             if (   nals_needed >= i
966                 || (!(avctx->active_thread_type & FF_THREAD_FRAME) && !context_count))
967                 h->au_pps_id = -1;
968
969             if ((err = ff_h264_decode_slice_header(h, sl)))
970                 break;
971
972             if (h->sei.recovery_point.recovery_frame_cnt >= 0) {
973                 const int sei_recovery_frame_cnt = h->sei.recovery_point.recovery_frame_cnt;
974
975                 if (h->poc.frame_num != sei_recovery_frame_cnt || sl->slice_type_nos != AV_PICTURE_TYPE_I)
976                     h->valid_recovery_point = 1;
977
978                 if (   h->recovery_frame < 0
979                     || av_mod_uintp2(h->recovery_frame - h->poc.frame_num, h->ps.sps->log2_max_frame_num) > sei_recovery_frame_cnt) {
980                     h->recovery_frame = av_mod_uintp2(h->poc.frame_num + sei_recovery_frame_cnt, h->ps.sps->log2_max_frame_num);
981
982                     if (!h->valid_recovery_point)
983                         h->recovery_frame = h->poc.frame_num;
984                 }
985             }
986
987             h->cur_pic_ptr->f->key_frame |= (nal->type == NAL_IDR_SLICE);
988
989             if (nal->type == NAL_IDR_SLICE ||
990                 (h->recovery_frame == h->poc.frame_num && nal->ref_idc)) {
991                 h->recovery_frame         = -1;
992                 h->cur_pic_ptr->recovered = 1;
993             }
994             // If we have an IDR, all frames after it in decoded order are
995             // "recovered".
996             if (nal->type == NAL_IDR_SLICE)
997                 h->frame_recovered |= FRAME_RECOVERED_IDR;
998 #if 1
999             h->cur_pic_ptr->recovered |= h->frame_recovered;
1000 #else
1001             h->cur_pic_ptr->recovered |= !!(h->frame_recovered & FRAME_RECOVERED_IDR);
1002 #endif
1003
1004             if (h->current_slice == 1) {
1005                 if (!(avctx->flags2 & AV_CODEC_FLAG2_CHUNKS))
1006                     decode_postinit(h, i >= nals_needed);
1007
1008                 if (h->avctx->hwaccel &&
1009                     (ret = h->avctx->hwaccel->start_frame(h->avctx, buf, buf_size)) < 0)
1010                     goto end;
1011 #if FF_API_CAP_VDPAU
1012                 if (CONFIG_H264_VDPAU_DECODER &&
1013                     h->avctx->codec->capabilities & AV_CODEC_CAP_HWACCEL_VDPAU)
1014                     ff_vdpau_h264_picture_start(h);
1015 #endif
1016             }
1017
1018             if (sl->redundant_pic_count == 0) {
1019                 if (avctx->hwaccel) {
1020                     ret = avctx->hwaccel->decode_slice(avctx,
1021                                                        nal->raw_data,
1022                                                        nal->raw_size);
1023                     if (ret < 0)
1024                         goto end;
1025 #if FF_API_CAP_VDPAU
1026                 } else if (CONFIG_H264_VDPAU_DECODER &&
1027                            h->avctx->codec->capabilities & AV_CODEC_CAP_HWACCEL_VDPAU) {
1028                     ff_vdpau_add_data_chunk(h->cur_pic_ptr->f->data[0],
1029                                             start_code,
1030                                             sizeof(start_code));
1031                     ff_vdpau_add_data_chunk(h->cur_pic_ptr->f->data[0],
1032                                             nal->raw_data,
1033                                             nal->raw_size);
1034 #endif
1035                 } else
1036                     context_count++;
1037             }
1038             break;
1039         case NAL_DPA:
1040         case NAL_DPB:
1041         case NAL_DPC:
1042             avpriv_request_sample(avctx, "data partitioning");
1043             break;
1044         case NAL_SEI:
1045             ret = ff_h264_sei_decode(&h->sei, &nal->gb, &h->ps, avctx);
1046             h->has_recovery_point = h->has_recovery_point || h->sei.recovery_point.recovery_frame_cnt != -1;
1047             if (avctx->debug & FF_DEBUG_GREEN_MD)
1048                 debug_green_metadata(&h->sei.green_metadata, h->avctx);
1049 #if FF_API_AFD
1050 FF_DISABLE_DEPRECATION_WARNINGS
1051             h->avctx->dtg_active_format = h->sei.afd.active_format_description;
1052 FF_ENABLE_DEPRECATION_WARNINGS
1053 #endif /* FF_API_AFD */
1054             if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1055                 goto end;
1056             break;
1057         case NAL_SPS: {
1058             GetBitContext tmp_gb = nal->gb;
1059             if (ff_h264_decode_seq_parameter_set(&tmp_gb, avctx, &h->ps, 0) >= 0)
1060                 break;
1061             av_log(h->avctx, AV_LOG_DEBUG,
1062                    "SPS decoding failure, trying again with the complete NAL\n");
1063             init_get_bits8(&tmp_gb, nal->raw_data + 1, nal->raw_size - 1);
1064             if (ff_h264_decode_seq_parameter_set(&tmp_gb, avctx, &h->ps, 0) >= 0)
1065                 break;
1066             ff_h264_decode_seq_parameter_set(&nal->gb, avctx, &h->ps, 1);
1067             break;
1068         }
1069         case NAL_PPS:
1070             ret = ff_h264_decode_picture_parameter_set(&nal->gb, avctx, &h->ps,
1071                                                        nal->size_bits);
1072             if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1073                 goto end;
1074             break;
1075         case NAL_AUD:
1076         case NAL_END_SEQUENCE:
1077         case NAL_END_STREAM:
1078         case NAL_FILLER_DATA:
1079         case NAL_SPS_EXT:
1080         case NAL_AUXILIARY_SLICE:
1081             break;
1082         case NAL_FF_IGNORE:
1083             break;
1084         default:
1085             av_log(avctx, AV_LOG_DEBUG, "Unknown NAL code: %d (%d bits)\n",
1086                    nal->type, nal->size_bits);
1087         }
1088
1089         if (context_count == h->max_contexts) {
1090             ret = ff_h264_execute_decode_slices(h, context_count);
1091             if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1092                 goto end;
1093             context_count = 0;
1094         }
1095
1096         if (err < 0 || err == SLICE_SKIPED) {
1097             if (err < 0)
1098                 av_log(h->avctx, AV_LOG_ERROR, "decode_slice_header error\n");
1099             sl->ref_count[0] = sl->ref_count[1] = sl->list_count = 0;
1100         } else if (err == SLICE_SINGLETHREAD) {
1101             if (context_count > 0) {
1102                 ret = ff_h264_execute_decode_slices(h, context_count);
1103                 if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1104                     goto end;
1105                 context_count = 0;
1106             }
1107             /* Slice could not be decoded in parallel mode, restart. */
1108             sl               = &h->slice_ctx[0];
1109             goto again;
1110         }
1111     }
1112     if (context_count) {
1113         ret = ff_h264_execute_decode_slices(h, context_count);
1114         if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1115             goto end;
1116     }
1117
1118     ret = 0;
1119 end:
1120
1121 #if CONFIG_ERROR_RESILIENCE
1122     /*
1123      * FIXME: Error handling code does not seem to support interlaced
1124      * when slices span multiple rows
1125      * The ff_er_add_slice calls don't work right for bottom
1126      * fields; they cause massive erroneous error concealing
1127      * Error marking covers both fields (top and bottom).
1128      * This causes a mismatched s->error_count
1129      * and a bad error table. Further, the error count goes to
1130      * INT_MAX when called for bottom field, because mb_y is
1131      * past end by one (callers fault) and resync_mb_y != 0
1132      * causes problems for the first MB line, too.
1133      */
1134     if (!FIELD_PICTURE(h) && h->current_slice &&
1135         h->ps.sps == (const SPS*)h->ps.sps_list[h->ps.pps->sps_id]->data &&
1136         h->enable_er) {
1137
1138         H264SliceContext *sl = h->slice_ctx;
1139         int use_last_pic = h->last_pic_for_ec.f->buf[0] && !sl->ref_count[0];
1140
1141         ff_h264_set_erpic(&sl->er.cur_pic, h->cur_pic_ptr);
1142
1143         if (use_last_pic) {
1144             ff_h264_set_erpic(&sl->er.last_pic, &h->last_pic_for_ec);
1145             sl->ref_list[0][0].parent = &h->last_pic_for_ec;
1146             memcpy(sl->ref_list[0][0].data, h->last_pic_for_ec.f->data, sizeof(sl->ref_list[0][0].data));
1147             memcpy(sl->ref_list[0][0].linesize, h->last_pic_for_ec.f->linesize, sizeof(sl->ref_list[0][0].linesize));
1148             sl->ref_list[0][0].reference = h->last_pic_for_ec.reference;
1149         } else if (sl->ref_count[0]) {
1150             ff_h264_set_erpic(&sl->er.last_pic, sl->ref_list[0][0].parent);
1151         } else
1152             ff_h264_set_erpic(&sl->er.last_pic, NULL);
1153
1154         if (sl->ref_count[1])
1155             ff_h264_set_erpic(&sl->er.next_pic, sl->ref_list[1][0].parent);
1156
1157         sl->er.ref_count = sl->ref_count[0];
1158
1159         ff_er_frame_end(&sl->er);
1160         if (use_last_pic)
1161             memset(&sl->ref_list[0][0], 0, sizeof(sl->ref_list[0][0]));
1162     }
1163 #endif /* CONFIG_ERROR_RESILIENCE */
1164     /* clean up */
1165     if (h->cur_pic_ptr && !h->droppable) {
1166         ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
1167                                   h->picture_structure == PICT_BOTTOM_FIELD);
1168     }
1169
1170     return (ret < 0) ? ret : buf_size;
1171 }
1172
1173 /**
1174  * Return the number of bytes consumed for building the current frame.
1175  */
1176 static int get_consumed_bytes(int pos, int buf_size)
1177 {
1178     if (pos == 0)
1179         pos = 1;        // avoid infinite loops (I doubt that is needed but...)
1180     if (pos + 10 > buf_size)
1181         pos = buf_size; // oops ;)
1182
1183     return pos;
1184 }
1185
1186 static int output_frame(H264Context *h, AVFrame *dst, H264Picture *srcp)
1187 {
1188     AVFrame *src = srcp->f;
1189     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(src->format);
1190     int i;
1191     int ret = av_frame_ref(dst, src);
1192     if (ret < 0)
1193         return ret;
1194
1195     av_dict_set(&dst->metadata, "stereo_mode", ff_h264_sei_stereo_mode(&h->sei.frame_packing), 0);
1196
1197     h->backup_width   = h->avctx->width;
1198     h->backup_height  = h->avctx->height;
1199     h->backup_pix_fmt = h->avctx->pix_fmt;
1200
1201     h->avctx->width   = dst->width;
1202     h->avctx->height  = dst->height;
1203     h->avctx->pix_fmt = dst->format;
1204
1205     if (srcp->sei_recovery_frame_cnt == 0)
1206         dst->key_frame = 1;
1207     if (!srcp->crop)
1208         return 0;
1209
1210     for (i = 0; i < desc->nb_components; i++) {
1211         int hshift = (i > 0) ? desc->log2_chroma_w : 0;
1212         int vshift = (i > 0) ? desc->log2_chroma_h : 0;
1213         int off    = ((srcp->crop_left >> hshift) << h->pixel_shift) +
1214                       (srcp->crop_top  >> vshift) * dst->linesize[i];
1215         dst->data[i] += off;
1216     }
1217     return 0;
1218 }
1219
1220 static int is_extra(const uint8_t *buf, int buf_size)
1221 {
1222     int cnt= buf[5]&0x1f;
1223     const uint8_t *p= buf+6;
1224     while(cnt--){
1225         int nalsize= AV_RB16(p) + 2;
1226         if(nalsize > buf_size - (p-buf) || (p[2] & 0x9F) != 7)
1227             return 0;
1228         p += nalsize;
1229     }
1230     cnt = *(p++);
1231     if(!cnt)
1232         return 0;
1233     while(cnt--){
1234         int nalsize= AV_RB16(p) + 2;
1235         if(nalsize > buf_size - (p-buf) || (p[2] & 0x9F) != 8)
1236             return 0;
1237         p += nalsize;
1238     }
1239     return 1;
1240 }
1241
1242 static int h264_decode_frame(AVCodecContext *avctx, void *data,
1243                              int *got_frame, AVPacket *avpkt)
1244 {
1245     const uint8_t *buf = avpkt->data;
1246     int buf_size       = avpkt->size;
1247     H264Context *h     = avctx->priv_data;
1248     AVFrame *pict      = data;
1249     int buf_index      = 0;
1250     H264Picture *out;
1251     int i, out_idx;
1252     int ret;
1253
1254     h->flags = avctx->flags;
1255     h->setup_finished = 0;
1256
1257     if (h->backup_width != -1) {
1258         avctx->width    = h->backup_width;
1259         h->backup_width = -1;
1260     }
1261     if (h->backup_height != -1) {
1262         avctx->height    = h->backup_height;
1263         h->backup_height = -1;
1264     }
1265     if (h->backup_pix_fmt != AV_PIX_FMT_NONE) {
1266         avctx->pix_fmt    = h->backup_pix_fmt;
1267         h->backup_pix_fmt = AV_PIX_FMT_NONE;
1268     }
1269
1270     ff_h264_unref_picture(h, &h->last_pic_for_ec);
1271
1272     /* end of stream, output what is still in the buffers */
1273     if (buf_size == 0) {
1274  out:
1275
1276         h->cur_pic_ptr = NULL;
1277         h->first_field = 0;
1278
1279         // FIXME factorize this with the output code below
1280         out     = h->delayed_pic[0];
1281         out_idx = 0;
1282         for (i = 1;
1283              h->delayed_pic[i] &&
1284              !h->delayed_pic[i]->f->key_frame &&
1285              !h->delayed_pic[i]->mmco_reset;
1286              i++)
1287             if (h->delayed_pic[i]->poc < out->poc) {
1288                 out     = h->delayed_pic[i];
1289                 out_idx = i;
1290             }
1291
1292         for (i = out_idx; h->delayed_pic[i]; i++)
1293             h->delayed_pic[i] = h->delayed_pic[i + 1];
1294
1295         if (out) {
1296             out->reference &= ~DELAYED_PIC_REF;
1297             ret = output_frame(h, pict, out);
1298             if (ret < 0)
1299                 return ret;
1300             *got_frame = 1;
1301         }
1302
1303         return buf_index;
1304     }
1305     if (h->is_avc && av_packet_get_side_data(avpkt, AV_PKT_DATA_NEW_EXTRADATA, NULL)) {
1306         int side_size;
1307         uint8_t *side = av_packet_get_side_data(avpkt, AV_PKT_DATA_NEW_EXTRADATA, &side_size);
1308         if (is_extra(side, side_size))
1309             ff_h264_decode_extradata(side, side_size,
1310                                      &h->ps, &h->is_avc, &h->nal_length_size,
1311                                      avctx->err_recognition, avctx);
1312     }
1313     if(h->is_avc && buf_size >= 9 && buf[0]==1 && buf[2]==0 && (buf[4]&0xFC)==0xFC && (buf[5]&0x1F) && buf[8]==0x67){
1314         if (is_extra(buf, buf_size))
1315             return ff_h264_decode_extradata(buf, buf_size,
1316                                             &h->ps, &h->is_avc, &h->nal_length_size,
1317                                             avctx->err_recognition, avctx);
1318     }
1319
1320     buf_index = decode_nal_units(h, buf, buf_size);
1321     if (buf_index < 0)
1322         return AVERROR_INVALIDDATA;
1323
1324     if (!h->cur_pic_ptr && h->nal_unit_type == NAL_END_SEQUENCE) {
1325         av_assert0(buf_index <= buf_size);
1326         goto out;
1327     }
1328
1329     if (!(avctx->flags2 & AV_CODEC_FLAG2_CHUNKS) && !h->cur_pic_ptr) {
1330         if (avctx->skip_frame >= AVDISCARD_NONREF ||
1331             buf_size >= 4 && !memcmp("Q264", buf, 4))
1332             return buf_size;
1333         av_log(avctx, AV_LOG_ERROR, "no frame!\n");
1334         return AVERROR_INVALIDDATA;
1335     }
1336
1337     if (!(avctx->flags2 & AV_CODEC_FLAG2_CHUNKS) ||
1338         (h->mb_y >= h->mb_height && h->mb_height)) {
1339         if (avctx->flags2 & AV_CODEC_FLAG2_CHUNKS)
1340             decode_postinit(h, 1);
1341
1342         if ((ret = ff_h264_field_end(h, &h->slice_ctx[0], 0)) < 0)
1343             return ret;
1344
1345         /* Wait for second field. */
1346         *got_frame = 0;
1347         if (h->next_output_pic && ((avctx->flags & AV_CODEC_FLAG_OUTPUT_CORRUPT) ||
1348                                    (avctx->flags2 & AV_CODEC_FLAG2_SHOW_ALL) ||
1349                                    h->next_output_pic->recovered)) {
1350             if (!h->next_output_pic->recovered)
1351                 h->next_output_pic->f->flags |= AV_FRAME_FLAG_CORRUPT;
1352
1353             if (!h->avctx->hwaccel &&
1354                  (h->next_output_pic->field_poc[0] == INT_MAX ||
1355                   h->next_output_pic->field_poc[1] == INT_MAX)
1356             ) {
1357                 int p;
1358                 AVFrame *f = h->next_output_pic->f;
1359                 int field = h->next_output_pic->field_poc[0] == INT_MAX;
1360                 uint8_t *dst_data[4];
1361                 int linesizes[4];
1362                 const uint8_t *src_data[4];
1363
1364                 av_log(h->avctx, AV_LOG_DEBUG, "Duplicating field %d to fill missing\n", field);
1365
1366                 for (p = 0; p<4; p++) {
1367                     dst_data[p] = f->data[p] + (field^1)*f->linesize[p];
1368                     src_data[p] = f->data[p] +  field   *f->linesize[p];
1369                     linesizes[p] = 2*f->linesize[p];
1370                 }
1371
1372                 av_image_copy(dst_data, linesizes, src_data, linesizes,
1373                               f->format, f->width, f->height>>1);
1374             }
1375
1376             ret = output_frame(h, pict, h->next_output_pic);
1377             if (ret < 0)
1378                 return ret;
1379             *got_frame = 1;
1380             if (CONFIG_MPEGVIDEO) {
1381                 ff_print_debug_info2(h->avctx, pict, NULL,
1382                                     h->next_output_pic->mb_type,
1383                                     h->next_output_pic->qscale_table,
1384                                     h->next_output_pic->motion_val,
1385                                     NULL,
1386                                     h->mb_width, h->mb_height, h->mb_stride, 1);
1387             }
1388         }
1389     }
1390
1391     av_assert0(pict->buf[0] || !*got_frame);
1392
1393     ff_h264_unref_picture(h, &h->last_pic_for_ec);
1394
1395     return get_consumed_bytes(buf_index, buf_size);
1396 }
1397
1398 #define OFFSET(x) offsetof(H264Context, x)
1399 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
1400 static const AVOption h264_options[] = {
1401     {"is_avc", "is avc", offsetof(H264Context, is_avc), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, 0},
1402     {"nal_length_size", "nal_length_size", offsetof(H264Context, nal_length_size), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 4, 0},
1403     { "enable_er", "Enable error resilience on damaged frames (unsafe)", OFFSET(enable_er), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VD },
1404     { NULL },
1405 };
1406
1407 static const AVClass h264_class = {
1408     .class_name = "H264 Decoder",
1409     .item_name  = av_default_item_name,
1410     .option     = h264_options,
1411     .version    = LIBAVUTIL_VERSION_INT,
1412 };
1413
1414 AVCodec ff_h264_decoder = {
1415     .name                  = "h264",
1416     .long_name             = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
1417     .type                  = AVMEDIA_TYPE_VIDEO,
1418     .id                    = AV_CODEC_ID_H264,
1419     .priv_data_size        = sizeof(H264Context),
1420     .init                  = ff_h264_decode_init,
1421     .close                 = h264_decode_end,
1422     .decode                = h264_decode_frame,
1423     .capabilities          = /*AV_CODEC_CAP_DRAW_HORIZ_BAND |*/ AV_CODEC_CAP_DR1 |
1424                              AV_CODEC_CAP_DELAY | AV_CODEC_CAP_SLICE_THREADS |
1425                              AV_CODEC_CAP_FRAME_THREADS,
1426     .caps_internal         = FF_CODEC_CAP_INIT_THREADSAFE,
1427     .flush                 = flush_dpb,
1428     .init_thread_copy      = ONLY_IF_THREADS_ENABLED(decode_init_thread_copy),
1429     .update_thread_context = ONLY_IF_THREADS_ENABLED(ff_h264_update_thread_context),
1430     .profiles              = NULL_IF_CONFIG_SMALL(ff_h264_profiles),
1431     .priv_class            = &h264_class,
1432 };
1433
1434 #if CONFIG_H264_VDPAU_DECODER && FF_API_VDPAU
1435 static const AVClass h264_vdpau_class = {
1436     .class_name = "H264 VDPAU Decoder",
1437     .item_name  = av_default_item_name,
1438     .option     = h264_options,
1439     .version    = LIBAVUTIL_VERSION_INT,
1440 };
1441
1442 AVCodec ff_h264_vdpau_decoder = {
1443     .name           = "h264_vdpau",
1444     .long_name      = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (VDPAU acceleration)"),
1445     .type           = AVMEDIA_TYPE_VIDEO,
1446     .id             = AV_CODEC_ID_H264,
1447     .priv_data_size = sizeof(H264Context),
1448     .init           = ff_h264_decode_init,
1449     .close          = h264_decode_end,
1450     .decode         = h264_decode_frame,
1451     .capabilities   = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY | AV_CODEC_CAP_HWACCEL_VDPAU,
1452     .flush          = flush_dpb,
1453     .pix_fmts       = (const enum AVPixelFormat[]) { AV_PIX_FMT_VDPAU_H264,
1454                                                      AV_PIX_FMT_NONE},
1455     .profiles       = NULL_IF_CONFIG_SMALL(ff_h264_profiles),
1456     .priv_class     = &h264_vdpau_class,
1457 };
1458 #endif