Home | History | Annotate | Download | only in jpeg-6b

Lines Matching defs:table

12  *	-qslots N[,N,...]	Set component quantization table selectors
81 * table 0 for luminance (or primary) components, 1 for chrominance components.
82 * You must use -qslots if you want a different component->table mapping.
88 unsigned int table[DCTSIZE2];
91 fprintf(stderr, "Can't open table file %s\n", filename);
96 while (read_text_integer(fp, &val, &termchar)) { /* read 1st element of table */
102 table[0] = (unsigned int) val;
105 fprintf(stderr, "Invalid table data in file %s\n", filename);
109 table[i] = (unsigned int) val;
111 jpeg_add_quant_table(cinfo, tblno, table, scale_factor, force_baseline);
267 /* Process a quantization-table-selectors parameter string, of the form
272 int val = 0; /* default table # */
292 /* reached end of parameter, set remaining components to last table */