|
FFmpeg
|
#include <stdatomic.h>#include "libavutil/mem_internal.h"#include "libavutil/thread.h"#include "avcodec.h"#include "h264pred.h"#include "progressframe.h"#include "videodsp.h"#include "vp8dsp.h"#include "vpx_rac.h"Go to the source code of this file.
Data Structures | |
| struct | VP8mv |
| struct | VP8FilterStrength |
| struct | VP8Macroblock |
| struct | VP8intmv |
| struct | VP8mvbounds |
| struct | VP8ThreadData |
| struct | VP8Frame |
| struct | VP8Context |
Macros | |
| #define | VP8_MAX_QUANT 127 |
| #define | MODE_I4x4 4 |
| #define | EDGE_EMU_LINESIZE 32 |
| #define | MAX_THREADS 8 |
Enumerations | |
| enum | VP8FrameType { VP8_FRAME_NONE = -1 , VP8_FRAME_CURRENT = 0 , VP8_FRAME_PREVIOUS = 1 , VP8_FRAME_GOLDEN = 2 , VP8_FRAME_ALTREF = 3 } |
| enum | dct_token { DCT_0 , DCT_1 , DCT_2 , DCT_3 , DCT_4 , DCT_CAT1 , DCT_CAT2 , DCT_CAT3 , DCT_CAT4 , DCT_CAT5 , DCT_CAT6 , DCT_EOB , NUM_DCT_TOKENS } |
| enum | inter_mvmode { VP8_MVMODE_ZERO = MODE_I4x4 + 1 , VP8_MVMODE_MV , VP8_MVMODE_SPLIT } |
| enum | inter_splitmvmode { VP8_SPLITMVMODE_16x8 = 0 , VP8_SPLITMVMODE_8x16 , VP8_SPLITMVMODE_8x8 , VP8_SPLITMVMODE_4x4 , VP8_SPLITMVMODE_NONE } |
Functions | |
| int | ff_vp8_decode_init (AVCodecContext *avctx) |
| int | ff_vp8_decode_frame (AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt) |
| int | ff_vp8_decode_free (AVCodecContext *avctx) |
| #define VP8_MAX_QUANT 127 |
Definition at line 41 of file vp8.h.
Referenced by vaapi_encode_vp8_configure().
| #define MODE_I4x4 4 |
Definition at line 69 of file vp8.h.
Referenced by decode_mb_coeffs(), decode_mb_mode(), decode_mb_row_no_filter(), filter_level_for_mb(), idct_mb(), intra_predict(), and update_lf_deltas().
| #define EDGE_EMU_LINESIZE 32 |
Definition at line 147 of file vp8.h.
Referenced by vp8_mc_chroma(), and vp8_mc_luma().
| enum VP8FrameType |
| enum dct_token |
| enum inter_mvmode |
| enum inter_splitmvmode |
| int ff_vp8_decode_init | ( | AVCodecContext * | avctx | ) |
Referenced by vp8_lossy_decode_frame().
| int ff_vp8_decode_frame | ( | AVCodecContext * | avctx, |
| AVFrame * | frame, | ||
| int * | got_frame, | ||
| AVPacket * | avpkt ) |
Referenced by vp8_lossy_decode_frame().
| int ff_vp8_decode_free | ( | AVCodecContext * | avctx | ) |
Definition at line 2818 of file vp8.c.
Referenced by webp_decode_close().