| OLD | NEW |
| 1 #if !defined(_FX_JPEG_TURBO_) | |
| 2 /* | 1 /* |
| 3 * jcparam.c | 2 * jcparam.c |
| 4 * | 3 * |
| 5 * Copyright (C) 1991-1998, Thomas G. Lane. | 4 * Copyright (C) 1991-1998, 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 optional default-setting code for the JPEG compressor. | 8 * This file contains optional default-setting code for the JPEG compressor. |
| 10 * Applications do not have to use this file, but those that don't use it | 9 * Applications do not have to use this file, but those that don't use it |
| 11 * must know a lot more about the innards of the JPEG code. | 10 * must know a lot more about the innards of the JPEG code. |
| (...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 scanptr = fill_scans(scanptr, ncomps, 6, 63, 0, 2); | 601 scanptr = fill_scans(scanptr, ncomps, 6, 63, 0, 2); |
| 603 /* Successive approximation second pass */ | 602 /* Successive approximation second pass */ |
| 604 scanptr = fill_scans(scanptr, ncomps, 1, 63, 2, 1); | 603 scanptr = fill_scans(scanptr, ncomps, 1, 63, 2, 1); |
| 605 /* Successive approximation final pass */ | 604 /* Successive approximation final pass */ |
| 606 scanptr = fill_dc_scans(scanptr, ncomps, 1, 0); | 605 scanptr = fill_dc_scans(scanptr, ncomps, 1, 0); |
| 607 scanptr = fill_scans(scanptr, ncomps, 1, 63, 1, 0); | 606 scanptr = fill_scans(scanptr, ncomps, 1, 63, 1, 0); |
| 608 } | 607 } |
| 609 } | 608 } |
| 610 | 609 |
| 611 #endif /* C_PROGRESSIVE_SUPPORTED */ | 610 #endif /* C_PROGRESSIVE_SUPPORTED */ |
| 612 | |
| 613 #endif //_FX_JPEG_TURBO_ | |
| OLD | NEW |