Home | History | Annotate | Download | only in other

Lines Matching refs:dct_method

136 int decompress(FILE*  input_file, int  dct_method, int  disable_rgb)
184 cinfo.dct_method = dct_method;
243 int dct_method = JDCT_DEFAULT;
283 dct_method = strtol(arg, NULL, 10);
284 switch (dct_method) {
286 dct_method = JDCT_DEFAULT;
289 dct_method = JDCT_IFAST;
292 dct_method = JDCT_ISLOW;
295 dct_method = JDCT_FLOAT;
330 decompress(f, dct_method, disable_rgb);