908e426c |
1 | #ifndef __CSPACE_H__ |
2 | #define __CSPACE_H__ |
3 | |
495eab93 |
4 | #ifdef __cplusplus |
5 | extern "C" |
6 | { |
7 | #endif |
8 | |
ff847a2e |
9 | void bgr555_to_rgb565(void *dst, const void *src, int bytes); |
10 | void bgr888_to_rgb888(void *dst, const void *src, int bytes); |
11 | void bgr888_to_rgb565(void *dst, const void *src, int bytes); |
00a5d459 |
12 | void rgb888_to_rgb565(void *dst, const void *src, int bytes); |
495eab93 |
13 | |
35d3fd2e |
14 | void bgr555_to_rgb565_b(void *dst, const void *src, int bytes, |
15 | int brightness2k); // 0-0x0800 |
16 | |
c9099d02 |
17 | void bgr_to_uyvy_init(void); |
5b9aa749 |
18 | void rgb565_to_uyvy(void *d, const void *s, int pixels); |
c9099d02 |
19 | void bgr555_to_uyvy(void *d, const void *s, int pixels); |
20 | void bgr888_to_uyvy(void *d, const void *s, int pixels); |
21 | |
495eab93 |
22 | #ifdef __cplusplus |
23 | } |
24 | #endif |
908e426c |
25 | |
26 | #endif /* __CSPACE_H__ */ |