FFmpeg
|
Go to the source code of this file.
Macros | |
#define | IDCT4X4(src, src_stride, src_step, dst, dst_stride, dst_step) |
#define | STORE(a, b) a = b |
#define | STORE(a, b) a = av_clip_uint8(a + (b)) |
#define | IDCT8X8(src, src_stride, src_step, dst, dst_stride, dst_step) |
#define | STORE(a, b) a = b |
#define | STORE(a, b) a = av_clip_uint8(a + (b)) |
#define | IDCT16X16(src, src_stride, src_step, dst, dst_stride, dst_step) |
#define | STORE(a, x) a = av_clip_intp2(x, 15) |
#define | STORE(a, x) a = av_clip_uint8(a + (x)) |
Functions | |
void | ff_rv60_idct4x4_add (const int16_t *block, uint8_t *dst, int dst_stride) |
void | ff_rv60_idct8x8_add (const int16_t *block, uint8_t *dst, int dst_stride) |
void | ff_rv60_idct16x16_add (const int16_t *block, uint8_t *dst, int dst_stride) |
#define STORE | ( | a, | |
x | |||
) | a = av_clip_intp2(x, 15) |
#define STORE | ( | a, | |
x | |||
) | a = av_clip_uint8(a + (x)) |
void ff_rv60_idct4x4_add | ( | const int16_t * | block, |
uint8_t * | dst, | ||
int | dst_stride | ||
) |
Definition at line 24 of file rv60dsp.c.
Referenced by decode_cu_r().
void ff_rv60_idct8x8_add | ( | const int16_t * | block, |
uint8_t * | dst, | ||
int | dst_stride | ||
) |
Definition at line 50 of file rv60dsp.c.
Referenced by decode_cu_r().
void ff_rv60_idct16x16_add | ( | const int16_t * | block, |
uint8_t * | dst, | ||
int | dst_stride | ||
) |
Definition at line 92 of file rv60dsp.c.
Referenced by decode_cu_r().