X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.web-live.git;a=blobdiff_plain;f=pctb%2Fconvert.h;h=11f534bb1c8824fd5b8de4f72adfc206554993af;hp=1dcb8a2f5d78ee70f52aab1ac446467f72826dc1;hb=044272b5016efd89618d3725353cdbea9a98d796;hpb=059fab3ad374847da031d23d7e25ee25e888bce0 diff --git a/pctb/convert.h b/pctb/convert.h index 1dcb8a2..11f534b 100644 --- a/pctb/convert.h +++ b/pctb/convert.h @@ -42,29 +42,22 @@ #define MAXIMGIDENT 100 +typedef uint32_t Rgb; /* red<<0 | green<<8 | blue<<16 */ + typedef struct RgbImage { int w, h; - unsigned char data[]; - /* red = data[ y*w*3 + x*3 + 0 ] = RI_PIXEL(ri,x,y)[0] - * green = data[ y*w*3 + x*3 + 1 ] = RI_PIXEL(ri,x,y)[1] - * blue = data[ y*w*3 + x*3 + 2 ] = RI_PIXEL(ri,x,y)[2] - */ + Rgb data[]; /* data[ y*w + x ] */ } RgbImage; -typedef unsigned long Rgb; - void identify_rgbimage(const RgbImage *base, Rect portion, char result[MAXIMGIDENT], const char *what); RgbImage *alloc_rgb_image(int w, int h); void fwrite_ppmraw(FILE *f, const RgbImage *ri); -#define RI_PIXEL(ri,x,y) ((ri)->data + ((y)*(ri)->w + (x)) * 3) +#define RI_PIXEL32(ri,x,y) ((ri)->data + ((y)*(ri)->w + (x))) static inline Rgb ri_rgb(const RgbImage *ri, int x, int y) { - const unsigned char *rip= RI_PIXEL(ri,x,y); - return (rip[0] << 16) | - (rip[1] << 8) | - (rip[2] ); + return *RI_PIXEL32(ri,x,y); } /*----- from structure.c -----*/