]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264dec.c
h264dec: make ff_h264_decode_init() static
[ffmpeg] / libavcodec / h264dec.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 Libav.
6  *
7  * Libav 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  * Libav 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 Libav; 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 / MPEG-4 part10 codec.
25  * @author Michael Niedermayer <michaelni@gmx.at>
26  */
27
28 #include "libavutil/display.h"
29 #include "libavutil/imgutils.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/stereo3d.h"
32 #include "libavutil/timer.h"
33 #include "internal.h"
34 #include "bytestream.h"
35 #include "cabac.h"
36 #include "cabac_functions.h"
37 #include "error_resilience.h"
38 #include "avcodec.h"
39 #include "h264.h"
40 #include "h264dec.h"
41 #include "h2645_parse.h"
42 #include "h264data.h"
43 #include "h264chroma.h"
44 #include "h264_mvpred.h"
45 #include "h264_ps.h"
46 #include "golomb.h"
47 #include "mathops.h"
48 #include "me_cmp.h"
49 #include "mpegutils.h"
50 #include "profiles.h"
51 #include "rectangle.h"
52 #include "thread.h"
53
54 #include <assert.h>
55
56 const uint16_t ff_h264_mb_sizes[4] = { 256, 384, 512, 768 };
57
58 static void h264_er_decode_mb(void *opaque, int ref, int mv_dir, int mv_type,
59                               int (*mv)[2][4][2],
60                               int mb_x, int mb_y, int mb_intra, int mb_skipped)
61 {
62     H264Context *h = opaque;
63     H264SliceContext *sl = &h->slice_ctx[0];
64
65     sl->mb_x = mb_x;
66     sl->mb_y = mb_y;
67     sl->mb_xy = mb_x + mb_y * h->mb_stride;
68     memset(sl->non_zero_count_cache, 0, sizeof(sl->non_zero_count_cache));
69     assert(ref >= 0);
70     /* FIXME: It is possible albeit uncommon that slice references
71      * differ between slices. We take the easy approach and ignore
72      * it for now. If this turns out to have any relevance in
73      * practice then correct remapping should be added. */
74     if (ref >= sl->ref_count[0])
75         ref = 0;
76     fill_rectangle(&h->cur_pic.ref_index[0][4 * sl->mb_xy],
77                    2, 2, 2, ref, 1);
78     fill_rectangle(&sl->ref_cache[0][scan8[0]], 4, 4, 8, ref, 1);
79     fill_rectangle(sl->mv_cache[0][scan8[0]], 4, 4, 8,
80                    pack16to32((*mv)[0][0][0], (*mv)[0][0][1]), 4);
81     assert(!FRAME_MBAFF(h));
82     ff_h264_hl_decode_mb(h, &h->slice_ctx[0]);
83 }
84
85 void ff_h264_draw_horiz_band(const H264Context *h, H264SliceContext *sl,
86                              int y, int height)
87 {
88     AVCodecContext *avctx = h->avctx;
89     const AVFrame   *src  = h->cur_pic.f;
90     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
91     int vshift = desc->log2_chroma_h;
92     const int field_pic = h->picture_structure != PICT_FRAME;
93     if (field_pic) {
94         height <<= 1;
95         y      <<= 1;
96     }
97
98     height = FFMIN(height, avctx->height - y);
99
100     if (field_pic && h->first_field && !(avctx->slice_flags & SLICE_FLAG_ALLOW_FIELD))
101         return;
102
103     if (avctx->draw_horiz_band) {
104         int offset[AV_NUM_DATA_POINTERS];
105         int i;
106
107         offset[0] = y * src->linesize[0];
108         offset[1] =
109         offset[2] = (y >> vshift) * src->linesize[1];
110         for (i = 3; i < AV_NUM_DATA_POINTERS; i++)
111             offset[i] = 0;
112
113         emms_c();
114
115         avctx->draw_horiz_band(avctx, src, offset,
116                                y, h->picture_structure, height);
117     }
118 }
119
120 void ff_h264_free_tables(H264Context *h)
121 {
122     int i;
123
124     av_freep(&h->intra4x4_pred_mode);
125     av_freep(&h->chroma_pred_mode_table);
126     av_freep(&h->cbp_table);
127     av_freep(&h->mvd_table[0]);
128     av_freep(&h->mvd_table[1]);
129     av_freep(&h->direct_table);
130     av_freep(&h->non_zero_count);
131     av_freep(&h->slice_table_base);
132     h->slice_table = NULL;
133     av_freep(&h->list_counts);
134
135     av_freep(&h->mb2b_xy);
136     av_freep(&h->mb2br_xy);
137
138     av_buffer_pool_uninit(&h->qscale_table_pool);
139     av_buffer_pool_uninit(&h->mb_type_pool);
140     av_buffer_pool_uninit(&h->motion_val_pool);
141     av_buffer_pool_uninit(&h->ref_index_pool);
142
143     for (i = 0; i < h->nb_slice_ctx; i++) {
144         H264SliceContext *sl = &h->slice_ctx[i];
145
146         av_freep(&sl->dc_val_base);
147         av_freep(&sl->er.mb_index2xy);
148         av_freep(&sl->er.error_status_table);
149         av_freep(&sl->er.er_temp_buffer);
150
151         av_freep(&sl->bipred_scratchpad);
152         av_freep(&sl->edge_emu_buffer);
153         av_freep(&sl->top_borders[0]);
154         av_freep(&sl->top_borders[1]);
155
156         sl->bipred_scratchpad_allocated = 0;
157         sl->edge_emu_buffer_allocated   = 0;
158         sl->top_borders_allocated[0]    = 0;
159         sl->top_borders_allocated[1]    = 0;
160     }
161 }
162
163 int ff_h264_alloc_tables(H264Context *h)
164 {
165     const int big_mb_num = h->mb_stride * (h->mb_height + 1);
166     const int row_mb_num = h->mb_stride * 2 * h->nb_slice_ctx;
167     int x, y;
168
169     FF_ALLOCZ_OR_GOTO(h->avctx, h->intra4x4_pred_mode,
170                       row_mb_num * 8 * sizeof(uint8_t), fail)
171     h->slice_ctx[0].intra4x4_pred_mode = h->intra4x4_pred_mode;
172
173     FF_ALLOCZ_OR_GOTO(h->avctx, h->non_zero_count,
174                       big_mb_num * 48 * sizeof(uint8_t), fail)
175     FF_ALLOCZ_OR_GOTO(h->avctx, h->slice_table_base,
176                       (big_mb_num + h->mb_stride) * sizeof(*h->slice_table_base), fail)
177     FF_ALLOCZ_OR_GOTO(h->avctx, h->cbp_table,
178                       big_mb_num * sizeof(uint16_t), fail)
179     FF_ALLOCZ_OR_GOTO(h->avctx, h->chroma_pred_mode_table,
180                       big_mb_num * sizeof(uint8_t), fail)
181     FF_ALLOCZ_OR_GOTO(h->avctx, h->mvd_table[0],
182                       16 * row_mb_num * sizeof(uint8_t), fail);
183     FF_ALLOCZ_OR_GOTO(h->avctx, h->mvd_table[1],
184                       16 * row_mb_num * sizeof(uint8_t), fail);
185     h->slice_ctx[0].mvd_table[0] = h->mvd_table[0];
186     h->slice_ctx[0].mvd_table[1] = h->mvd_table[1];
187
188     FF_ALLOCZ_OR_GOTO(h->avctx, h->direct_table,
189                       4 * big_mb_num * sizeof(uint8_t), fail);
190     FF_ALLOCZ_OR_GOTO(h->avctx, h->list_counts,
191                       big_mb_num * sizeof(uint8_t), fail)
192
193     memset(h->slice_table_base, -1,
194            (big_mb_num + h->mb_stride) * sizeof(*h->slice_table_base));
195     h->slice_table = h->slice_table_base + h->mb_stride * 2 + 1;
196
197     FF_ALLOCZ_OR_GOTO(h->avctx, h->mb2b_xy,
198                       big_mb_num * sizeof(uint32_t), fail);
199     FF_ALLOCZ_OR_GOTO(h->avctx, h->mb2br_xy,
200                       big_mb_num * sizeof(uint32_t), fail);
201     for (y = 0; y < h->mb_height; y++)
202         for (x = 0; x < h->mb_width; x++) {
203             const int mb_xy = x + y * h->mb_stride;
204             const int b_xy  = 4 * x + 4 * y * h->b_stride;
205
206             h->mb2b_xy[mb_xy]  = b_xy;
207             h->mb2br_xy[mb_xy] = 8 * (FMO ? mb_xy : (mb_xy % (2 * h->mb_stride)));
208         }
209
210     return 0;
211
212 fail:
213     ff_h264_free_tables(h);
214     return AVERROR(ENOMEM);
215 }
216
217 /**
218  * Init context
219  * Allocate buffers which are not shared amongst multiple threads.
220  */
221 int ff_h264_slice_context_init(H264Context *h, H264SliceContext *sl)
222 {
223     ERContext *er = &sl->er;
224     int mb_array_size = h->mb_height * h->mb_stride;
225     int y_size  = (2 * h->mb_width + 1) * (2 * h->mb_height + 1);
226     int c_size  = h->mb_stride * (h->mb_height + 1);
227     int yc_size = y_size + 2   * c_size;
228     int x, y, i;
229
230     sl->ref_cache[0][scan8[5]  + 1] =
231     sl->ref_cache[0][scan8[7]  + 1] =
232     sl->ref_cache[0][scan8[13] + 1] =
233     sl->ref_cache[1][scan8[5]  + 1] =
234     sl->ref_cache[1][scan8[7]  + 1] =
235     sl->ref_cache[1][scan8[13] + 1] = PART_NOT_AVAILABLE;
236
237     if (CONFIG_ERROR_RESILIENCE) {
238         /* init ER */
239         er->avctx          = h->avctx;
240         er->decode_mb      = h264_er_decode_mb;
241         er->opaque         = h;
242         er->quarter_sample = 1;
243
244         er->mb_num      = h->mb_num;
245         er->mb_width    = h->mb_width;
246         er->mb_height   = h->mb_height;
247         er->mb_stride   = h->mb_stride;
248         er->b8_stride   = h->mb_width * 2 + 1;
249
250         // error resilience code looks cleaner with this
251         FF_ALLOCZ_OR_GOTO(h->avctx, er->mb_index2xy,
252                           (h->mb_num + 1) * sizeof(int), fail);
253
254         for (y = 0; y < h->mb_height; y++)
255             for (x = 0; x < h->mb_width; x++)
256                 er->mb_index2xy[x + y * h->mb_width] = x + y * h->mb_stride;
257
258         er->mb_index2xy[h->mb_height * h->mb_width] = (h->mb_height - 1) *
259                                                       h->mb_stride + h->mb_width;
260
261         FF_ALLOCZ_OR_GOTO(h->avctx, er->error_status_table,
262                           mb_array_size * sizeof(uint8_t), fail);
263
264         FF_ALLOC_OR_GOTO(h->avctx, er->er_temp_buffer,
265                          h->mb_height * h->mb_stride, fail);
266
267         FF_ALLOCZ_OR_GOTO(h->avctx, sl->dc_val_base,
268                           yc_size * sizeof(int16_t), fail);
269         er->dc_val[0] = sl->dc_val_base + h->mb_width * 2 + 2;
270         er->dc_val[1] = sl->dc_val_base + y_size + h->mb_stride + 1;
271         er->dc_val[2] = er->dc_val[1] + c_size;
272         for (i = 0; i < yc_size; i++)
273             sl->dc_val_base[i] = 1024;
274     }
275
276     return 0;
277
278 fail:
279     return AVERROR(ENOMEM); // ff_h264_free_tables will clean up for us
280 }
281
282 static int h264_init_context(AVCodecContext *avctx, H264Context *h)
283 {
284     int i;
285
286     h->avctx                 = avctx;
287
288     h->picture_structure     = PICT_FRAME;
289     h->workaround_bugs       = avctx->workaround_bugs;
290     h->flags                 = avctx->flags;
291     h->poc.prev_poc_msb      = 1 << 16;
292     h->recovery_frame        = -1;
293     h->frame_recovered       = 0;
294
295     h->next_outputed_poc = INT_MIN;
296     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
297         h->last_pocs[i] = INT_MIN;
298
299     ff_h264_sei_uninit(&h->sei);
300
301     avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
302
303     h->nb_slice_ctx = (avctx->active_thread_type & FF_THREAD_SLICE) ? avctx->thread_count : 1;
304     h->slice_ctx = av_mallocz_array(h->nb_slice_ctx, sizeof(*h->slice_ctx));
305     if (!h->slice_ctx) {
306         h->nb_slice_ctx = 0;
307         return AVERROR(ENOMEM);
308     }
309
310     for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
311         h->DPB[i].f = av_frame_alloc();
312         if (!h->DPB[i].f)
313             return AVERROR(ENOMEM);
314     }
315
316     h->cur_pic.f = av_frame_alloc();
317     if (!h->cur_pic.f)
318         return AVERROR(ENOMEM);
319
320     h->output_frame = av_frame_alloc();
321     if (!h->output_frame)
322         return AVERROR(ENOMEM);
323
324     for (i = 0; i < h->nb_slice_ctx; i++)
325         h->slice_ctx[i].h264 = h;
326
327     return 0;
328 }
329
330 static av_cold int h264_decode_end(AVCodecContext *avctx)
331 {
332     H264Context *h = avctx->priv_data;
333     int i;
334
335     ff_h264_free_tables(h);
336
337     for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
338         ff_h264_unref_picture(h, &h->DPB[i]);
339         av_frame_free(&h->DPB[i].f);
340     }
341
342     h->cur_pic_ptr = NULL;
343
344     av_freep(&h->slice_ctx);
345     h->nb_slice_ctx = 0;
346
347     for (i = 0; i < MAX_SPS_COUNT; i++)
348         av_buffer_unref(&h->ps.sps_list[i]);
349
350     for (i = 0; i < MAX_PPS_COUNT; i++)
351         av_buffer_unref(&h->ps.pps_list[i]);
352
353     ff_h2645_packet_uninit(&h->pkt);
354
355     ff_h264_unref_picture(h, &h->cur_pic);
356     av_frame_free(&h->cur_pic.f);
357     av_frame_free(&h->output_frame);
358
359     return 0;
360 }
361
362 static AVOnce h264_vlc_init = AV_ONCE_INIT;
363
364 static av_cold int h264_decode_init(AVCodecContext *avctx)
365 {
366     H264Context *h = avctx->priv_data;
367     int ret;
368
369     ret = h264_init_context(avctx, h);
370     if (ret < 0)
371         return ret;
372
373     ret = ff_thread_once(&h264_vlc_init, ff_h264_decode_init_vlc);
374     if (ret != 0) {
375         av_log(avctx, AV_LOG_ERROR, "pthread_once has failed.");
376         return AVERROR_UNKNOWN;
377     }
378
379     if (avctx->ticks_per_frame == 1)
380         h->avctx->framerate.num *= 2;
381     avctx->ticks_per_frame = 2;
382
383     if (avctx->extradata_size > 0 && avctx->extradata) {
384        ret = ff_h264_decode_extradata(avctx->extradata, avctx->extradata_size,
385                                       &h->ps, &h->is_avc, &h->nal_length_size,
386                                       avctx->err_recognition, avctx);
387        if (ret < 0) {
388            h264_decode_end(avctx);
389            return ret;
390        }
391     }
392
393     if (h->ps.sps && h->ps.sps->bitstream_restriction_flag &&
394         h->avctx->has_b_frames < h->ps.sps->num_reorder_frames) {
395         h->avctx->has_b_frames = h->ps.sps->num_reorder_frames;
396     }
397
398     avctx->internal->allocate_progress = 1;
399
400     if (h->enable_er) {
401         av_log(avctx, AV_LOG_WARNING,
402                "Error resilience is enabled. It is unsafe and unsupported and may crash. "
403                "Use it at your own risk\n");
404     }
405
406     return 0;
407 }
408
409 static int decode_init_thread_copy(AVCodecContext *avctx)
410 {
411     H264Context *h = avctx->priv_data;
412     int ret;
413
414     if (!avctx->internal->is_copy)
415         return 0;
416
417     memset(h, 0, sizeof(*h));
418
419     ret = h264_init_context(avctx, h);
420     if (ret < 0)
421         return ret;
422
423     h->context_initialized = 0;
424
425     return 0;
426 }
427
428 /**
429  * instantaneous decoder refresh.
430  */
431 static void idr(H264Context *h)
432 {
433     ff_h264_remove_all_refs(h);
434     h->poc.prev_frame_num        =
435     h->poc.prev_frame_num_offset =
436     h->poc.prev_poc_msb          =
437     h->poc.prev_poc_lsb          = 0;
438 }
439
440 /* forget old pics after a seek */
441 void ff_h264_flush_change(H264Context *h)
442 {
443     int i;
444     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
445         h->last_pocs[i] = INT_MIN;
446     h->next_outputed_poc = INT_MIN;
447     h->prev_interlaced_frame = 1;
448     idr(h);
449     if (h->cur_pic_ptr)
450         h->cur_pic_ptr->reference = 0;
451     h->first_field = 0;
452     ff_h264_sei_uninit(&h->sei);
453     h->recovery_frame = -1;
454     h->frame_recovered = 0;
455 }
456
457 /* forget old pics after a seek */
458 static void flush_dpb(AVCodecContext *avctx)
459 {
460     H264Context *h = avctx->priv_data;
461     int i;
462
463     memset(h->delayed_pic, 0, sizeof(h->delayed_pic));
464
465     ff_h264_flush_change(h);
466
467     for (i = 0; i < H264_MAX_PICTURE_COUNT; i++)
468         ff_h264_unref_picture(h, &h->DPB[i]);
469     h->cur_pic_ptr = NULL;
470     ff_h264_unref_picture(h, &h->cur_pic);
471
472     h->mb_y = 0;
473
474     ff_h264_free_tables(h);
475     h->context_initialized = 0;
476 }
477
478 static int get_last_needed_nal(H264Context *h)
479 {
480     int nals_needed = 0;
481     int i, ret;
482
483     for (i = 0; i < h->pkt.nb_nals; i++) {
484         H2645NAL *nal = &h->pkt.nals[i];
485         GetBitContext gb;
486
487         /* packets can sometimes contain multiple PPS/SPS,
488          * e.g. two PAFF field pictures in one packet, or a demuxer
489          * which splits NALs strangely if so, when frame threading we
490          * can't start the next thread until we've read all of them */
491         switch (nal->type) {
492         case H264_NAL_SPS:
493         case H264_NAL_PPS:
494             nals_needed = i;
495             break;
496         case H264_NAL_DPA:
497         case H264_NAL_IDR_SLICE:
498         case H264_NAL_SLICE:
499             ret = init_get_bits8(&gb, nal->data + 1, nal->size - 1);
500             if (ret < 0) {
501                 av_log(h->avctx, AV_LOG_ERROR, "Invalid zero-sized VCL NAL unit\n");
502                 if (h->avctx->err_recognition & AV_EF_EXPLODE)
503                     return ret;
504
505                 break;
506             }
507             if (!get_ue_golomb(&gb))
508                 nals_needed = i;
509         }
510     }
511
512     return nals_needed;
513 }
514
515 static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size)
516 {
517     AVCodecContext *const avctx = h->avctx;
518     int nals_needed = 0; ///< number of NALs that need decoding before the next frame thread starts
519     int i, ret = 0;
520
521     if (!(avctx->flags2 & AV_CODEC_FLAG2_CHUNKS)) {
522         h->current_slice = 0;
523         if (!h->first_field)
524             h->cur_pic_ptr = NULL;
525         ff_h264_sei_uninit(&h->sei);
526     }
527
528     ret = ff_h2645_packet_split(&h->pkt, buf, buf_size, avctx, h->is_avc,
529                                 h->nal_length_size, avctx->codec_id);
530     if (ret < 0) {
531         av_log(avctx, AV_LOG_ERROR,
532                "Error splitting the input into NAL units.\n");
533
534         /* There are samples in the wild with mp4-style extradata, but Annex B
535          * data in the packets. If we fail parsing the packet as mp4, try it again
536          * as Annex B. */
537         if (h->is_avc && !(avctx->err_recognition & AV_EF_EXPLODE)) {
538             int err = ff_h2645_packet_split(&h->pkt, buf, buf_size, avctx, 0, 0,
539                                             avctx->codec_id);
540             if (err >= 0) {
541                 av_log(avctx, AV_LOG_WARNING,
542                        "The stream seems to contain AVCC extradata with Annex B "
543                        "formatted data, which is invalid.");
544                 h->is_avc = 0;
545                 ret       = 0;
546             }
547         }
548
549         if (ret < 0)
550             return ret;
551     }
552
553     if (avctx->active_thread_type & FF_THREAD_FRAME)
554         nals_needed = get_last_needed_nal(h);
555
556     for (i = 0; i < h->pkt.nb_nals; i++) {
557         H2645NAL *nal = &h->pkt.nals[i];
558         int max_slice_ctx, err;
559
560         if (avctx->skip_frame >= AVDISCARD_NONREF &&
561             nal->ref_idc == 0 && nal->type != H264_NAL_SEI)
562             continue;
563
564         // FIXME these should stop being context-global variables
565         h->nal_ref_idc   = nal->ref_idc;
566         h->nal_unit_type = nal->type;
567
568         err = 0;
569         switch (nal->type) {
570         case H264_NAL_IDR_SLICE:
571             idr(h); // FIXME ensure we don't lose some frames if there is reordering
572         case H264_NAL_SLICE:
573             if ((err = ff_h264_queue_decode_slice(h, nal)))
574                 break;
575
576             if (avctx->active_thread_type & FF_THREAD_FRAME &&
577                 i >= nals_needed && !h->setup_finished && h->cur_pic_ptr) {
578                 ff_thread_finish_setup(avctx);
579                 h->setup_finished = 1;
580             }
581
582             max_slice_ctx = avctx->hwaccel ? 1 : h->nb_slice_ctx;
583             if (h->nb_slice_ctx_queued == max_slice_ctx) {
584                 if (avctx->hwaccel) {
585                     ret = avctx->hwaccel->decode_slice(avctx, nal->raw_data, nal->raw_size);
586                     h->nb_slice_ctx_queued = 0;
587                 } else
588                     ret = ff_h264_execute_decode_slices(h);
589                 if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
590                     goto end;
591             }
592             break;
593         case H264_NAL_DPA:
594         case H264_NAL_DPB:
595         case H264_NAL_DPC:
596             avpriv_request_sample(avctx, "data partitioning");
597             ret = AVERROR(ENOSYS);
598             goto end;
599             break;
600         case H264_NAL_SEI:
601             ret = ff_h264_sei_decode(&h->sei, &nal->gb, &h->ps, avctx);
602             if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
603                 goto end;
604             break;
605         case H264_NAL_SPS:
606             ret = ff_h264_decode_seq_parameter_set(&nal->gb, avctx, &h->ps);
607             if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
608                 goto end;
609             break;
610         case H264_NAL_PPS:
611             ret = ff_h264_decode_picture_parameter_set(&nal->gb, avctx, &h->ps,
612                                                        nal->size_bits);
613             if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
614                 goto end;
615             break;
616         case H264_NAL_AUD:
617         case H264_NAL_END_SEQUENCE:
618         case H264_NAL_END_STREAM:
619         case H264_NAL_FILLER_DATA:
620         case H264_NAL_SPS_EXT:
621         case H264_NAL_AUXILIARY_SLICE:
622             break;
623         default:
624             av_log(avctx, AV_LOG_DEBUG, "Unknown NAL code: %d (%d bits)\n",
625                    nal->type, nal->size_bits);
626         }
627
628         if (err < 0) {
629             av_log(h->avctx, AV_LOG_ERROR, "decode_slice_header error\n");
630         }
631     }
632
633     ret = ff_h264_execute_decode_slices(h);
634     if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
635         goto end;
636
637     ret = 0;
638 end:
639     /* clean up */
640     if (h->cur_pic_ptr && !h->droppable) {
641         ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
642                                   h->picture_structure == PICT_BOTTOM_FIELD);
643     }
644
645     return (ret < 0) ? ret : buf_size;
646 }
647
648 /**
649  * Return the number of bytes consumed for building the current frame.
650  */
651 static int get_consumed_bytes(int pos, int buf_size)
652 {
653     if (pos == 0)
654         pos = 1;        // avoid infinite loops (I doubt that is needed but...)
655     if (pos + 10 > buf_size)
656         pos = buf_size; // oops ;)
657
658     return pos;
659 }
660
661 static int output_frame(H264Context *h, AVFrame *dst, AVFrame *src)
662 {
663     int i;
664     int ret = av_frame_ref(dst, src);
665     if (ret < 0)
666         return ret;
667
668     if (!h->ps.sps || !h->ps.sps->crop)
669         return 0;
670
671     for (i = 0; i < 3; i++) {
672         int hshift = (i > 0) ? h->chroma_x_shift : 0;
673         int vshift = (i > 0) ? h->chroma_y_shift : 0;
674         int off    = ((h->ps.sps->crop_left >> hshift) << h->pixel_shift) +
675                      (h->ps.sps->crop_top >> vshift) * dst->linesize[i];
676         dst->data[i] += off;
677     }
678     return 0;
679 }
680
681 static int h264_decode_frame(AVCodecContext *avctx, void *data,
682                              int *got_frame, AVPacket *avpkt)
683 {
684     const uint8_t *buf = avpkt->data;
685     int buf_size       = avpkt->size;
686     H264Context *h     = avctx->priv_data;
687     AVFrame *pict      = data;
688     int buf_index      = 0;
689     int ret;
690     const uint8_t *new_extradata;
691     int new_extradata_size;
692
693     h->flags = avctx->flags;
694     h->setup_finished = 0;
695     h->nb_slice_ctx_queued = 0;
696
697     /* end of stream, output what is still in the buffers */
698 out:
699     if (buf_size == 0) {
700         H264Picture *out;
701         int i, out_idx;
702
703         h->cur_pic_ptr = NULL;
704
705         // FIXME factorize this with the output code below
706         out     = h->delayed_pic[0];
707         out_idx = 0;
708         for (i = 1;
709              h->delayed_pic[i] &&
710              !h->delayed_pic[i]->f->key_frame &&
711              !h->delayed_pic[i]->mmco_reset;
712              i++)
713             if (h->delayed_pic[i]->poc < out->poc) {
714                 out     = h->delayed_pic[i];
715                 out_idx = i;
716             }
717
718         for (i = out_idx; h->delayed_pic[i]; i++)
719             h->delayed_pic[i] = h->delayed_pic[i + 1];
720
721         if (out) {
722             ret = output_frame(h, pict, out->f);
723             if (ret < 0)
724                 return ret;
725             *got_frame = 1;
726         }
727
728         return buf_index;
729     }
730
731     new_extradata_size = 0;
732     new_extradata = av_packet_get_side_data(avpkt, AV_PKT_DATA_NEW_EXTRADATA,
733                                             &new_extradata_size);
734     if (new_extradata_size > 0 && new_extradata) {
735         ret = ff_h264_decode_extradata(new_extradata, new_extradata_size,
736                                        &h->ps, &h->is_avc, &h->nal_length_size,
737                                        avctx->err_recognition, avctx);
738         if (ret < 0)
739             return ret;
740     }
741
742     buf_index = decode_nal_units(h, buf, buf_size);
743     if (buf_index < 0)
744         return AVERROR_INVALIDDATA;
745
746     if (!h->cur_pic_ptr && h->nal_unit_type == H264_NAL_END_SEQUENCE) {
747         buf_size = 0;
748         goto out;
749     }
750
751     if (!(avctx->flags2 & AV_CODEC_FLAG2_CHUNKS) && !h->cur_pic_ptr) {
752         if (avctx->skip_frame >= AVDISCARD_NONREF)
753             return 0;
754         av_log(avctx, AV_LOG_ERROR, "no frame!\n");
755         return AVERROR_INVALIDDATA;
756     }
757
758     if (!(avctx->flags2 & AV_CODEC_FLAG2_CHUNKS) ||
759         (h->mb_y >= h->mb_height && h->mb_height)) {
760         if (h->field_started)
761             ff_h264_field_end(h, &h->slice_ctx[0], 0);
762
763         *got_frame = 0;
764         if (h->output_frame->buf[0]) {
765             ret = output_frame(h, pict, h->output_frame) ;
766             av_frame_unref(h->output_frame);
767             if (ret < 0)
768                 return ret;
769             *got_frame = 1;
770         }
771     }
772
773     assert(pict->buf[0] || !*got_frame);
774
775     return get_consumed_bytes(buf_index, buf_size);
776 }
777
778 #define OFFSET(x) offsetof(H264Context, x)
779 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
780 static const AVOption h264_options[] = {
781     { "enable_er", "Enable error resilience on damaged frames (unsafe)", OFFSET(enable_er), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VD },
782     { NULL },
783 };
784
785 static const AVClass h264_class = {
786     .class_name = "h264",
787     .item_name  = av_default_item_name,
788     .option     = h264_options,
789     .version    = LIBAVUTIL_VERSION_INT,
790 };
791
792 AVCodec ff_h264_decoder = {
793     .name                  = "h264",
794     .long_name             = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
795     .type                  = AVMEDIA_TYPE_VIDEO,
796     .id                    = AV_CODEC_ID_H264,
797     .priv_data_size        = sizeof(H264Context),
798     .init                  = h264_decode_init,
799     .close                 = h264_decode_end,
800     .decode                = h264_decode_frame,
801     .capabilities          = /*AV_CODEC_CAP_DRAW_HORIZ_BAND |*/ AV_CODEC_CAP_DR1 |
802                              AV_CODEC_CAP_DELAY | AV_CODEC_CAP_SLICE_THREADS |
803                              AV_CODEC_CAP_FRAME_THREADS,
804     .caps_internal         = FF_CODEC_CAP_INIT_THREADSAFE,
805     .flush                 = flush_dpb,
806     .init_thread_copy      = ONLY_IF_THREADS_ENABLED(decode_init_thread_copy),
807     .update_thread_context = ONLY_IF_THREADS_ENABLED(ff_h264_update_thread_context),
808     .profiles              = NULL_IF_CONFIG_SMALL(ff_h264_profiles),
809     .priv_class            = &h264_class,
810 };