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