| OLD | NEW |
| 1 #if !defined(_FX_JPEG_TURBO_) | |
| 2 /* | 1 /* |
| 3 * jcdctmgr.c | 2 * jcdctmgr.c |
| 4 * | 3 * |
| 5 * Copyright (C) 1994-1996, Thomas G. Lane. | 4 * Copyright (C) 1994-1996, Thomas G. Lane. |
| 6 * This file is part of the Independent JPEG Group's software. | 5 * This file is part of the Independent JPEG Group's software. |
| 7 * For conditions of distribution and use, see the accompanying README file. | 6 * For conditions of distribution and use, see the accompanying README file. |
| 8 * | 7 * |
| 9 * This file contains the forward-DCT management logic. | 8 * This file contains the forward-DCT management logic. |
| 10 * This code selects a particular DCT implementation to be used, | 9 * This code selects a particular DCT implementation to be used, |
| 11 * and it performs related housekeeping chores including coefficient | 10 * and it performs related housekeeping chores including coefficient |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 } | 378 } |
| 380 | 379 |
| 381 /* Mark divisor tables unallocated */ | 380 /* Mark divisor tables unallocated */ |
| 382 for (i = 0; i < NUM_QUANT_TBLS; i++) { | 381 for (i = 0; i < NUM_QUANT_TBLS; i++) { |
| 383 fdct->divisors[i] = NULL; | 382 fdct->divisors[i] = NULL; |
| 384 #ifdef DCT_FLOAT_SUPPORTED | 383 #ifdef DCT_FLOAT_SUPPORTED |
| 385 fdct->float_divisors[i] = NULL; | 384 fdct->float_divisors[i] = NULL; |
| 386 #endif | 385 #endif |
| 387 } | 386 } |
| 388 } | 387 } |
| 389 | |
| 390 #endif //_FX_JPEG_TURBO_ | |
| OLD | NEW |