#include "libavutil/attributes.h"
#include "libavutil/common.h"
#include "avcodec.h"
#include "dsputil.h"
#include "vp3dsp.h"
Go to the source code of this file.
Defines | |
| #define | IdctAdjustBeforeShift 8 |
| #define | xC1S7 64277 |
| #define | xC2S6 60547 |
| #define | xC3S5 54491 |
| #define | xC4S4 46341 |
| #define | xC5S3 36410 |
| #define | xC6S2 25080 |
| #define | xC7S1 12785 |
| #define | M(a, b) (((a) * (b))>>16) |
Functions | |
| static av_always_inline void | idct (uint8_t *dst, int stride, int16_t *input, int type) |
| static void | vp3_idct_put_c (uint8_t *dest, int line_size, DCTELEM *block) |
| static void | vp3_idct_add_c (uint8_t *dest, int line_size, DCTELEM *block) |
| static void | vp3_idct_dc_add_c (uint8_t *dest, int line_size, const DCTELEM *block) |
| static void | vp3_v_loop_filter_c (uint8_t *first_pixel, int stride, int *bounding_values) |
| static void | vp3_h_loop_filter_c (uint8_t *first_pixel, int stride, int *bounding_values) |
| av_cold void | ff_vp3dsp_init (VP3DSPContext *c, int flags) |
Definition in file vp3dsp.c.
| #define M | ( | a, | |||
| b | ) | (((a) * (b))>>16) |
| av_cold void ff_vp3dsp_init | ( | VP3DSPContext * | c, | |
| int | flags | |||
| ) |
Definition at line 274 of file vp3dsp.c.
Referenced by ff_vp56_init_context(), and vp3_decode_init().
1.5.8