| OLD | NEW |
| 1 #if !defined(_FX_JPEG_TURBO_) | |
| 2 /* | 1 /* |
| 3 * jcmarker.c | 2 * jcmarker.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 routines to write JPEG datastream markers. | 8 * This file contains routines to write JPEG datastream markers. |
| 10 */ | 9 */ |
| 11 | 10 |
| (...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 marker->pub.write_file_header = write_file_header; | 655 marker->pub.write_file_header = write_file_header; |
| 657 marker->pub.write_frame_header = write_frame_header; | 656 marker->pub.write_frame_header = write_frame_header; |
| 658 marker->pub.write_scan_header = write_scan_header; | 657 marker->pub.write_scan_header = write_scan_header; |
| 659 marker->pub.write_file_trailer = write_file_trailer; | 658 marker->pub.write_file_trailer = write_file_trailer; |
| 660 marker->pub.write_tables_only = write_tables_only; | 659 marker->pub.write_tables_only = write_tables_only; |
| 661 marker->pub.write_marker_header = write_marker_header; | 660 marker->pub.write_marker_header = write_marker_header; |
| 662 marker->pub.write_marker_byte = write_marker_byte; | 661 marker->pub.write_marker_byte = write_marker_byte; |
| 663 /* Initialize private state */ | 662 /* Initialize private state */ |
| 664 marker->last_restart_interval = 0; | 663 marker->last_restart_interval = 0; |
| 665 } | 664 } |
| 666 | |
| 667 #endif //_FX_JPEG_TURBO_ | |
| OLD | NEW |