FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
h264_picture.c
Go to the documentation of this file.
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 / MPEG-4 part10 codec.
25  * @author Michael Niedermayer <michaelni@gmx.at>
26  */
27 
28 #include "libavutil/avassert.h"
29 #include "libavutil/imgutils.h"
30 #include "libavutil/timer.h"
31 #include "internal.h"
32 #include "cabac.h"
33 #include "cabac_functions.h"
34 #include "error_resilience.h"
35 #include "avcodec.h"
36 #include "h264dec.h"
37 #include "h264data.h"
38 #include "h264chroma.h"
39 #include "h264_mvpred.h"
40 #include "mathops.h"
41 #include "mpegutils.h"
42 #include "rectangle.h"
43 #include "thread.h"
44 #include "vdpau_compat.h"
45 
47 {
48  int off = offsetof(H264Picture, tf) + sizeof(pic->tf);
49  int i;
50 
51  if (!pic->f || !pic->f->buf[0])
52  return;
53 
56 
59  for (i = 0; i < 2; i++) {
62  }
63 
64  memset((uint8_t*)pic + off, 0, sizeof(*pic) - off);
65 }
66 
68 {
69  int ret, i;
70 
71  av_assert0(!dst->f->buf[0]);
72  av_assert0(src->f->buf[0]);
73 
74  src->tf.f = src->f;
75  dst->tf.f = dst->f;
76  ret = ff_thread_ref_frame(&dst->tf, &src->tf);
77  if (ret < 0)
78  goto fail;
79 
82  if (!dst->qscale_table_buf || !dst->mb_type_buf)
83  goto fail;
84  dst->qscale_table = src->qscale_table;
85  dst->mb_type = src->mb_type;
86 
87  for (i = 0; i < 2; i++) {
88  dst->motion_val_buf[i] = av_buffer_ref(src->motion_val_buf[i]);
89  dst->ref_index_buf[i] = av_buffer_ref(src->ref_index_buf[i]);
90  if (!dst->motion_val_buf[i] || !dst->ref_index_buf[i])
91  goto fail;
92  dst->motion_val[i] = src->motion_val[i];
93  dst->ref_index[i] = src->ref_index[i];
94  }
95 
96  if (src->hwaccel_picture_private) {
98  if (!dst->hwaccel_priv_buf)
99  goto fail;
101  }
102 
103  for (i = 0; i < 2; i++)
104  dst->field_poc[i] = src->field_poc[i];
105 
106  memcpy(dst->ref_poc, src->ref_poc, sizeof(src->ref_poc));
107  memcpy(dst->ref_count, src->ref_count, sizeof(src->ref_count));
108 
109  dst->poc = src->poc;
110  dst->frame_num = src->frame_num;
111  dst->mmco_reset = src->mmco_reset;
112  dst->pic_id = src->pic_id;
113  dst->long_ref = src->long_ref;
114  dst->mbaff = src->mbaff;
115  dst->field_picture = src->field_picture;
116  dst->reference = src->reference;
117  dst->crop = src->crop;
118  dst->crop_left = src->crop_left;
119  dst->crop_top = src->crop_top;
120  dst->recovered = src->recovered;
121  dst->invalid_gap = src->invalid_gap;
123 
124  return 0;
125 fail:
126  ff_h264_unref_picture(h, dst);
127  return ret;
128 }
129 
131 {
132 #if CONFIG_ERROR_RESILIENCE
133  int i;
134 
135  memset(dst, 0, sizeof(*dst));
136 
137  if (!src)
138  return;
139 
140  dst->f = src->f;
141  dst->tf = &src->tf;
142 
143  for (i = 0; i < 2; i++) {
144  dst->motion_val[i] = src->motion_val[i];
145  dst->ref_index[i] = src->ref_index[i];
146  }
147 
148  dst->mb_type = src->mb_type;
149  dst->field_picture = src->field_picture;
150 #endif /* CONFIG_ERROR_RESILIENCE */
151 }
152 
154 {
155  AVCodecContext *const avctx = h->avctx;
156  int err = 0;
157  h->mb_y = 0;
158 
159 #if FF_API_CAP_VDPAU
160  if (CONFIG_H264_VDPAU_DECODER &&
163 #endif
164 
165  if (in_setup || !(avctx->active_thread_type & FF_THREAD_FRAME)) {
166  if (!h->droppable) {
168  h->poc.prev_poc_msb = h->poc.poc_msb;
169  h->poc.prev_poc_lsb = h->poc.poc_lsb;
170  }
173  }
174 
175  if (avctx->hwaccel) {
176  err = avctx->hwaccel->end_frame(avctx);
177  if (err < 0)
178  av_log(avctx, AV_LOG_ERROR,
179  "hardware accelerator failed to decode picture\n");
180  }
181 
182 #if FF_API_CAP_VDPAU
183  if (CONFIG_H264_VDPAU_DECODER &&
186 #endif
187 
188  if (!in_setup && !h->droppable)
191  emms_c();
192 
193  h->current_slice = 0;
194 
195  return err;
196 }
const struct AVCodec * codec
Definition: avcodec.h:1685
void ff_vdpau_h264_picture_complete(H264Context *h)
int long_ref
1->long term reference 0->short term reference
Definition: h264dec.h:154
int sei_recovery_frame_cnt
Definition: h264dec.h:163
H264POCContext poc
Definition: h264dec.h:462
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
Definition: buffer.c:124
misc image utilities
AVFrame * f
Definition: thread.h:36
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
Definition: frame.h:367
int mb_y
Definition: h264dec.h:438
AVBufferRef * mb_type_buf
Definition: h264dec.h:138
int crop
Definition: h264dec.h:165
int16_t(*[2] motion_val)[2]
Definition: h264dec.h:136
uint32_t * mb_type
H264Context.
Definition: h264dec.h:341
AVFrame * f
Definition: h264dec.h:129
int picture_structure
Definition: h264dec.h:412
#define tf
Definition: regdef.h:73
struct AVHWAccel * hwaccel
Hardware accelerator in use.
Definition: avcodec.h:2996
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
uint8_t
void ff_h264_set_erpic(ERPicture *dst, H264Picture *src)
Definition: h264_picture.c:130
int field_picture
whether or not picture was encoded in separate fields
Definition: h264dec.h:158
int poc
frame POC
Definition: h264dec.h:148
int frame_num_offset
for POC type 2
Definition: h264_parse.h:51
Multithreading support functions.
int invalid_gap
Definition: h264dec.h:162
#define PICT_BOTTOM_FIELD
Definition: mpegutils.h:38
int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src)
Definition: utils.c:3930
#define AV_CODEC_CAP_HWACCEL_VDPAU
Codec can export data for HW decoding (VDPAU).
Definition: avcodec.h:995
AVBufferRef * qscale_table_buf
Definition: h264dec.h:132
high precision timer, useful to profile code
int recovered
picture at IDR or recovery point + recovery count
Definition: h264dec.h:161
#define av_log(a,...)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f)
Wrapper around release_buffer() frame-for multithreaded codecs.
void * hwaccel_picture_private
hardware accelerator private data
Definition: h264dec.h:142
int active_thread_type
Which multithreading methods are in use by the codec.
Definition: avcodec.h:3126
int capabilities
Codec capabilities.
Definition: avcodec.h:3619
int ref_poc[2][2][32]
POCs of the frames/fields used as reference (FIXME need per slice)
Definition: h264dec.h:155
ThreadFrame tf
Definition: h264dec.h:130
simple assert() macros that are a bit more flexible than ISO C assert().
ThreadFrame * tf
int frame_num
frame_num (raw frame_num from slice header)
Definition: h264dec.h:149
#define fail()
Definition: checkasm.h:83
AVBufferRef * hwaccel_priv_buf
Definition: h264dec.h:141
int crop_left
Definition: h264dec.h:166
useful rectangle filling function
int prev_poc_msb
poc_msb of the last reference pic for POC type 0
Definition: h264_parse.h:49
AVBufferRef * motion_val_buf[2]
Definition: h264dec.h:135
#define FF_THREAD_FRAME
Decode more than one frame at once.
Definition: avcodec.h:3118
int reference
Definition: h264dec.h:160
uint32_t * mb_type
Definition: h264dec.h:139
void ff_thread_report_progress(ThreadFrame *f, int n, int field)
Notify later decoding threads when part of their reference picture is ready.
Context Adaptive Binary Arithmetic Coder inline functions.
H.264 / AVC / MPEG-4 part10 codec.
#define src
Definition: vp9dsp.c:530
AVCodecContext * avctx
Definition: h264dec.h:343
Libavcodec external API header.
int field_poc[2]
top/bottom POC
Definition: h264dec.h:147
main external API structure.
Definition: avcodec.h:1676
uint8_t * data
The data buffer.
Definition: buffer.h:89
void ff_vdpau_h264_set_reference_frames(H264Context *h)
int8_t * qscale_table
Definition: h264dec.h:133
int prev_frame_num
frame_num of the last pic for POC type 1/2
Definition: h264_parse.h:53
int8_t * ref_index[2]
Definition: h264dec.h:145
int ff_h264_ref_picture(H264Context *h, H264Picture *dst, H264Picture *src)
Definition: h264_picture.c:67
int mmco_reset
MMCO_RESET set this 1.
Definition: h264dec.h:150
H264Picture * cur_pic_ptr
Definition: h264dec.h:350
int8_t * ref_index[2]
int prev_poc_lsb
poc_lsb of the last reference pic for POC type 0
Definition: h264_parse.h:50
int mbaff
1 -> MBAFF frame 0-> not MBAFF
Definition: h264dec.h:157
int ff_h264_field_end(H264Context *h, H264SliceContext *sl, int in_setup)
Definition: h264_picture.c:153
int pic_id
pic_num (short -> no wrap version of pic_num, pic_num & max_pic_num; long -> long_pic_num) ...
Definition: h264dec.h:152
common internal api header.
H.264 / AVC / MPEG-4 part10 motion vector prediction.
AVBufferRef * av_buffer_ref(AVBufferRef *buf)
Create a new reference to an AVBuffer.
Definition: buffer.c:92
AVFrame * f
int16_t(*[2] motion_val)[2]
int current_slice
current slice number, used to initialize slice_num of each thread/context
Definition: h264dec.h:490
int ff_h264_execute_ref_pic_marking(H264Context *h)
Execute the reference picture marking (memory management control operations).
Definition: h264_refs.c:609
AVBufferRef * ref_index_buf[2]
Definition: h264dec.h:144
int crop_top
Definition: h264dec.h:167
int ref_count[2][2]
number of entries in ref_poc (FIXME need per slice)
Definition: h264dec.h:156
int prev_frame_num_offset
for POC type 2
Definition: h264_parse.h:52
int(* end_frame)(AVCodecContext *avctx)
Called at the end of each frame or field picture.
Definition: avcodec.h:3808
void ff_h264_unref_picture(H264Context *h, H264Picture *pic)
Definition: h264_picture.c:46
int droppable
Definition: h264dec.h:373
Context Adaptive Binary Arithmetic Coder.