From 674986844b08c2dc2386e084ec523f577b7990d0 Mon Sep 17 00:00:00 2001 From: Oliver Schinagl Date: Mon, 11 Apr 2005 11:33:34 +0000 Subject: Forgot to add them with the .c files --- include/bmpjpeg.h | 3 +++ include/color.h | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 include/bmpjpeg.h create mode 100644 include/color.h diff --git a/include/bmpjpeg.h b/include/bmpjpeg.h new file mode 100644 index 0000000..72fba92 --- /dev/null +++ b/include/bmpjpeg.h @@ -0,0 +1,3 @@ +void BMPto8x8AndYCbCr(int Start_x, int Start_y, int ImageSize_x, int ImageSize_y, int offset, unsigned char depth ,unsigned char *Image, unsigned char *blok8x8); +void YCbCrAnd8x8toBMP(int Start_x, int Start_y, int ImageSize_x, int ImageSize_y, int offset, unsigned char depth ,unsigned char *Image, unsigned char *blok8x8); + diff --git a/include/color.h b/include/color.h new file mode 100644 index 0000000..39ae702 --- /dev/null +++ b/include/color.h @@ -0,0 +1,2 @@ +void YCbCr2RGB (unsigned char Y, unsigned char Cb, unsigned char Cr,unsigned char *R,unsigned char *G,unsigned char *B); +void RGB2YCbCr (unsigned char R, unsigned char G, unsigned char B,unsigned char *Y,unsigned char *Cb,unsigned char *Cr); -- cgit v0.12