|
|
@ -40,11 +40,13 @@ extern void (*get_pixels)(DCTELEM *block, const UINT8 *pixels, int line_size); |
|
|
|
extern void (*put_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size); |
|
|
|
extern void (*put_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size); |
|
|
|
extern void (*add_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size); |
|
|
|
extern void (*add_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size); |
|
|
|
extern void (*gmc1)(UINT8 *dst, UINT8 *src, int srcStride, int h, int x16, int y16, int rounder); |
|
|
|
extern void (*gmc1)(UINT8 *dst, UINT8 *src, int srcStride, int h, int x16, int y16, int rounder); |
|
|
|
|
|
|
|
extern void (*clear_blocks)(DCTELEM *blocks); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void get_pixels_c(DCTELEM *block, const UINT8 *pixels, int line_size); |
|
|
|
void get_pixels_c(DCTELEM *block, const UINT8 *pixels, int line_size); |
|
|
|
void put_pixels_clamped_c(const DCTELEM *block, UINT8 *pixels, int line_size); |
|
|
|
void put_pixels_clamped_c(const DCTELEM *block, UINT8 *pixels, int line_size); |
|
|
|
void add_pixels_clamped_c(const DCTELEM *block, UINT8 *pixels, int line_size); |
|
|
|
void add_pixels_clamped_c(const DCTELEM *block, UINT8 *pixels, int line_size); |
|
|
|
|
|
|
|
void clear_blocks_c(DCTELEM *blocks); |
|
|
|
|
|
|
|
|
|
|
|
/* add and put pixel (decoding) */ |
|
|
|
/* add and put pixel (decoding) */ |
|
|
|
typedef void (*op_pixels_func)(UINT8 *block, const UINT8 *pixels, int line_size, int h); |
|
|
|
typedef void (*op_pixels_func)(UINT8 *block, const UINT8 *pixels, int line_size, int h); |
|
|
|