00001 #ifndef MAP_OPTIONS 00002 #ifndef MAP_FILE 00003 #define MAP_OPTIONS MAP_PRIVATE /* Sun */ 00004 #else 00005 #define MAP_OPTIONS MAP_FILE|MAP_PRIVATE /* Linux */ 00006 #endif 00007 #endif 00008 00009 00010 // output 8-bit monochrome/color JPEG image (bayerOrient - pixel at 0/0: 0 - R, 1 G(R), 2 - G(B), 3 - B) 00011 int dma2jpeg (int ImageWidth, int ImageHeight, int Quality, int Contrast, int Color, int bayerOrient, int Depth, const char * pseudo, const char * ifn, const char * ofn);