summaryrefslogtreecommitdiffstats
path: root/postproc/rgb2rgb_template.c
diff options
context:
space:
mode:
Diffstat (limited to 'postproc/rgb2rgb_template.c')
-rw-r--r--postproc/rgb2rgb_template.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/postproc/rgb2rgb_template.c b/postproc/rgb2rgb_template.c
new file mode 100644
index 0000000000..1a71ba9dce
--- /dev/null
+++ b/postproc/rgb2rgb_template.c
@@ -0,0 +1,18 @@
+#include <inttypes.h>
+#include "../config.h"
+#include "rgb2rgb.h"
+
+void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size)
+{
+ uint32_t *dest = (uint32_t *)dst;
+ uint8_t *s = src;
+ uint8_t *end;
+ end = s + src_size;
+ while(s < end)
+ {
+ uint32_t rgb0;
+ rgb0 = *(uint32_t *)s;
+ *dest++ = rgb0 & 0xFFFFFFUL;
+ s += 3;
+ }
+}