Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: third_party/libjpeg/fpdfapi_jdinput.c

Issue 1433803002: Get rid of _FX_JPEG_TURBO_ (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/libjpeg/fpdfapi_jdhuff.c ('k') | third_party/libjpeg/fpdfapi_jdmainct.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #if !defined(_FX_JPEG_TURBO_)
2 /* 1 /*
3 * jdinput.c 2 * jdinput.c
4 * 3 *
5 * Copyright (C) 1991-1997, Thomas G. Lane. 4 * Copyright (C) 1991-1997, 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 input control logic for the JPEG decompressor. 8 * This file contains input control logic for the JPEG decompressor.
10 * These routines are concerned with controlling the decompressor's input 9 * These routines are concerned with controlling the decompressor's input
11 * processing (marker reading and coefficient decoding). The actual input 10 * processing (marker reading and coefficient decoding). The actual input
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 inputctl->pub.reset_input_controller = reset_input_controller; 372 inputctl->pub.reset_input_controller = reset_input_controller;
374 inputctl->pub.start_input_pass = start_input_pass; 373 inputctl->pub.start_input_pass = start_input_pass;
375 inputctl->pub.finish_input_pass = finish_input_pass; 374 inputctl->pub.finish_input_pass = finish_input_pass;
376 /* Initialize state: can't use reset_input_controller since we don't 375 /* Initialize state: can't use reset_input_controller since we don't
377 * want to try to reset other modules yet. 376 * want to try to reset other modules yet.
378 */ 377 */
379 inputctl->pub.has_multiple_scans = FALSE; /* "unknown" would be better */ 378 inputctl->pub.has_multiple_scans = FALSE; /* "unknown" would be better */
380 inputctl->pub.eoi_reached = FALSE; 379 inputctl->pub.eoi_reached = FALSE;
381 inputctl->inheaders = TRUE; 380 inputctl->inheaders = TRUE;
382 } 381 }
383
384 #endif //_FX_JPEG_TURBO_
OLDNEW
« no previous file with comments | « third_party/libjpeg/fpdfapi_jdhuff.c ('k') | third_party/libjpeg/fpdfapi_jdmainct.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698