FFmpeg
Loading...
Searching...
No Matches
vp8.h
Go to the documentation of this file.
1/*
2 * VP8 compatible video decoder
3 *
4 * Copyright (C) 2010 David Conrad
5 * Copyright (C) 2010 Ronald S. Bultje
6 * Copyright (C) 2010 Fiona Glaser
7 * Copyright (C) 2012 Daniel Kang
8 *
9 * This file is part of FFmpeg.
10 *
11 * FFmpeg is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
15 *
16 * FFmpeg is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with FFmpeg; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 */
25
26#ifndef AVCODEC_VP8_H
27#define AVCODEC_VP8_H
28
29#include <stdatomic.h>
30
32#include "libavutil/thread.h"
33
34#include "avcodec.h"
35#include "h264pred.h"
36#include "progressframe.h"
37#include "videodsp.h"
38#include "vp8dsp.h"
39#include "vpx_rac.h"
40
41#define VP8_MAX_QUANT 127
42
50
67
68// used to signal 4x4 intra pred in luma MBs
69#define MODE_I4x4 4
70
76
78 VP8_SPLITMVMODE_16x8 = 0, ///< 2 16x8 blocks (vertical)
79 VP8_SPLITMVMODE_8x16, ///< 2 8x16 blocks (horizontal)
80 VP8_SPLITMVMODE_8x8, ///< 2x2 blocks of 8x8px each
81 VP8_SPLITMVMODE_4x4, ///< 4x4 blocks of 4x4px each
82 VP8_SPLITMVMODE_NONE, ///< (only used in prediction) no split MVs
83};
84
85typedef struct VP8mv {
86 DECLARE_ALIGNED(4, int16_t, x);
87 int16_t y;
88} VP8mv;
89
90typedef struct VP8FilterStrength {
91 uint8_t filter_level;
92 uint8_t inner_limit;
93 uint8_t inner_filter;
95
96typedef struct VP8Macroblock {
97 uint8_t skip;
98 // TODO: make it possible to check for at least (i4x4 or split_mv)
99 // in one op. are others needed?
100 uint8_t mode;
101 uint8_t ref_frame;
104 uint8_t segment;
110
111typedef struct VP8intmv {
112 int x;
113 int y;
114} VP8intmv;
115
120
121typedef struct VP8ThreadData {
122 DECLARE_ALIGNED(16, int16_t, block)[6][4][16];
123 DECLARE_ALIGNED(16, int16_t, block_dc)[16];
124 /**
125 * This is the index plus one of the last non-zero coeff
126 * for each of the blocks in the current macroblock.
127 * So, 0 -> no coeffs
128 * 1 -> dc-only (special transform)
129 * 2+-> full transform
130 */
132 /**
133 * For coeff decode, we need to know whether the above block had non-zero
134 * coefficients. This means for each macroblock, we need data for 4 luma
135 * blocks, 2 u blocks, 2 v blocks, and the luma dc block, for a total of 9
136 * per macroblock. We keep the last row in top_nnz.
137 */
138 DECLARE_ALIGNED(8, uint8_t, left_nnz)[9];
140#if HAVE_THREADS
143#endif
144 atomic_int thread_mb_pos; // (mb_y << 16) | (mb_x & 0xFFFF)
145 atomic_int wait_mb_pos; // What the current thread is waiting on.
146
147#define EDGE_EMU_LINESIZE 32
152
153typedef struct VP8Frame {
155 uint8_t *seg_map; ///< RefStruct reference
156
157 void *hwaccel_picture_private; ///< RefStruct reference
158} VP8Frame;
159
160#define MAX_THREADS 8
161typedef struct VP8Context {
166
171
172 uint16_t mb_width; /* number of horizontal MB */
173 uint16_t mb_height; /* number of vertical MB */
174 ptrdiff_t linesize;
175 ptrdiff_t uvlinesize;
176
177 uint8_t keyframe;
180 uint8_t profile;
182
183 int8_t sign_bias[4]; ///< one state [0, 1] per ref frame type
184 int ref_count[3];
185
186 /**
187 * Base parameters for segmentation, i.e. per-macroblock parameters.
188 * These must be kept unchanged even if segmentation is not used for
189 * a frame, since the values persist between interframes.
190 */
191 struct {
192 uint8_t enabled;
194 uint8_t update_map;
196 int8_t base_quant[4];
197 int8_t filter_level[4]; ///< base loop filter level
199
200 struct {
201 uint8_t simple;
202 uint8_t level;
203 uint8_t sharpness;
205
207
210
211 /**
212 * Macroblocks can have one of 4 different quants in a frame when
213 * segmentation is enabled.
214 * If segmentation is disabled, only the first segment's values are used.
215 */
216 struct {
217 // [0] - DC qmul [1] - AC qmul
218 int16_t luma_qmul[2];
219 int16_t luma_dc_qmul[2]; ///< luma dc-only block quant
220 int16_t chroma_qmul[2];
221 } qmat[4];
222
223 // Raw quantisation values, which may be needed by hwaccel decode.
224 struct {
232
233 struct {
234 uint8_t enabled; ///< whether each mb can have a different strength based on mode/ref
235 uint8_t update;
236
237 /**
238 * filter strength adjustment for the following macroblock modes:
239 * [0-3] - i16x16 (always zero)
240 * [4] - i4x4
241 * [5] - zero mv
242 * [6] - inter modes except for zero or split mv
243 * [7] - split mv
244 * i16x16 modes never have any adjustment
245 */
247
248 /**
249 * filter strength adjustment for macroblocks that reference:
250 * [0] - intra / VP8_FRAME_CURRENT
251 * [1] - VP8_FRAME_PREVIOUS
252 * [2] - VP8_FRAME_GOLDEN
253 * [3] - altref / VP8_FRAME_ALTREF
254 */
255 int8_t ref[4];
257
258 uint8_t (*top_border)[16 + 8 + 8];
259 uint8_t (*top_nnz)[9];
260
261 VPXRangeCoder c; ///< header context, includes mb modes and motion vectors
262
263 /* This contains the entropy coder state at the end of the header
264 * block, in the form specified by the standard. For use by
265 * hwaccels, so that a hardware decoder has the information to
266 * start decoding at the macroblock layer.
267 */
268 struct {
269 const uint8_t *input;
270 uint32_t range;
271 uint32_t value;
274
276
277 /**
278 * These are all of the updatable probabilities for binary decisions.
279 * They are only implicitly reset on keyframes, making it quite likely
280 * for an interframe to desync if a prior frame's header was corrupt
281 * or missing outright!
282 */
283 struct {
284 uint8_t segmentid[3];
285 uint8_t mbskip;
286 uint8_t intra;
287 uint8_t last;
288 uint8_t golden;
289 uint8_t pred16x16[4];
290 uint8_t pred8x8c[3];
291 uint8_t token[4][16][3][NUM_DCT_TOKENS - 1];
292 uint8_t mvc[2][19];
293 uint8_t scan[16];
294 } prob[2];
295
298 int update_last; ///< update VP8_FRAME_PREVIOUS with the current one
299 int update_golden; ///< VP8_FRAME_NONE if not updated, or which frame to copy if so
301
302 /**
303 * If this flag is not set, all the probability updates
304 * are discarded after this frame is decoded.
305 */
307
308 /**
309 * All coefficients are contained in separate arith coding contexts.
310 * There can be 1, 2, 4, or 8 of these after the header context.
311 */
320
321 uint8_t colorspace; ///< 0 is the only value allowed (meaning bt601)
322 uint8_t fullrange; ///< whether we can skip clamping in dsp functions
323
325 /**
326 * This describes the macroblock memory layout.
327 * 0 -> Only width+height*2+1 macroblocks allocated (frame/single thread).
328 * 1 -> Macroblocks for entire frame allocated (sliced thread).
329 */
331
332 int (*decode_mb_row_no_filter)(AVCodecContext *avctx, void *tdata, int jobnr, int threadnr);
333 void (*filter_mb_row)(AVCodecContext *avctx, void *tdata, int jobnr, int threadnr);
334
335 /**
336 * Interframe DC prediction (VP7)
337 * [0] VP8_FRAME_PREVIOUS
338 * [1] VP8_FRAME_GOLDEN
339 */
340 uint16_t inter_dc_pred[2][2];
341
342 /**
343 * Macroblock features (VP7)
344 */
345 uint8_t feature_enabled[4];
347 uint8_t feature_index_prob[4][3];
348 uint8_t feature_value[4][4];
349
350 int webm_alpha_warned; ///< warn once about unsupported WebM alpha
351} VP8Context;
352
354
356 int *got_frame, AVPacket *avpkt);
357
359
360#endif /* AVCODEC_VP8_H */
Libavcodec external API header.
#define prob(name, subs,...)
Definition cbs_vp9.c:252
static AVFrame * frame
intptr_t atomic_int
Definition stdatomic.h:55
H.264 / AVC / MPEG-4 prediction functions.
static pthread_mutex_t lock
Definition ffjni.c:39
#define DECLARE_ALIGNED(n, t, v)
Declare a variable that is aligned in memory.
_fmutex pthread_mutex_t
Definition os2threads.h:53
int(* cond)(enum AVPixelFormat pix_fmt)
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
main external API structure.
Definition avcodec.h:443
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
Context for storing H.264 prediction functions.
Definition h264pred.h:94
The ProgressFrame structure.
uint8_t level
Definition vp8.h:202
int16_t luma_qmul[2]
Definition vp8.h:218
int webm_alpha_warned
warn once about unsupported WebM alpha
Definition vp8.h:350
int y2dc_delta
Definition vp8.h:227
int8_t mode[VP8_MVMODE_SPLIT+1]
filter strength adjustment for the following macroblock modes: [0-3] - i16x16 (always zero) [4] - i4x...
Definition vp8.h:246
uint8_t feature_present_prob[4]
Definition vp8.h:346
uint8_t token[4][16][3][NUM_DCT_TOKENS - 1]
Definition vp8.h:291
uint8_t mbskip_enabled
Definition vp8.h:179
int8_t filter_level[4]
base loop filter level
Definition vp8.h:197
struct VP8Context::@207214201036132371144115201311213233004154132263 segmentation
Base parameters for segmentation, i.e.
uint8_t mvc[2][19]
Definition vp8.h:292
uint16_t mb_height
Definition vp8.h:173
void(* filter_mb_row)(AVCodecContext *avctx, void *tdata, int jobnr, int threadnr)
Definition vp8.h:333
int num_coeff_partitions
All coefficients are contained in separate arith coding contexts.
Definition vp8.h:312
uint8_t fullrange
whether we can skip clamping in dsp functions
Definition vp8.h:322
uint8_t enabled
whether each mb can have a different strength based on mode/ref
Definition vp8.h:192
int16_t luma_dc_qmul[2]
luma dc-only block quant
Definition vp8.h:219
VP8Frame * prev_frame
Definition vp8.h:170
VP8Frame frames[5]
Definition vp8.h:319
int(* decode_mb_row_no_filter)(AVCodecContext *avctx, void *tdata, int jobnr, int threadnr)
Definition vp8.h:332
uint8_t intra
Definition vp8.h:286
uint32_t range
Definition vp8.h:270
int update_golden
VP8_FRAME_NONE if not updated, or which frame to copy if so.
Definition vp8.h:299
int header_partition_size
Definition vp8.h:275
int ref_count[3]
Definition vp8.h:184
int coeff_partition_size[8]
Definition vp8.h:314
uint8_t segmentid[3]
Definition vp8.h:284
uint8_t feature_enabled[4]
Macroblock features (VP7)
Definition vp8.h:345
uint8_t golden
Definition vp8.h:288
uint8_t * intra4x4_pred_mode_top
Definition vp8.h:208
VideoDSPContext vdsp
Definition vp8.h:315
uint8_t last
Definition vp8.h:287
int8_t sign_bias[4]
one state [0, 1] per ref frame type
Definition vp8.h:183
uint8_t intra4x4_pred_mode_left[4]
Definition vp8.h:209
uint8_t update_feature_data
Definition vp8.h:195
uint8_t(* top_border)[16+8+8]
Definition vp8.h:258
struct VP8Context::@163306124322175000246256004010244133161257135334 lf_delta
ptrdiff_t linesize
Definition vp8.h:174
VP8Frame * next_framep[4]
Definition vp8.h:168
int uvdc_delta
Definition vp8.h:229
uint8_t pred8x8c[3]
Definition vp8.h:290
H264PredContext hpc
Definition vp8.h:317
int8_t ref[4]
filter strength adjustment for macroblocks that reference: [0] - intra / VP8_FRAME_CURRENT [1] - VP8_...
Definition vp8.h:255
int yac_qi
Definition vp8.h:225
uint8_t simple
Definition vp8.h:201
enum AVPixelFormat pix_fmt
Definition vp8.h:164
vp8_mc_func put_pixels_tab[3][3][3]
Definition vp8.h:318
struct VP8Context::@051114067332351051142072205003351053156034002153 qmat[4]
Macroblocks can have one of 4 different quants in a frame when segmentation is enabled.
uint8_t update_map
Definition vp8.h:194
VP8Macroblock * macroblocks
Definition vp8.h:206
VP8Macroblock * macroblocks_base
Definition vp8.h:296
uint8_t update
Definition vp8.h:235
uint8_t mbskip
Definition vp8.h:285
uint32_t value
Definition vp8.h:271
uint8_t profile
Definition vp8.h:180
uint8_t sharpness
Definition vp8.h:203
int update_probabilities
If this flag is not set, all the probability updates are discarded after this frame is decoded.
Definition vp8.h:306
int mb_layout
This describes the macroblock memory layout.
Definition vp8.h:330
VP8mvbounds mv_bounds
Definition vp8.h:181
uint8_t keyframe
Definition vp8.h:177
int update_altref
Definition vp8.h:300
int y2ac_delta
Definition vp8.h:228
VP8ThreadData * thread_data
Definition vp8.h:162
VP8DSPContext vp8dsp
Definition vp8.h:316
uint8_t feature_value[4][4]
Definition vp8.h:348
AVCodecContext * avctx
Definition vp8.h:163
uint8_t scan[16]
Definition vp8.h:293
int update_last
update VP8_FRAME_PREVIOUS with the current one
Definition vp8.h:298
uint8_t(* top_nnz)[9]
Definition vp8.h:259
int ydc_delta
Definition vp8.h:226
uint8_t deblock_filter
Definition vp8.h:178
int actually_webp
Definition vp8.h:165
int num_jobs
Definition vp8.h:324
int bit_count
Definition vp8.h:272
int uvac_delta
Definition vp8.h:230
const uint8_t * input
Definition vp8.h:269
int8_t base_quant[4]
Definition vp8.h:196
VP8Frame * curframe
Definition vp8.h:169
uint16_t inter_dc_pred[2][2]
Interframe DC prediction (VP7) [0] VP8_FRAME_PREVIOUS [1] VP8_FRAME_GOLDEN.
Definition vp8.h:340
VP8Frame * framep[4]
Definition vp8.h:167
VPXRangeCoder coeff_partition[8]
Definition vp8.h:313
uint8_t colorspace
0 is the only value allowed (meaning bt601)
Definition vp8.h:321
uint8_t feature_index_prob[4][3]
Definition vp8.h:347
int invisible
Definition vp8.h:297
uint8_t absolute_vals
Definition vp8.h:193
struct VP8Context::@141117005350150307025064237060242357163351066005 coder_state_at_header_end
int16_t chroma_qmul[2]
Definition vp8.h:220
VPXRangeCoder c
header context, includes mb modes and motion vectors
Definition vp8.h:261
uint16_t mb_width
Definition vp8.h:172
uint8_t pred16x16[4]
Definition vp8.h:289
ptrdiff_t uvlinesize
Definition vp8.h:175
uint8_t inner_limit
Definition vp8.h:92
uint8_t inner_filter
Definition vp8.h:93
uint8_t filter_level
Definition vp8.h:91
ProgressFrame tf
Definition vp8.h:154
void * hwaccel_picture_private
RefStruct reference.
Definition vp8.h:157
uint8_t * seg_map
RefStruct reference.
Definition vp8.h:155
uint8_t ref_frame
Definition vp8.h:101
uint8_t segment
Definition vp8.h:104
uint8_t partitioning
Definition vp8.h:102
uint8_t intra4x4_pred_mode_top[4]
Definition vp8.h:106
uint8_t chroma_pred_mode
Definition vp8.h:103
VP8mv mv
Definition vp8.h:107
VP8mv bmv[16]
Definition vp8.h:108
uint8_t skip
Definition vp8.h:97
uint8_t mode
Definition vp8.h:100
uint8_t intra4x4_pred_mode_mb[16]
Definition vp8.h:105
uint8_t non_zero_count_cache[6][4]
This is the index plus one of the last non-zero coeff for each of the blocks in the current macrobloc...
Definition vp8.h:131
atomic_int thread_mb_pos
Definition vp8.h:144
atomic_int wait_mb_pos
Definition vp8.h:145
uint8_t edge_emu_buffer[21 *EDGE_EMU_LINESIZE]
Definition vp8.h:148
uint8_t left_nnz[9]
For coeff decode, we need to know whether the above block had non-zero coefficients.
Definition vp8.h:138
int16_t block_dc[16]
Definition vp8.h:123
int thread_nr
Definition vp8.h:139
int16_t block[6][4][16]
Definition vp8.h:122
VP8FilterStrength * filter_strength
Definition vp8.h:149
VP8mvbounds mv_bounds
Definition vp8.h:150
int x
Definition vp8.h:112
int y
Definition vp8.h:113
Definition vp8.h:85
int16_t x
Definition vp8.h:86
int16_t y
Definition vp8.h:87
VP8intmv mv_max
Definition vp8.h:118
VP8intmv mv_min
Definition vp8.h:117
void(* filter)(uint8_t *src, ptrdiff_t stride, int qscale)
Definition h263dsp.c:29
Core video DSP helper functions.
static const uint8_t quant[64]
Definition vmixdec.c:71
#define EDGE_EMU_LINESIZE
Definition vp8.h:147
int ff_vp8_decode_init(AVCodecContext *avctx)
#define MODE_I4x4
Definition vp8.h:69
inter_splitmvmode
Definition vp8.h:77
@ VP8_SPLITMVMODE_8x8
2x2 blocks of 8x8px each
Definition vp8.h:80
@ VP8_SPLITMVMODE_4x4
4x4 blocks of 4x4px each
Definition vp8.h:81
@ VP8_SPLITMVMODE_16x8
2 16x8 blocks (vertical)
Definition vp8.h:78
@ VP8_SPLITMVMODE_NONE
(only used in prediction) no split MVs
Definition vp8.h:82
@ VP8_SPLITMVMODE_8x16
2 8x16 blocks (horizontal)
Definition vp8.h:79
int ff_vp8_decode_free(AVCodecContext *avctx)
Definition vp8.c:2818
inter_mvmode
Definition vp8.h:71
@ VP8_MVMODE_MV
Definition vp8.h:73
@ VP8_MVMODE_ZERO
Definition vp8.h:72
@ VP8_MVMODE_SPLIT
Definition vp8.h:74
VP8FrameType
Definition vp8.h:43
@ VP8_FRAME_NONE
Definition vp8.h:44
@ VP8_FRAME_CURRENT
Definition vp8.h:45
@ VP8_FRAME_GOLDEN
Definition vp8.h:47
@ VP8_FRAME_ALTREF
Definition vp8.h:48
@ VP8_FRAME_PREVIOUS
Definition vp8.h:46
int ff_vp8_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
dct_token
Definition vp8.h:51
@ DCT_3
Definition vp8.h:55
@ DCT_1
Definition vp8.h:53
@ DCT_CAT6
Definition vp8.h:62
@ DCT_CAT5
Definition vp8.h:61
@ DCT_CAT3
Definition vp8.h:59
@ DCT_2
Definition vp8.h:54
@ NUM_DCT_TOKENS
Definition vp8.h:65
@ DCT_EOB
Definition vp8.h:63
@ DCT_CAT1
Definition vp8.h:57
@ DCT_CAT4
Definition vp8.h:60
@ DCT_4
Definition vp8.h:56
@ DCT_0
Definition vp8.h:52
@ DCT_CAT2
Definition vp8.h:58
VP8 compatible video decoder.
void(* vp8_mc_func)(uint8_t *dst, ptrdiff_t dstStride, const uint8_t *src, ptrdiff_t srcStride, int h, int x, int y)
Definition vp8dsp.h:33
Common VP5-VP9 range decoder stuff.