2 * H.26L/H.264/AVC/JVT/14496-10/... decoder
3 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
5 * This file is part of FFmpeg.
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.
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.
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
24 * H.264 / AVC / MPEG-4 part10 codec.
25 * @author Michael Niedermayer <michaelni@gmx.at>
28 #include "libavutil/avassert.h"
29 #include "libavutil/imgutils.h"
30 #include "libavutil/timer.h"
33 #include "cabac_functions.h"
34 #include "error_resilience.h"
38 #include "h264chroma.h"
39 #include "h264_mvpred.h"
41 #include "mpegutils.h"
42 #include "rectangle.h"
45 void ff_h264_unref_picture(H264Context *h, H264Picture *pic)
47 int off = offsetof(H264Picture, tf) + sizeof(pic->tf);
50 if (!pic->f || !pic->f->buf[0])
53 ff_thread_release_buffer(h->avctx, &pic->tf);
54 av_buffer_unref(&pic->hwaccel_priv_buf);
56 av_buffer_unref(&pic->qscale_table_buf);
57 av_buffer_unref(&pic->mb_type_buf);
58 for (i = 0; i < 2; i++) {
59 av_buffer_unref(&pic->motion_val_buf[i]);
60 av_buffer_unref(&pic->ref_index_buf[i]);
63 memset((uint8_t*)pic + off, 0, sizeof(*pic) - off);
66 int ff_h264_ref_picture(H264Context *h, H264Picture *dst, H264Picture *src)
70 av_assert0(!dst->f->buf[0]);
71 av_assert0(src->f->buf[0]);
72 av_assert0(src->tf.f == src->f);
75 ret = ff_thread_ref_frame(&dst->tf, &src->tf);
79 dst->qscale_table_buf = av_buffer_ref(src->qscale_table_buf);
80 dst->mb_type_buf = av_buffer_ref(src->mb_type_buf);
81 if (!dst->qscale_table_buf || !dst->mb_type_buf) {
82 ret = AVERROR(ENOMEM);
85 dst->qscale_table = src->qscale_table;
86 dst->mb_type = src->mb_type;
88 for (i = 0; i < 2; i++) {
89 dst->motion_val_buf[i] = av_buffer_ref(src->motion_val_buf[i]);
90 dst->ref_index_buf[i] = av_buffer_ref(src->ref_index_buf[i]);
91 if (!dst->motion_val_buf[i] || !dst->ref_index_buf[i]) {
92 ret = AVERROR(ENOMEM);
95 dst->motion_val[i] = src->motion_val[i];
96 dst->ref_index[i] = src->ref_index[i];
99 if (src->hwaccel_picture_private) {
100 dst->hwaccel_priv_buf = av_buffer_ref(src->hwaccel_priv_buf);
101 if (!dst->hwaccel_priv_buf) {
102 ret = AVERROR(ENOMEM);
105 dst->hwaccel_picture_private = dst->hwaccel_priv_buf->data;
108 for (i = 0; i < 2; i++)
109 dst->field_poc[i] = src->field_poc[i];
111 memcpy(dst->ref_poc, src->ref_poc, sizeof(src->ref_poc));
112 memcpy(dst->ref_count, src->ref_count, sizeof(src->ref_count));
115 dst->frame_num = src->frame_num;
116 dst->mmco_reset = src->mmco_reset;
117 dst->long_ref = src->long_ref;
118 dst->mbaff = src->mbaff;
119 dst->field_picture = src->field_picture;
120 dst->reference = src->reference;
121 dst->recovered = src->recovered;
122 dst->invalid_gap = src->invalid_gap;
123 dst->sei_recovery_frame_cnt = src->sei_recovery_frame_cnt;
127 ff_h264_unref_picture(h, dst);
131 void ff_h264_set_erpic(ERPicture *dst, H264Picture *src)
133 #if CONFIG_ERROR_RESILIENCE
136 memset(dst, 0, sizeof(*dst));
144 for (i = 0; i < 2; i++) {
145 dst->motion_val[i] = src->motion_val[i];
146 dst->ref_index[i] = src->ref_index[i];
149 dst->mb_type = src->mb_type;
150 dst->field_picture = src->field_picture;
151 #endif /* CONFIG_ERROR_RESILIENCE */
154 int ff_h264_field_end(H264Context *h, H264SliceContext *sl, int in_setup)
156 AVCodecContext *const avctx = h->avctx;
160 if (in_setup || !(avctx->active_thread_type & FF_THREAD_FRAME)) {
162 err = ff_h264_execute_ref_pic_marking(h);
163 h->poc.prev_poc_msb = h->poc.poc_msb;
164 h->poc.prev_poc_lsb = h->poc.poc_lsb;
166 h->poc.prev_frame_num_offset = h->poc.frame_num_offset;
167 h->poc.prev_frame_num = h->poc.frame_num;
170 if (avctx->hwaccel) {
171 err = avctx->hwaccel->end_frame(avctx);
173 av_log(avctx, AV_LOG_ERROR,
174 "hardware accelerator failed to decode picture\n");
177 if (!in_setup && !h->droppable)
178 ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
179 h->picture_structure == PICT_BOTTOM_FIELD);
182 h->current_slice = 0;