COSMOS core  1.0.2 (beta)
Comprehensive Open-architecture Solution for Mission Operations Systems
jccolor.cpp File Reference
#include "jinclude.h"
#include "jpeglib.h"
Include dependency graph for jccolor.cpp:

Classes

struct  my_color_converter
 

Macros

#define JPEG_INTERNALS
 
#define SCALEBITS   16 /* speediest right-shift on some machines */
 
#define CBCR_OFFSET   ((int32_t) CENTERJSAMPLE << SCALEBITS)
 
#define ONE_HALF   ((int32_t) 1 << (SCALEBITS-1))
 
#define FIX(x)   ((int32_t) ((x) * (1L<<SCALEBITS) + 0.5))
 
#define R_Y_OFF   0 /* offset to R => Y section */
 
#define G_Y_OFF   (1*(MAXJSAMPLE+1)) /* offset to G => Y section */
 
#define B_Y_OFF   (2*(MAXJSAMPLE+1)) /* etc. */
 
#define R_CB_OFF   (3*(MAXJSAMPLE+1))
 
#define G_CB_OFF   (4*(MAXJSAMPLE+1))
 
#define B_CB_OFF   (5*(MAXJSAMPLE+1))
 
#define R_CR_OFF   B_CB_OFF /* B=>Cb, R=>Cr are the same */
 
#define G_CR_OFF   (6*(MAXJSAMPLE+1))
 
#define B_CR_OFF   (7*(MAXJSAMPLE+1))
 
#define TABLE_SIZE   (8*(MAXJSAMPLE+1))
 

Typedefs

typedef my_color_convertermy_cconvert_ptr
 

Functions

static void rgb_ycc_start (j_compress_ptr cinfo)
 
static void rgb_ycc_convert (j_compress_ptr cinfo, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, JDIMENSION output_row, int num_rows)
 
static void rgb_gray_convert (j_compress_ptr cinfo, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, JDIMENSION output_row, int num_rows)
 
static void cmyk_ycck_convert (j_compress_ptr cinfo, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, JDIMENSION output_row, int num_rows)
 
static void grayscale_convert (j_compress_ptr cinfo, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, JDIMENSION output_row, int num_rows)
 
static void null_convert (j_compress_ptr cinfo, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, JDIMENSION output_row, int num_rows)
 
static void null_method (j_compress_ptr cinfo)
 
void jinit_color_converter (j_compress_ptr cinfo)
 

Macro Definition Documentation

#define JPEG_INTERNALS
#define SCALEBITS   16 /* speediest right-shift on some machines */
#define CBCR_OFFSET   ((int32_t) CENTERJSAMPLE << SCALEBITS)
#define ONE_HALF   ((int32_t) 1 << (SCALEBITS-1))
#define FIX (   x)    ((int32_t) ((x) * (1L<<SCALEBITS) + 0.5))
#define R_Y_OFF   0 /* offset to R => Y section */
#define G_Y_OFF   (1*(MAXJSAMPLE+1)) /* offset to G => Y section */
#define B_Y_OFF   (2*(MAXJSAMPLE+1)) /* etc. */
#define R_CB_OFF   (3*(MAXJSAMPLE+1))
#define G_CB_OFF   (4*(MAXJSAMPLE+1))
#define B_CB_OFF   (5*(MAXJSAMPLE+1))
#define R_CR_OFF   B_CB_OFF /* B=>Cb, R=>Cr are the same */
#define G_CR_OFF   (6*(MAXJSAMPLE+1))
#define B_CR_OFF   (7*(MAXJSAMPLE+1))
#define TABLE_SIZE   (8*(MAXJSAMPLE+1))

Typedef Documentation

Function Documentation

static void rgb_ycc_start ( j_compress_ptr  cinfo)
static
87 {
88  my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
89  int32_t * rgb_ycc_tab;
90  int32_t i;
91 
92  /* Allocate and fill in the conversion tables. */
93  cconvert->rgb_ycc_tab = rgb_ycc_tab = (int32_t *)
94  (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
95  (TABLE_SIZE * SIZEOF(int32_t)));
96 
97  for (i = 0; i <= MAXJSAMPLE; i++) {
98  rgb_ycc_tab[i+R_Y_OFF] = FIX(0.29900) * i;
99  rgb_ycc_tab[i+G_Y_OFF] = FIX(0.58700) * i;
100  rgb_ycc_tab[i+B_Y_OFF] = FIX(0.11400) * i + ONE_HALF;
101  rgb_ycc_tab[i+R_CB_OFF] = (-FIX(0.16874)) * i;
102  rgb_ycc_tab[i+G_CB_OFF] = (-FIX(0.33126)) * i;
103  /* We use a rounding fudge-factor of 0.5-epsilon for Cb and Cr.
104  * This ensures that the maximum output will round to MAXJSAMPLE
105  * not MAXJSAMPLE+1, and thus that we don't have to range-limit.
106  */
107  rgb_ycc_tab[i+B_CB_OFF] = FIX(0.50000) * i + CBCR_OFFSET + ONE_HALF-1;
108 /* B=>Cb and R=>Cr tables are the same
109  rgb_ycc_tab[i+R_CR_OFF] = FIX(0.50000) * i + CBCR_OFFSET + ONE_HALF-1;
110 */
111  rgb_ycc_tab[i+G_CR_OFF] = (-FIX(0.41869)) * i;
112  rgb_ycc_tab[i+B_CR_OFF] = (-FIX(0.08131)) * i;
113  }
114 }
Definition: jccolor.cpp:18
int i
Definition: rw_test.cpp:37
void *(* alloc_small)()
Definition: jpeglib.h:764
struct jpeg_color_converter * cconvert
Definition: jpeglib.h:405
Definition: jpeglib.h:258
#define SIZEOF(object)
Definition: jinclude.h:80
#define MAXJSAMPLE
Definition: jmorecfg.h:73
#define R_Y_OFF
Definition: jccolor.cpp:69
#define JPOOL_IMAGE
Definition: jpeglib.h:754
#define G_CB_OFF
Definition: jccolor.cpp:73
int32_t * rgb_ycc_tab
Definition: jccolor.cpp:22
struct jpeg_memory_mgr * mem
Definition: jpeglib.h:274
#define G_Y_OFF
Definition: jccolor.cpp:70
#define B_CR_OFF
Definition: jccolor.cpp:77
#define FIX(x)
Definition: jccolor.cpp:61
#define ONE_HALF
Definition: jccolor.cpp:60
#define R_CB_OFF
Definition: jccolor.cpp:72
#define B_Y_OFF
Definition: jccolor.cpp:71
my_color_converter * my_cconvert_ptr
Definition: jccolor.cpp:25
#define G_CR_OFF
Definition: jccolor.cpp:76
#define CBCR_OFFSET
Definition: jccolor.cpp:59
#define B_CB_OFF
Definition: jccolor.cpp:74
#define TABLE_SIZE
Definition: jccolor.cpp:78
static void rgb_ycc_convert ( j_compress_ptr  cinfo,
JSAMPARRAY  input_buf,
JSAMPIMAGE  output_buf,
JDIMENSION  output_row,
int  num_rows 
)
static
133 {
134  my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
135  register int r, g, b;
136  register int32_t * ctab = cconvert->rgb_ycc_tab;
137  register JSAMPROW inptr;
138  register JSAMPROW outptr0, outptr1, outptr2;
139  register JDIMENSION col;
141 
142  while (--num_rows >= 0) {
143  inptr = *input_buf++;
144  outptr0 = output_buf[0][output_row];
145  outptr1 = output_buf[1][output_row];
146  outptr2 = output_buf[2][output_row];
147  output_row++;
148  for (col = 0; col < num_cols; col++) {
149  r = GETJSAMPLE(inptr[RGB_RED]);
150  g = GETJSAMPLE(inptr[RGB_GREEN]);
151  b = GETJSAMPLE(inptr[RGB_BLUE]);
152  inptr += RGB_PIXELSIZE;
153  /* If the inputs are 0..MAXJSAMPLE, the outputs of these equations
154  * must be too; we do not need an explicit range-limiting operation.
155  * Hence the value being shifted is never negative, and we don't
156  * need the general RIGHT_SHIFT macro.
157  */
158  /* Y */
159  outptr0[col] = (JSAMPLE)
160  ((ctab[r+R_Y_OFF] + ctab[g+G_Y_OFF] + ctab[b+B_Y_OFF])
161  >> SCALEBITS);
162  /* Cb */
163  outptr1[col] = (JSAMPLE)
164  ((ctab[r+R_CB_OFF] + ctab[g+G_CB_OFF] + ctab[b+B_CB_OFF])
165  >> SCALEBITS);
166  /* Cr */
167  outptr2[col] = (JSAMPLE)
168  ((ctab[r+R_CR_OFF] + ctab[g+G_CR_OFF] + ctab[b+B_CR_OFF])
169  >> SCALEBITS);
170  }
171  }
172 }
char JSAMPLE
Definition: jmorecfg.h:64
#define SCALEBITS
Definition: jccolor.cpp:58
Definition: jccolor.cpp:18
#define GETJSAMPLE(value)
Definition: jmorecfg.h:68
struct jpeg_color_converter * cconvert
Definition: jpeglib.h:405
#define R_Y_OFF
Definition: jccolor.cpp:69
JSAMPLE * JSAMPROW
Definition: jpeglib.h:71
long b
Definition: jpegint.h:371
#define G_CB_OFF
Definition: jccolor.cpp:73
int32_t * rgb_ycc_tab
Definition: jccolor.cpp:22
#define G_Y_OFF
Definition: jccolor.cpp:70
#define B_CR_OFF
Definition: jccolor.cpp:77
JBLOCKROW output_row
Definition: jpegint.h:376
int JSAMPARRAY int int num_rows
Definition: jpegint.h:373
int JSAMPARRAY int int JDIMENSION num_cols
Definition: jpegint.h:373
#define R_CB_OFF
Definition: jccolor.cpp:72
#define B_Y_OFF
Definition: jccolor.cpp:71
jpeg_component_info JCOEFPTR JSAMPARRAY output_buf
Definition: jdct.h:102
unsigned int JDIMENSION
Definition: jmorecfg.h:171
my_color_converter * my_cconvert_ptr
Definition: jccolor.cpp:25
#define G_CR_OFF
Definition: jccolor.cpp:76
#define R_CR_OFF
Definition: jccolor.cpp:75
#define B_CB_OFF
Definition: jccolor.cpp:74
JDIMENSION image_width
Definition: jpeglib.h:284
static void rgb_gray_convert ( j_compress_ptr  cinfo,
JSAMPARRAY  input_buf,
JSAMPIMAGE  output_buf,
JDIMENSION  output_row,
int  num_rows 
)
static
189 {
190  my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
191  register int r, g, b;
192  register int32_t * ctab = cconvert->rgb_ycc_tab;
193  register JSAMPROW inptr;
194  register JSAMPROW outptr;
195  register JDIMENSION col;
197 
198  while (--num_rows >= 0) {
199  inptr = *input_buf++;
200  outptr = output_buf[0][output_row];
201  output_row++;
202  for (col = 0; col < num_cols; col++) {
203  r = GETJSAMPLE(inptr[RGB_RED]);
204  g = GETJSAMPLE(inptr[RGB_GREEN]);
205  b = GETJSAMPLE(inptr[RGB_BLUE]);
206  inptr += RGB_PIXELSIZE;
207  /* Y */
208  outptr[col] = (JSAMPLE)
209  ((ctab[r+R_Y_OFF] + ctab[g+G_Y_OFF] + ctab[b+B_Y_OFF])
210  >> SCALEBITS);
211  }
212  }
213 }
char JSAMPLE
Definition: jmorecfg.h:64
#define SCALEBITS
Definition: jccolor.cpp:58
Definition: jccolor.cpp:18
#define GETJSAMPLE(value)
Definition: jmorecfg.h:68
struct jpeg_color_converter * cconvert
Definition: jpeglib.h:405
#define R_Y_OFF
Definition: jccolor.cpp:69
JSAMPLE * JSAMPROW
Definition: jpeglib.h:71
long b
Definition: jpegint.h:371
int32_t * rgb_ycc_tab
Definition: jccolor.cpp:22
#define G_Y_OFF
Definition: jccolor.cpp:70
JBLOCKROW output_row
Definition: jpegint.h:376
int JSAMPARRAY int int num_rows
Definition: jpegint.h:373
int JSAMPARRAY int int JDIMENSION num_cols
Definition: jpegint.h:373
#define B_Y_OFF
Definition: jccolor.cpp:71
jpeg_component_info JCOEFPTR JSAMPARRAY output_buf
Definition: jdct.h:102
unsigned int JDIMENSION
Definition: jmorecfg.h:171
my_color_converter * my_cconvert_ptr
Definition: jccolor.cpp:25
JDIMENSION image_width
Definition: jpeglib.h:284
static void cmyk_ycck_convert ( j_compress_ptr  cinfo,
JSAMPARRAY  input_buf,
JSAMPIMAGE  output_buf,
JDIMENSION  output_row,
int  num_rows 
)
static
228 {
229  my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
230  register int r, g, b;
231  register int32_t * ctab = cconvert->rgb_ycc_tab;
232  register JSAMPROW inptr;
233  register JSAMPROW outptr0, outptr1, outptr2, outptr3;
234  register JDIMENSION col;
236 
237  while (--num_rows >= 0) {
238  inptr = *input_buf++;
239  outptr0 = output_buf[0][output_row];
240  outptr1 = output_buf[1][output_row];
241  outptr2 = output_buf[2][output_row];
242  outptr3 = output_buf[3][output_row];
243  output_row++;
244  for (col = 0; col < num_cols; col++) {
245  r = MAXJSAMPLE - GETJSAMPLE(inptr[0]);
246  g = MAXJSAMPLE - GETJSAMPLE(inptr[1]);
247  b = MAXJSAMPLE - GETJSAMPLE(inptr[2]);
248  /* K passes through as-is */
249  outptr3[col] = inptr[3]; /* don't need GETJSAMPLE here */
250  inptr += 4;
251  /* If the inputs are 0..MAXJSAMPLE, the outputs of these equations
252  * must be too; we do not need an explicit range-limiting operation.
253  * Hence the value being shifted is never negative, and we don't
254  * need the general RIGHT_SHIFT macro.
255  */
256  /* Y */
257  outptr0[col] = (JSAMPLE)
258  ((ctab[r+R_Y_OFF] + ctab[g+G_Y_OFF] + ctab[b+B_Y_OFF])
259  >> SCALEBITS);
260  /* Cb */
261  outptr1[col] = (JSAMPLE)
262  ((ctab[r+R_CB_OFF] + ctab[g+G_CB_OFF] + ctab[b+B_CB_OFF])
263  >> SCALEBITS);
264  /* Cr */
265  outptr2[col] = (JSAMPLE)
266  ((ctab[r+R_CR_OFF] + ctab[g+G_CR_OFF] + ctab[b+B_CR_OFF])
267  >> SCALEBITS);
268  }
269  }
270 }
char JSAMPLE
Definition: jmorecfg.h:64
#define SCALEBITS
Definition: jccolor.cpp:58
Definition: jccolor.cpp:18
#define GETJSAMPLE(value)
Definition: jmorecfg.h:68
struct jpeg_color_converter * cconvert
Definition: jpeglib.h:405
#define MAXJSAMPLE
Definition: jmorecfg.h:73
#define R_Y_OFF
Definition: jccolor.cpp:69
JSAMPLE * JSAMPROW
Definition: jpeglib.h:71
long b
Definition: jpegint.h:371
#define G_CB_OFF
Definition: jccolor.cpp:73
int32_t * rgb_ycc_tab
Definition: jccolor.cpp:22
#define G_Y_OFF
Definition: jccolor.cpp:70
#define B_CR_OFF
Definition: jccolor.cpp:77
JBLOCKROW output_row
Definition: jpegint.h:376
int JSAMPARRAY int int num_rows
Definition: jpegint.h:373
int JSAMPARRAY int int JDIMENSION num_cols
Definition: jpegint.h:373
#define R_CB_OFF
Definition: jccolor.cpp:72
#define B_Y_OFF
Definition: jccolor.cpp:71
jpeg_component_info JCOEFPTR JSAMPARRAY output_buf
Definition: jdct.h:102
unsigned int JDIMENSION
Definition: jmorecfg.h:171
my_color_converter * my_cconvert_ptr
Definition: jccolor.cpp:25
#define G_CR_OFF
Definition: jccolor.cpp:76
#define R_CR_OFF
Definition: jccolor.cpp:75
#define B_CB_OFF
Definition: jccolor.cpp:74
JDIMENSION image_width
Definition: jpeglib.h:284
static void grayscale_convert ( j_compress_ptr  cinfo,
JSAMPARRAY  input_buf,
JSAMPIMAGE  output_buf,
JDIMENSION  output_row,
int  num_rows 
)
static
283 {
284  register JSAMPROW inptr;
285  register JSAMPROW outptr;
286  register JDIMENSION col;
288  int instride = cinfo->input_components;
289 
290  while (--num_rows >= 0) {
291  inptr = *input_buf++;
292  outptr = output_buf[0][output_row];
293  output_row++;
294  for (col = 0; col < num_cols; col++) {
295  outptr[col] = inptr[0]; /* don't need GETJSAMPLE() here */
296  inptr += instride;
297  }
298  }
299 }
JSAMPLE * JSAMPROW
Definition: jpeglib.h:71
JBLOCKROW output_row
Definition: jpegint.h:376
int JSAMPARRAY int int num_rows
Definition: jpegint.h:373
int JSAMPARRAY int int JDIMENSION num_cols
Definition: jpegint.h:373
jpeg_component_info JCOEFPTR JSAMPARRAY output_buf
Definition: jdct.h:102
unsigned int JDIMENSION
Definition: jmorecfg.h:171
int input_components
Definition: jpeglib.h:286
JDIMENSION image_width
Definition: jpeglib.h:284
static void null_convert ( j_compress_ptr  cinfo,
JSAMPARRAY  input_buf,
JSAMPIMAGE  output_buf,
JDIMENSION  output_row,
int  num_rows 
)
static
312 {
313  register JSAMPROW inptr;
314  register JSAMPROW outptr;
315  register JDIMENSION col;
316  register int ci;
317  int nc = cinfo->num_components;
319 
320  while (--num_rows >= 0) {
321  /* It seems fastest to make a separate pass for each component. */
322  for (ci = 0; ci < nc; ci++) {
323  inptr = *input_buf;
324  outptr = output_buf[ci][output_row];
325  for (col = 0; col < num_cols; col++) {
326  outptr[col] = inptr[ci]; /* don't need GETJSAMPLE() here */
327  inptr += nc;
328  }
329  }
330  input_buf++;
331  output_row++;
332  }
333 }
int num_components
Definition: jpeglib.h:301
JSAMPLE * JSAMPROW
Definition: jpeglib.h:71
JBLOCKROW output_row
Definition: jpegint.h:376
int JSAMPARRAY int int num_rows
Definition: jpegint.h:373
int JSAMPARRAY int int JDIMENSION num_cols
Definition: jpegint.h:373
jpeg_component_info JCOEFPTR JSAMPARRAY output_buf
Definition: jdct.h:102
unsigned int JDIMENSION
Definition: jmorecfg.h:171
JDIMENSION image_width
Definition: jpeglib.h:284
static void null_method ( j_compress_ptr  cinfo)
static
342 {
343  /* no work needed */
344 }
void jinit_color_converter ( j_compress_ptr  cinfo)
353 {
354  my_cconvert_ptr cconvert;
355 
356  cconvert = (my_cconvert_ptr)
357  (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
359  cinfo->cconvert = (struct jpeg_color_converter *) cconvert;
360  /* set start_pass to null method until we find out differently */
361  cconvert->pub.start_pass = null_method;
362 
363  /* Make sure input_components agrees with in_color_space */
364  switch (cinfo->in_color_space) {
365  case JCS_GRAYSCALE:
366  if (cinfo->input_components != 1)
368  break;
369 
370  case JCS_RGB:
371 #if RGB_PIXELSIZE != 3
372  if (cinfo->input_components != RGB_PIXELSIZE)
374  break;
375 #endif /* else share code with YCbCr */
376 
377  case JCS_YCbCr:
378  if (cinfo->input_components != 3)
380  break;
381 
382  case JCS_CMYK:
383  case JCS_YCCK:
384  if (cinfo->input_components != 4)
386  break;
387 
388  default: /* JCS_UNKNOWN can be anything */
389  if (cinfo->input_components < 1)
391  break;
392  }
393 
394  /* Check num_components, set conversion method based on requested space */
395  switch (cinfo->jpeg_color_space) {
396  case JCS_GRAYSCALE:
397  if (cinfo->num_components != 1)
399  if (cinfo->in_color_space == JCS_GRAYSCALE)
400  cconvert->pub.color_convert = grayscale_convert;
401  else if (cinfo->in_color_space == JCS_RGB) {
402  cconvert->pub.start_pass = rgb_ycc_start;
403  cconvert->pub.color_convert = rgb_gray_convert;
404  } else if (cinfo->in_color_space == JCS_YCbCr)
405  cconvert->pub.color_convert = grayscale_convert;
406  else
408  break;
409 
410  case JCS_RGB:
411  if (cinfo->num_components != 3)
413  if (cinfo->in_color_space == JCS_RGB && RGB_PIXELSIZE == 3)
414  cconvert->pub.color_convert = null_convert;
415  else
417  break;
418 
419  case JCS_YCbCr:
420  if (cinfo->num_components != 3)
422  if (cinfo->in_color_space == JCS_RGB) {
423  cconvert->pub.start_pass = rgb_ycc_start;
424  cconvert->pub.color_convert = rgb_ycc_convert;
425  } else if (cinfo->in_color_space == JCS_YCbCr)
426  cconvert->pub.color_convert = null_convert;
427  else
429  break;
430 
431  case JCS_CMYK:
432  if (cinfo->num_components != 4)
434  if (cinfo->in_color_space == JCS_CMYK)
435  cconvert->pub.color_convert = null_convert;
436  else
438  break;
439 
440  case JCS_YCCK:
441  if (cinfo->num_components != 4)
443  if (cinfo->in_color_space == JCS_CMYK) {
444  cconvert->pub.start_pass = rgb_ycc_start;
445  cconvert->pub.color_convert = cmyk_ycck_convert;
446  } else if (cinfo->in_color_space == JCS_YCCK)
447  cconvert->pub.color_convert = null_convert;
448  else
450  break;
451 
452  default: /* allow null conversion of JCS_UNKNOWN */
453  if (cinfo->jpeg_color_space != cinfo->in_color_space ||
454  cinfo->num_components != cinfo->input_components)
456  cconvert->pub.color_convert = null_convert;
457  break;
458  }
459 }
Definition: jpeglib.h:217
static void null_method(j_compress_ptr cinfo)
Definition: jccolor.cpp:341
Definition: jerror.h:73
J_COLOR_SPACE jpeg_color_space
Definition: jpeglib.h:302
Definition: jccolor.cpp:18
Definition: jpegint.h:83
struct jpeg_common_struct * j_common_ptr
Definition: jpeglib.h:266
void *(* alloc_small)()
Definition: jpeglib.h:764
struct jpeg_color_converter * cconvert
Definition: jpeglib.h:405
int num_components
Definition: jpeglib.h:301
#define ERREXIT(cinfo, code)
Definition: jerror.h:205
#define SIZEOF(object)
Definition: jinclude.h:80
Definition: jerror.h:52
J_COLOR_SPACE in_color_space
Definition: jpeglib.h:287
#define JPOOL_IMAGE
Definition: jpeglib.h:754
struct jpeg_memory_mgr * mem
Definition: jpeglib.h:274
Definition: jpeglib.h:214
Definition: jpeglib.h:213
struct jpeg_color_converter pub
Definition: jccolor.cpp:19
static void rgb_ycc_convert(j_compress_ptr cinfo, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, JDIMENSION output_row, int num_rows)
Definition: jccolor.cpp:130
static void null_convert(j_compress_ptr cinfo, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, JDIMENSION output_row, int num_rows)
Definition: jccolor.cpp:309
Definition: jerror.h:51
static void cmyk_ycck_convert(j_compress_ptr cinfo, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, JDIMENSION output_row, int num_rows)
Definition: jccolor.cpp:225
static void grayscale_convert(j_compress_ptr cinfo, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, JDIMENSION output_row, int num_rows)
Definition: jccolor.cpp:280
static void rgb_gray_convert(j_compress_ptr cinfo, JSAMPARRAY input_buf, JSAMPIMAGE output_buf, JDIMENSION output_row, int num_rows)
Definition: jccolor.cpp:186
Definition: jpeglib.h:215
static void rgb_ycc_start(j_compress_ptr cinfo)
Definition: jccolor.cpp:86
my_color_converter * my_cconvert_ptr
Definition: jccolor.cpp:25
Definition: jpeglib.h:216
int input_components
Definition: jpeglib.h:286