dbf-halloween2015

annotate libs/libjpeg/jdmarker.c @ 1:c3f5c32cb210

barfed all the libraries in the source tree to make porting easier
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 01 Nov 2015 00:36:56 +0200
parents
children
rev   line source
nuclear@1 1 /*
nuclear@1 2 * jdmarker.c
nuclear@1 3 *
nuclear@1 4 * Copyright (C) 1991-1998, Thomas G. Lane.
nuclear@1 5 * This file is part of the Independent JPEG Group's software.
nuclear@1 6 * For conditions of distribution and use, see the accompanying README file.
nuclear@1 7 *
nuclear@1 8 * This file contains routines to decode JPEG datastream markers.
nuclear@1 9 * Most of the complexity arises from our desire to support input
nuclear@1 10 * suspension: if not all of the data for a marker is available,
nuclear@1 11 * we must exit back to the application. On resumption, we reprocess
nuclear@1 12 * the marker.
nuclear@1 13 */
nuclear@1 14
nuclear@1 15 #define JPEG_INTERNALS
nuclear@1 16 #include "jinclude.h"
nuclear@1 17 #include "jpeglib.h"
nuclear@1 18
nuclear@1 19
nuclear@1 20 typedef enum { /* JPEG marker codes */
nuclear@1 21 M_SOF0 = 0xc0,
nuclear@1 22 M_SOF1 = 0xc1,
nuclear@1 23 M_SOF2 = 0xc2,
nuclear@1 24 M_SOF3 = 0xc3,
nuclear@1 25
nuclear@1 26 M_SOF5 = 0xc5,
nuclear@1 27 M_SOF6 = 0xc6,
nuclear@1 28 M_SOF7 = 0xc7,
nuclear@1 29
nuclear@1 30 M_JPG = 0xc8,
nuclear@1 31 M_SOF9 = 0xc9,
nuclear@1 32 M_SOF10 = 0xca,
nuclear@1 33 M_SOF11 = 0xcb,
nuclear@1 34
nuclear@1 35 M_SOF13 = 0xcd,
nuclear@1 36 M_SOF14 = 0xce,
nuclear@1 37 M_SOF15 = 0xcf,
nuclear@1 38
nuclear@1 39 M_DHT = 0xc4,
nuclear@1 40
nuclear@1 41 M_DAC = 0xcc,
nuclear@1 42
nuclear@1 43 M_RST0 = 0xd0,
nuclear@1 44 M_RST1 = 0xd1,
nuclear@1 45 M_RST2 = 0xd2,
nuclear@1 46 M_RST3 = 0xd3,
nuclear@1 47 M_RST4 = 0xd4,
nuclear@1 48 M_RST5 = 0xd5,
nuclear@1 49 M_RST6 = 0xd6,
nuclear@1 50 M_RST7 = 0xd7,
nuclear@1 51
nuclear@1 52 M_SOI = 0xd8,
nuclear@1 53 M_EOI = 0xd9,
nuclear@1 54 M_SOS = 0xda,
nuclear@1 55 M_DQT = 0xdb,
nuclear@1 56 M_DNL = 0xdc,
nuclear@1 57 M_DRI = 0xdd,
nuclear@1 58 M_DHP = 0xde,
nuclear@1 59 M_EXP = 0xdf,
nuclear@1 60
nuclear@1 61 M_APP0 = 0xe0,
nuclear@1 62 M_APP1 = 0xe1,
nuclear@1 63 M_APP2 = 0xe2,
nuclear@1 64 M_APP3 = 0xe3,
nuclear@1 65 M_APP4 = 0xe4,
nuclear@1 66 M_APP5 = 0xe5,
nuclear@1 67 M_APP6 = 0xe6,
nuclear@1 68 M_APP7 = 0xe7,
nuclear@1 69 M_APP8 = 0xe8,
nuclear@1 70 M_APP9 = 0xe9,
nuclear@1 71 M_APP10 = 0xea,
nuclear@1 72 M_APP11 = 0xeb,
nuclear@1 73 M_APP12 = 0xec,
nuclear@1 74 M_APP13 = 0xed,
nuclear@1 75 M_APP14 = 0xee,
nuclear@1 76 M_APP15 = 0xef,
nuclear@1 77
nuclear@1 78 M_JPG0 = 0xf0,
nuclear@1 79 M_JPG13 = 0xfd,
nuclear@1 80 M_COM = 0xfe,
nuclear@1 81
nuclear@1 82 M_TEM = 0x01,
nuclear@1 83
nuclear@1 84 M_ERROR = 0x100
nuclear@1 85 } JPEG_MARKER;
nuclear@1 86
nuclear@1 87
nuclear@1 88 /* Private state */
nuclear@1 89
nuclear@1 90 typedef struct {
nuclear@1 91 struct jpeg_marker_reader pub; /* public fields */
nuclear@1 92
nuclear@1 93 /* Application-overridable marker processing methods */
nuclear@1 94 jpeg_marker_parser_method process_COM;
nuclear@1 95 jpeg_marker_parser_method process_APPn[16];
nuclear@1 96
nuclear@1 97 /* Limit on marker data length to save for each marker type */
nuclear@1 98 unsigned int length_limit_COM;
nuclear@1 99 unsigned int length_limit_APPn[16];
nuclear@1 100
nuclear@1 101 /* Status of COM/APPn marker saving */
nuclear@1 102 jpeg_saved_marker_ptr cur_marker; /* NULL if not processing a marker */
nuclear@1 103 unsigned int bytes_read; /* data bytes read so far in marker */
nuclear@1 104 /* Note: cur_marker is not linked into marker_list until it's all read. */
nuclear@1 105 } my_marker_reader;
nuclear@1 106
nuclear@1 107 typedef my_marker_reader * my_marker_ptr;
nuclear@1 108
nuclear@1 109
nuclear@1 110 /*
nuclear@1 111 * Macros for fetching data from the data source module.
nuclear@1 112 *
nuclear@1 113 * At all times, cinfo->src->next_input_byte and ->bytes_in_buffer reflect
nuclear@1 114 * the current restart point; we update them only when we have reached a
nuclear@1 115 * suitable place to restart if a suspension occurs.
nuclear@1 116 */
nuclear@1 117
nuclear@1 118 /* Declare and initialize local copies of input pointer/count */
nuclear@1 119 #define INPUT_VARS(cinfo) \
nuclear@1 120 struct jpeg_source_mgr * datasrc = (cinfo)->src; \
nuclear@1 121 const JOCTET * next_input_byte = datasrc->next_input_byte; \
nuclear@1 122 size_t bytes_in_buffer = datasrc->bytes_in_buffer
nuclear@1 123
nuclear@1 124 /* Unload the local copies --- do this only at a restart boundary */
nuclear@1 125 #define INPUT_SYNC(cinfo) \
nuclear@1 126 ( datasrc->next_input_byte = next_input_byte, \
nuclear@1 127 datasrc->bytes_in_buffer = bytes_in_buffer )
nuclear@1 128
nuclear@1 129 /* Reload the local copies --- used only in MAKE_BYTE_AVAIL */
nuclear@1 130 #define INPUT_RELOAD(cinfo) \
nuclear@1 131 ( next_input_byte = datasrc->next_input_byte, \
nuclear@1 132 bytes_in_buffer = datasrc->bytes_in_buffer )
nuclear@1 133
nuclear@1 134 /* Internal macro for INPUT_BYTE and INPUT_2BYTES: make a byte available.
nuclear@1 135 * Note we do *not* do INPUT_SYNC before calling fill_input_buffer,
nuclear@1 136 * but we must reload the local copies after a successful fill.
nuclear@1 137 */
nuclear@1 138 #define MAKE_BYTE_AVAIL(cinfo,action) \
nuclear@1 139 if (bytes_in_buffer == 0) { \
nuclear@1 140 if (! (*datasrc->fill_input_buffer) (cinfo)) \
nuclear@1 141 { action; } \
nuclear@1 142 INPUT_RELOAD(cinfo); \
nuclear@1 143 }
nuclear@1 144
nuclear@1 145 /* Read a byte into variable V.
nuclear@1 146 * If must suspend, take the specified action (typically "return FALSE").
nuclear@1 147 */
nuclear@1 148 #define INPUT_BYTE(cinfo,V,action) \
nuclear@1 149 MAKESTMT( MAKE_BYTE_AVAIL(cinfo,action); \
nuclear@1 150 bytes_in_buffer--; \
nuclear@1 151 V = GETJOCTET(*next_input_byte++); )
nuclear@1 152
nuclear@1 153 /* As above, but read two bytes interpreted as an unsigned 16-bit integer.
nuclear@1 154 * V should be declared unsigned int or perhaps INT32.
nuclear@1 155 */
nuclear@1 156 #define INPUT_2BYTES(cinfo,V,action) \
nuclear@1 157 MAKESTMT( MAKE_BYTE_AVAIL(cinfo,action); \
nuclear@1 158 bytes_in_buffer--; \
nuclear@1 159 V = ((unsigned int) GETJOCTET(*next_input_byte++)) << 8; \
nuclear@1 160 MAKE_BYTE_AVAIL(cinfo,action); \
nuclear@1 161 bytes_in_buffer--; \
nuclear@1 162 V += GETJOCTET(*next_input_byte++); )
nuclear@1 163
nuclear@1 164
nuclear@1 165 /*
nuclear@1 166 * Routines to process JPEG markers.
nuclear@1 167 *
nuclear@1 168 * Entry condition: JPEG marker itself has been read and its code saved
nuclear@1 169 * in cinfo->unread_marker; input restart point is just after the marker.
nuclear@1 170 *
nuclear@1 171 * Exit: if return TRUE, have read and processed any parameters, and have
nuclear@1 172 * updated the restart point to point after the parameters.
nuclear@1 173 * If return FALSE, was forced to suspend before reaching end of
nuclear@1 174 * marker parameters; restart point has not been moved. Same routine
nuclear@1 175 * will be called again after application supplies more input data.
nuclear@1 176 *
nuclear@1 177 * This approach to suspension assumes that all of a marker's parameters
nuclear@1 178 * can fit into a single input bufferload. This should hold for "normal"
nuclear@1 179 * markers. Some COM/APPn markers might have large parameter segments
nuclear@1 180 * that might not fit. If we are simply dropping such a marker, we use
nuclear@1 181 * skip_input_data to get past it, and thereby put the problem on the
nuclear@1 182 * source manager's shoulders. If we are saving the marker's contents
nuclear@1 183 * into memory, we use a slightly different convention: when forced to
nuclear@1 184 * suspend, the marker processor updates the restart point to the end of
nuclear@1 185 * what it's consumed (ie, the end of the buffer) before returning FALSE.
nuclear@1 186 * On resumption, cinfo->unread_marker still contains the marker code,
nuclear@1 187 * but the data source will point to the next chunk of marker data.
nuclear@1 188 * The marker processor must retain internal state to deal with this.
nuclear@1 189 *
nuclear@1 190 * Note that we don't bother to avoid duplicate trace messages if a
nuclear@1 191 * suspension occurs within marker parameters. Other side effects
nuclear@1 192 * require more care.
nuclear@1 193 */
nuclear@1 194
nuclear@1 195
nuclear@1 196 LOCAL(boolean)
nuclear@1 197 get_soi (j_decompress_ptr cinfo)
nuclear@1 198 /* Process an SOI marker */
nuclear@1 199 {
nuclear@1 200 int i;
nuclear@1 201
nuclear@1 202 TRACEMS(cinfo, 1, JTRC_SOI);
nuclear@1 203
nuclear@1 204 if (cinfo->marker->saw_SOI)
nuclear@1 205 ERREXIT(cinfo, JERR_SOI_DUPLICATE);
nuclear@1 206
nuclear@1 207 /* Reset all parameters that are defined to be reset by SOI */
nuclear@1 208
nuclear@1 209 for (i = 0; i < NUM_ARITH_TBLS; i++) {
nuclear@1 210 cinfo->arith_dc_L[i] = 0;
nuclear@1 211 cinfo->arith_dc_U[i] = 1;
nuclear@1 212 cinfo->arith_ac_K[i] = 5;
nuclear@1 213 }
nuclear@1 214 cinfo->restart_interval = 0;
nuclear@1 215
nuclear@1 216 /* Set initial assumptions for colorspace etc */
nuclear@1 217
nuclear@1 218 cinfo->jpeg_color_space = JCS_UNKNOWN;
nuclear@1 219 cinfo->CCIR601_sampling = FALSE; /* Assume non-CCIR sampling??? */
nuclear@1 220
nuclear@1 221 cinfo->saw_JFIF_marker = FALSE;
nuclear@1 222 cinfo->JFIF_major_version = 1; /* set default JFIF APP0 values */
nuclear@1 223 cinfo->JFIF_minor_version = 1;
nuclear@1 224 cinfo->density_unit = 0;
nuclear@1 225 cinfo->X_density = 1;
nuclear@1 226 cinfo->Y_density = 1;
nuclear@1 227 cinfo->saw_Adobe_marker = FALSE;
nuclear@1 228 cinfo->Adobe_transform = 0;
nuclear@1 229
nuclear@1 230 cinfo->marker->saw_SOI = TRUE;
nuclear@1 231
nuclear@1 232 return TRUE;
nuclear@1 233 }
nuclear@1 234
nuclear@1 235
nuclear@1 236 LOCAL(boolean)
nuclear@1 237 get_sof (j_decompress_ptr cinfo, boolean is_prog, boolean is_arith)
nuclear@1 238 /* Process a SOFn marker */
nuclear@1 239 {
nuclear@1 240 INT32 length;
nuclear@1 241 int c, ci;
nuclear@1 242 jpeg_component_info * compptr;
nuclear@1 243 INPUT_VARS(cinfo);
nuclear@1 244
nuclear@1 245 cinfo->progressive_mode = is_prog;
nuclear@1 246 cinfo->arith_code = is_arith;
nuclear@1 247
nuclear@1 248 INPUT_2BYTES(cinfo, length, return FALSE);
nuclear@1 249
nuclear@1 250 INPUT_BYTE(cinfo, cinfo->data_precision, return FALSE);
nuclear@1 251 INPUT_2BYTES(cinfo, cinfo->image_height, return FALSE);
nuclear@1 252 INPUT_2BYTES(cinfo, cinfo->image_width, return FALSE);
nuclear@1 253 INPUT_BYTE(cinfo, cinfo->num_components, return FALSE);
nuclear@1 254
nuclear@1 255 length -= 8;
nuclear@1 256
nuclear@1 257 TRACEMS4(cinfo, 1, JTRC_SOF, cinfo->unread_marker,
nuclear@1 258 (int) cinfo->image_width, (int) cinfo->image_height,
nuclear@1 259 cinfo->num_components);
nuclear@1 260
nuclear@1 261 if (cinfo->marker->saw_SOF)
nuclear@1 262 ERREXIT(cinfo, JERR_SOF_DUPLICATE);
nuclear@1 263
nuclear@1 264 /* We don't support files in which the image height is initially specified */
nuclear@1 265 /* as 0 and is later redefined by DNL. As long as we have to check that, */
nuclear@1 266 /* might as well have a general sanity check. */
nuclear@1 267 if (cinfo->image_height <= 0 || cinfo->image_width <= 0
nuclear@1 268 || cinfo->num_components <= 0)
nuclear@1 269 ERREXIT(cinfo, JERR_EMPTY_IMAGE);
nuclear@1 270
nuclear@1 271 if (length != (cinfo->num_components * 3))
nuclear@1 272 ERREXIT(cinfo, JERR_BAD_LENGTH);
nuclear@1 273
nuclear@1 274 if (cinfo->comp_info == NULL) /* do only once, even if suspend */
nuclear@1 275 cinfo->comp_info = (jpeg_component_info *) (*cinfo->mem->alloc_small)
nuclear@1 276 ((j_common_ptr) cinfo, JPOOL_IMAGE,
nuclear@1 277 cinfo->num_components * SIZEOF(jpeg_component_info));
nuclear@1 278
nuclear@1 279 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
nuclear@1 280 ci++, compptr++) {
nuclear@1 281 compptr->component_index = ci;
nuclear@1 282 INPUT_BYTE(cinfo, compptr->component_id, return FALSE);
nuclear@1 283 INPUT_BYTE(cinfo, c, return FALSE);
nuclear@1 284 compptr->h_samp_factor = (c >> 4) & 15;
nuclear@1 285 compptr->v_samp_factor = (c ) & 15;
nuclear@1 286 INPUT_BYTE(cinfo, compptr->quant_tbl_no, return FALSE);
nuclear@1 287
nuclear@1 288 TRACEMS4(cinfo, 1, JTRC_SOF_COMPONENT,
nuclear@1 289 compptr->component_id, compptr->h_samp_factor,
nuclear@1 290 compptr->v_samp_factor, compptr->quant_tbl_no);
nuclear@1 291 }
nuclear@1 292
nuclear@1 293 cinfo->marker->saw_SOF = TRUE;
nuclear@1 294
nuclear@1 295 INPUT_SYNC(cinfo);
nuclear@1 296 return TRUE;
nuclear@1 297 }
nuclear@1 298
nuclear@1 299
nuclear@1 300 LOCAL(boolean)
nuclear@1 301 get_sos (j_decompress_ptr cinfo)
nuclear@1 302 /* Process a SOS marker */
nuclear@1 303 {
nuclear@1 304 INT32 length;
nuclear@1 305 int i, ci, n, c, cc;
nuclear@1 306 jpeg_component_info * compptr;
nuclear@1 307 INPUT_VARS(cinfo);
nuclear@1 308
nuclear@1 309 if (! cinfo->marker->saw_SOF)
nuclear@1 310 ERREXIT(cinfo, JERR_SOS_NO_SOF);
nuclear@1 311
nuclear@1 312 INPUT_2BYTES(cinfo, length, return FALSE);
nuclear@1 313
nuclear@1 314 INPUT_BYTE(cinfo, n, return FALSE); /* Number of components */
nuclear@1 315
nuclear@1 316 TRACEMS1(cinfo, 1, JTRC_SOS, n);
nuclear@1 317
nuclear@1 318 if (length != (n * 2 + 6) || n < 1 || n > MAX_COMPS_IN_SCAN)
nuclear@1 319 ERREXIT(cinfo, JERR_BAD_LENGTH);
nuclear@1 320
nuclear@1 321 cinfo->comps_in_scan = n;
nuclear@1 322
nuclear@1 323 /* Collect the component-spec parameters */
nuclear@1 324
nuclear@1 325 for (i = 0; i < n; i++) {
nuclear@1 326 INPUT_BYTE(cinfo, cc, return FALSE);
nuclear@1 327 INPUT_BYTE(cinfo, c, return FALSE);
nuclear@1 328
nuclear@1 329 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
nuclear@1 330 ci++, compptr++) {
nuclear@1 331 if (cc == compptr->component_id)
nuclear@1 332 goto id_found;
nuclear@1 333 }
nuclear@1 334
nuclear@1 335 ERREXIT1(cinfo, JERR_BAD_COMPONENT_ID, cc);
nuclear@1 336
nuclear@1 337 id_found:
nuclear@1 338
nuclear@1 339 cinfo->cur_comp_info[i] = compptr;
nuclear@1 340 compptr->dc_tbl_no = (c >> 4) & 15;
nuclear@1 341 compptr->ac_tbl_no = (c ) & 15;
nuclear@1 342
nuclear@1 343 TRACEMS3(cinfo, 1, JTRC_SOS_COMPONENT, cc,
nuclear@1 344 compptr->dc_tbl_no, compptr->ac_tbl_no);
nuclear@1 345 }
nuclear@1 346
nuclear@1 347 /* Collect the additional scan parameters Ss, Se, Ah/Al. */
nuclear@1 348 INPUT_BYTE(cinfo, c, return FALSE);
nuclear@1 349 cinfo->Ss = c;
nuclear@1 350 INPUT_BYTE(cinfo, c, return FALSE);
nuclear@1 351 cinfo->Se = c;
nuclear@1 352 INPUT_BYTE(cinfo, c, return FALSE);
nuclear@1 353 cinfo->Ah = (c >> 4) & 15;
nuclear@1 354 cinfo->Al = (c ) & 15;
nuclear@1 355
nuclear@1 356 TRACEMS4(cinfo, 1, JTRC_SOS_PARAMS, cinfo->Ss, cinfo->Se,
nuclear@1 357 cinfo->Ah, cinfo->Al);
nuclear@1 358
nuclear@1 359 /* Prepare to scan data & restart markers */
nuclear@1 360 cinfo->marker->next_restart_num = 0;
nuclear@1 361
nuclear@1 362 /* Count another SOS marker */
nuclear@1 363 cinfo->input_scan_number++;
nuclear@1 364
nuclear@1 365 INPUT_SYNC(cinfo);
nuclear@1 366 return TRUE;
nuclear@1 367 }
nuclear@1 368
nuclear@1 369
nuclear@1 370 #ifdef D_ARITH_CODING_SUPPORTED
nuclear@1 371
nuclear@1 372 LOCAL(boolean)
nuclear@1 373 get_dac (j_decompress_ptr cinfo)
nuclear@1 374 /* Process a DAC marker */
nuclear@1 375 {
nuclear@1 376 INT32 length;
nuclear@1 377 int index, val;
nuclear@1 378 INPUT_VARS(cinfo);
nuclear@1 379
nuclear@1 380 INPUT_2BYTES(cinfo, length, return FALSE);
nuclear@1 381 length -= 2;
nuclear@1 382
nuclear@1 383 while (length > 0) {
nuclear@1 384 INPUT_BYTE(cinfo, index, return FALSE);
nuclear@1 385 INPUT_BYTE(cinfo, val, return FALSE);
nuclear@1 386
nuclear@1 387 length -= 2;
nuclear@1 388
nuclear@1 389 TRACEMS2(cinfo, 1, JTRC_DAC, index, val);
nuclear@1 390
nuclear@1 391 if (index < 0 || index >= (2*NUM_ARITH_TBLS))
nuclear@1 392 ERREXIT1(cinfo, JERR_DAC_INDEX, index);
nuclear@1 393
nuclear@1 394 if (index >= NUM_ARITH_TBLS) { /* define AC table */
nuclear@1 395 cinfo->arith_ac_K[index-NUM_ARITH_TBLS] = (UINT8) val;
nuclear@1 396 } else { /* define DC table */
nuclear@1 397 cinfo->arith_dc_L[index] = (UINT8) (val & 0x0F);
nuclear@1 398 cinfo->arith_dc_U[index] = (UINT8) (val >> 4);
nuclear@1 399 if (cinfo->arith_dc_L[index] > cinfo->arith_dc_U[index])
nuclear@1 400 ERREXIT1(cinfo, JERR_DAC_VALUE, val);
nuclear@1 401 }
nuclear@1 402 }
nuclear@1 403
nuclear@1 404 if (length != 0)
nuclear@1 405 ERREXIT(cinfo, JERR_BAD_LENGTH);
nuclear@1 406
nuclear@1 407 INPUT_SYNC(cinfo);
nuclear@1 408 return TRUE;
nuclear@1 409 }
nuclear@1 410
nuclear@1 411 #else /* ! D_ARITH_CODING_SUPPORTED */
nuclear@1 412
nuclear@1 413 #define get_dac(cinfo) skip_variable(cinfo)
nuclear@1 414
nuclear@1 415 #endif /* D_ARITH_CODING_SUPPORTED */
nuclear@1 416
nuclear@1 417
nuclear@1 418 LOCAL(boolean)
nuclear@1 419 get_dht (j_decompress_ptr cinfo)
nuclear@1 420 /* Process a DHT marker */
nuclear@1 421 {
nuclear@1 422 INT32 length;
nuclear@1 423 UINT8 bits[17];
nuclear@1 424 UINT8 huffval[256];
nuclear@1 425 int i, index, count;
nuclear@1 426 JHUFF_TBL **htblptr;
nuclear@1 427 INPUT_VARS(cinfo);
nuclear@1 428
nuclear@1 429 INPUT_2BYTES(cinfo, length, return FALSE);
nuclear@1 430 length -= 2;
nuclear@1 431
nuclear@1 432 while (length > 16) {
nuclear@1 433 INPUT_BYTE(cinfo, index, return FALSE);
nuclear@1 434
nuclear@1 435 TRACEMS1(cinfo, 1, JTRC_DHT, index);
nuclear@1 436
nuclear@1 437 bits[0] = 0;
nuclear@1 438 count = 0;
nuclear@1 439 for (i = 1; i <= 16; i++) {
nuclear@1 440 INPUT_BYTE(cinfo, bits[i], return FALSE);
nuclear@1 441 count += bits[i];
nuclear@1 442 }
nuclear@1 443
nuclear@1 444 length -= 1 + 16;
nuclear@1 445
nuclear@1 446 TRACEMS8(cinfo, 2, JTRC_HUFFBITS,
nuclear@1 447 bits[1], bits[2], bits[3], bits[4],
nuclear@1 448 bits[5], bits[6], bits[7], bits[8]);
nuclear@1 449 TRACEMS8(cinfo, 2, JTRC_HUFFBITS,
nuclear@1 450 bits[9], bits[10], bits[11], bits[12],
nuclear@1 451 bits[13], bits[14], bits[15], bits[16]);
nuclear@1 452
nuclear@1 453 /* Here we just do minimal validation of the counts to avoid walking
nuclear@1 454 * off the end of our table space. jdhuff.c will check more carefully.
nuclear@1 455 */
nuclear@1 456 if (count > 256 || ((INT32) count) > length)
nuclear@1 457 ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
nuclear@1 458
nuclear@1 459 for (i = 0; i < count; i++)
nuclear@1 460 INPUT_BYTE(cinfo, huffval[i], return FALSE);
nuclear@1 461
nuclear@1 462 length -= count;
nuclear@1 463
nuclear@1 464 if (index & 0x10) { /* AC table definition */
nuclear@1 465 index -= 0x10;
nuclear@1 466 htblptr = &cinfo->ac_huff_tbl_ptrs[index];
nuclear@1 467 } else { /* DC table definition */
nuclear@1 468 htblptr = &cinfo->dc_huff_tbl_ptrs[index];
nuclear@1 469 }
nuclear@1 470
nuclear@1 471 if (index < 0 || index >= NUM_HUFF_TBLS)
nuclear@1 472 ERREXIT1(cinfo, JERR_DHT_INDEX, index);
nuclear@1 473
nuclear@1 474 if (*htblptr == NULL)
nuclear@1 475 *htblptr = jpeg_alloc_huff_table((j_common_ptr) cinfo);
nuclear@1 476
nuclear@1 477 MEMCOPY((*htblptr)->bits, bits, SIZEOF((*htblptr)->bits));
nuclear@1 478 MEMCOPY((*htblptr)->huffval, huffval, SIZEOF((*htblptr)->huffval));
nuclear@1 479 }
nuclear@1 480
nuclear@1 481 if (length != 0)
nuclear@1 482 ERREXIT(cinfo, JERR_BAD_LENGTH);
nuclear@1 483
nuclear@1 484 INPUT_SYNC(cinfo);
nuclear@1 485 return TRUE;
nuclear@1 486 }
nuclear@1 487
nuclear@1 488
nuclear@1 489 LOCAL(boolean)
nuclear@1 490 get_dqt (j_decompress_ptr cinfo)
nuclear@1 491 /* Process a DQT marker */
nuclear@1 492 {
nuclear@1 493 INT32 length;
nuclear@1 494 int n, i, prec;
nuclear@1 495 unsigned int tmp;
nuclear@1 496 JQUANT_TBL *quant_ptr;
nuclear@1 497 INPUT_VARS(cinfo);
nuclear@1 498
nuclear@1 499 INPUT_2BYTES(cinfo, length, return FALSE);
nuclear@1 500 length -= 2;
nuclear@1 501
nuclear@1 502 while (length > 0) {
nuclear@1 503 INPUT_BYTE(cinfo, n, return FALSE);
nuclear@1 504 prec = n >> 4;
nuclear@1 505 n &= 0x0F;
nuclear@1 506
nuclear@1 507 TRACEMS2(cinfo, 1, JTRC_DQT, n, prec);
nuclear@1 508
nuclear@1 509 if (n >= NUM_QUANT_TBLS)
nuclear@1 510 ERREXIT1(cinfo, JERR_DQT_INDEX, n);
nuclear@1 511
nuclear@1 512 if (cinfo->quant_tbl_ptrs[n] == NULL)
nuclear@1 513 cinfo->quant_tbl_ptrs[n] = jpeg_alloc_quant_table((j_common_ptr) cinfo);
nuclear@1 514 quant_ptr = cinfo->quant_tbl_ptrs[n];
nuclear@1 515
nuclear@1 516 for (i = 0; i < DCTSIZE2; i++) {
nuclear@1 517 if (prec)
nuclear@1 518 INPUT_2BYTES(cinfo, tmp, return FALSE);
nuclear@1 519 else
nuclear@1 520 INPUT_BYTE(cinfo, tmp, return FALSE);
nuclear@1 521 /* We convert the zigzag-order table to natural array order. */
nuclear@1 522 quant_ptr->quantval[jpeg_natural_order[i]] = (UINT16) tmp;
nuclear@1 523 }
nuclear@1 524
nuclear@1 525 if (cinfo->err->trace_level >= 2) {
nuclear@1 526 for (i = 0; i < DCTSIZE2; i += 8) {
nuclear@1 527 TRACEMS8(cinfo, 2, JTRC_QUANTVALS,
nuclear@1 528 quant_ptr->quantval[i], quant_ptr->quantval[i+1],
nuclear@1 529 quant_ptr->quantval[i+2], quant_ptr->quantval[i+3],
nuclear@1 530 quant_ptr->quantval[i+4], quant_ptr->quantval[i+5],
nuclear@1 531 quant_ptr->quantval[i+6], quant_ptr->quantval[i+7]);
nuclear@1 532 }
nuclear@1 533 }
nuclear@1 534
nuclear@1 535 length -= DCTSIZE2+1;
nuclear@1 536 if (prec) length -= DCTSIZE2;
nuclear@1 537 }
nuclear@1 538
nuclear@1 539 if (length != 0)
nuclear@1 540 ERREXIT(cinfo, JERR_BAD_LENGTH);
nuclear@1 541
nuclear@1 542 INPUT_SYNC(cinfo);
nuclear@1 543 return TRUE;
nuclear@1 544 }
nuclear@1 545
nuclear@1 546
nuclear@1 547 LOCAL(boolean)
nuclear@1 548 get_dri (j_decompress_ptr cinfo)
nuclear@1 549 /* Process a DRI marker */
nuclear@1 550 {
nuclear@1 551 INT32 length;
nuclear@1 552 unsigned int tmp;
nuclear@1 553 INPUT_VARS(cinfo);
nuclear@1 554
nuclear@1 555 INPUT_2BYTES(cinfo, length, return FALSE);
nuclear@1 556
nuclear@1 557 if (length != 4)
nuclear@1 558 ERREXIT(cinfo, JERR_BAD_LENGTH);
nuclear@1 559
nuclear@1 560 INPUT_2BYTES(cinfo, tmp, return FALSE);
nuclear@1 561
nuclear@1 562 TRACEMS1(cinfo, 1, JTRC_DRI, tmp);
nuclear@1 563
nuclear@1 564 cinfo->restart_interval = tmp;
nuclear@1 565
nuclear@1 566 INPUT_SYNC(cinfo);
nuclear@1 567 return TRUE;
nuclear@1 568 }
nuclear@1 569
nuclear@1 570
nuclear@1 571 /*
nuclear@1 572 * Routines for processing APPn and COM markers.
nuclear@1 573 * These are either saved in memory or discarded, per application request.
nuclear@1 574 * APP0 and APP14 are specially checked to see if they are
nuclear@1 575 * JFIF and Adobe markers, respectively.
nuclear@1 576 */
nuclear@1 577
nuclear@1 578 #define APP0_DATA_LEN 14 /* Length of interesting data in APP0 */
nuclear@1 579 #define APP14_DATA_LEN 12 /* Length of interesting data in APP14 */
nuclear@1 580 #define APPN_DATA_LEN 14 /* Must be the largest of the above!! */
nuclear@1 581
nuclear@1 582
nuclear@1 583 LOCAL(void)
nuclear@1 584 examine_app0 (j_decompress_ptr cinfo, JOCTET FAR * data,
nuclear@1 585 unsigned int datalen, INT32 remaining)
nuclear@1 586 /* Examine first few bytes from an APP0.
nuclear@1 587 * Take appropriate action if it is a JFIF marker.
nuclear@1 588 * datalen is # of bytes at data[], remaining is length of rest of marker data.
nuclear@1 589 */
nuclear@1 590 {
nuclear@1 591 INT32 totallen = (INT32) datalen + remaining;
nuclear@1 592
nuclear@1 593 if (datalen >= APP0_DATA_LEN &&
nuclear@1 594 GETJOCTET(data[0]) == 0x4A &&
nuclear@1 595 GETJOCTET(data[1]) == 0x46 &&
nuclear@1 596 GETJOCTET(data[2]) == 0x49 &&
nuclear@1 597 GETJOCTET(data[3]) == 0x46 &&
nuclear@1 598 GETJOCTET(data[4]) == 0) {
nuclear@1 599 /* Found JFIF APP0 marker: save info */
nuclear@1 600 cinfo->saw_JFIF_marker = TRUE;
nuclear@1 601 cinfo->JFIF_major_version = GETJOCTET(data[5]);
nuclear@1 602 cinfo->JFIF_minor_version = GETJOCTET(data[6]);
nuclear@1 603 cinfo->density_unit = GETJOCTET(data[7]);
nuclear@1 604 cinfo->X_density = (GETJOCTET(data[8]) << 8) + GETJOCTET(data[9]);
nuclear@1 605 cinfo->Y_density = (GETJOCTET(data[10]) << 8) + GETJOCTET(data[11]);
nuclear@1 606 /* Check version.
nuclear@1 607 * Major version must be 1, anything else signals an incompatible change.
nuclear@1 608 * (We used to treat this as an error, but now it's a nonfatal warning,
nuclear@1 609 * because some bozo at Hijaak couldn't read the spec.)
nuclear@1 610 * Minor version should be 0..2, but process anyway if newer.
nuclear@1 611 */
nuclear@1 612 if (cinfo->JFIF_major_version != 1)
nuclear@1 613 WARNMS2(cinfo, JWRN_JFIF_MAJOR,
nuclear@1 614 cinfo->JFIF_major_version, cinfo->JFIF_minor_version);
nuclear@1 615 /* Generate trace messages */
nuclear@1 616 TRACEMS5(cinfo, 1, JTRC_JFIF,
nuclear@1 617 cinfo->JFIF_major_version, cinfo->JFIF_minor_version,
nuclear@1 618 cinfo->X_density, cinfo->Y_density, cinfo->density_unit);
nuclear@1 619 /* Validate thumbnail dimensions and issue appropriate messages */
nuclear@1 620 if (GETJOCTET(data[12]) | GETJOCTET(data[13]))
nuclear@1 621 TRACEMS2(cinfo, 1, JTRC_JFIF_THUMBNAIL,
nuclear@1 622 GETJOCTET(data[12]), GETJOCTET(data[13]));
nuclear@1 623 totallen -= APP0_DATA_LEN;
nuclear@1 624 if (totallen !=
nuclear@1 625 ((INT32)GETJOCTET(data[12]) * (INT32)GETJOCTET(data[13]) * (INT32) 3))
nuclear@1 626 TRACEMS1(cinfo, 1, JTRC_JFIF_BADTHUMBNAILSIZE, (int) totallen);
nuclear@1 627 } else if (datalen >= 6 &&
nuclear@1 628 GETJOCTET(data[0]) == 0x4A &&
nuclear@1 629 GETJOCTET(data[1]) == 0x46 &&
nuclear@1 630 GETJOCTET(data[2]) == 0x58 &&
nuclear@1 631 GETJOCTET(data[3]) == 0x58 &&
nuclear@1 632 GETJOCTET(data[4]) == 0) {
nuclear@1 633 /* Found JFIF "JFXX" extension APP0 marker */
nuclear@1 634 /* The library doesn't actually do anything with these,
nuclear@1 635 * but we try to produce a helpful trace message.
nuclear@1 636 */
nuclear@1 637 switch (GETJOCTET(data[5])) {
nuclear@1 638 case 0x10:
nuclear@1 639 TRACEMS1(cinfo, 1, JTRC_THUMB_JPEG, (int) totallen);
nuclear@1 640 break;
nuclear@1 641 case 0x11:
nuclear@1 642 TRACEMS1(cinfo, 1, JTRC_THUMB_PALETTE, (int) totallen);
nuclear@1 643 break;
nuclear@1 644 case 0x13:
nuclear@1 645 TRACEMS1(cinfo, 1, JTRC_THUMB_RGB, (int) totallen);
nuclear@1 646 break;
nuclear@1 647 default:
nuclear@1 648 TRACEMS2(cinfo, 1, JTRC_JFIF_EXTENSION,
nuclear@1 649 GETJOCTET(data[5]), (int) totallen);
nuclear@1 650 break;
nuclear@1 651 }
nuclear@1 652 } else {
nuclear@1 653 /* Start of APP0 does not match "JFIF" or "JFXX", or too short */
nuclear@1 654 TRACEMS1(cinfo, 1, JTRC_APP0, (int) totallen);
nuclear@1 655 }
nuclear@1 656 }
nuclear@1 657
nuclear@1 658
nuclear@1 659 LOCAL(void)
nuclear@1 660 examine_app14 (j_decompress_ptr cinfo, JOCTET FAR * data,
nuclear@1 661 unsigned int datalen, INT32 remaining)
nuclear@1 662 /* Examine first few bytes from an APP14.
nuclear@1 663 * Take appropriate action if it is an Adobe marker.
nuclear@1 664 * datalen is # of bytes at data[], remaining is length of rest of marker data.
nuclear@1 665 */
nuclear@1 666 {
nuclear@1 667 unsigned int version, flags0, flags1, transform;
nuclear@1 668
nuclear@1 669 if (datalen >= APP14_DATA_LEN &&
nuclear@1 670 GETJOCTET(data[0]) == 0x41 &&
nuclear@1 671 GETJOCTET(data[1]) == 0x64 &&
nuclear@1 672 GETJOCTET(data[2]) == 0x6F &&
nuclear@1 673 GETJOCTET(data[3]) == 0x62 &&
nuclear@1 674 GETJOCTET(data[4]) == 0x65) {
nuclear@1 675 /* Found Adobe APP14 marker */
nuclear@1 676 version = (GETJOCTET(data[5]) << 8) + GETJOCTET(data[6]);
nuclear@1 677 flags0 = (GETJOCTET(data[7]) << 8) + GETJOCTET(data[8]);
nuclear@1 678 flags1 = (GETJOCTET(data[9]) << 8) + GETJOCTET(data[10]);
nuclear@1 679 transform = GETJOCTET(data[11]);
nuclear@1 680 TRACEMS4(cinfo, 1, JTRC_ADOBE, version, flags0, flags1, transform);
nuclear@1 681 cinfo->saw_Adobe_marker = TRUE;
nuclear@1 682 cinfo->Adobe_transform = (UINT8) transform;
nuclear@1 683 } else {
nuclear@1 684 /* Start of APP14 does not match "Adobe", or too short */
nuclear@1 685 TRACEMS1(cinfo, 1, JTRC_APP14, (int) (datalen + remaining));
nuclear@1 686 }
nuclear@1 687 }
nuclear@1 688
nuclear@1 689
nuclear@1 690 METHODDEF(boolean)
nuclear@1 691 get_interesting_appn (j_decompress_ptr cinfo)
nuclear@1 692 /* Process an APP0 or APP14 marker without saving it */
nuclear@1 693 {
nuclear@1 694 INT32 length;
nuclear@1 695 JOCTET b[APPN_DATA_LEN];
nuclear@1 696 unsigned int i, numtoread;
nuclear@1 697 INPUT_VARS(cinfo);
nuclear@1 698
nuclear@1 699 INPUT_2BYTES(cinfo, length, return FALSE);
nuclear@1 700 length -= 2;
nuclear@1 701
nuclear@1 702 /* get the interesting part of the marker data */
nuclear@1 703 if (length >= APPN_DATA_LEN)
nuclear@1 704 numtoread = APPN_DATA_LEN;
nuclear@1 705 else if (length > 0)
nuclear@1 706 numtoread = (unsigned int) length;
nuclear@1 707 else
nuclear@1 708 numtoread = 0;
nuclear@1 709 for (i = 0; i < numtoread; i++)
nuclear@1 710 INPUT_BYTE(cinfo, b[i], return FALSE);
nuclear@1 711 length -= numtoread;
nuclear@1 712
nuclear@1 713 /* process it */
nuclear@1 714 switch (cinfo->unread_marker) {
nuclear@1 715 case M_APP0:
nuclear@1 716 examine_app0(cinfo, (JOCTET FAR *) b, numtoread, length);
nuclear@1 717 break;
nuclear@1 718 case M_APP14:
nuclear@1 719 examine_app14(cinfo, (JOCTET FAR *) b, numtoread, length);
nuclear@1 720 break;
nuclear@1 721 default:
nuclear@1 722 /* can't get here unless jpeg_save_markers chooses wrong processor */
nuclear@1 723 ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, cinfo->unread_marker);
nuclear@1 724 break;
nuclear@1 725 }
nuclear@1 726
nuclear@1 727 /* skip any remaining data -- could be lots */
nuclear@1 728 INPUT_SYNC(cinfo);
nuclear@1 729 if (length > 0)
nuclear@1 730 (*cinfo->src->skip_input_data) (cinfo, (long) length);
nuclear@1 731
nuclear@1 732 return TRUE;
nuclear@1 733 }
nuclear@1 734
nuclear@1 735
nuclear@1 736 #ifdef SAVE_MARKERS_SUPPORTED
nuclear@1 737
nuclear@1 738 METHODDEF(boolean)
nuclear@1 739 save_marker (j_decompress_ptr cinfo)
nuclear@1 740 /* Save an APPn or COM marker into the marker list */
nuclear@1 741 {
nuclear@1 742 my_marker_ptr marker = (my_marker_ptr) cinfo->marker;
nuclear@1 743 jpeg_saved_marker_ptr cur_marker = marker->cur_marker;
nuclear@1 744 unsigned int bytes_read, data_length;
nuclear@1 745 JOCTET FAR * data;
nuclear@1 746 INT32 length = 0;
nuclear@1 747 INPUT_VARS(cinfo);
nuclear@1 748
nuclear@1 749 if (cur_marker == NULL) {
nuclear@1 750 /* begin reading a marker */
nuclear@1 751 INPUT_2BYTES(cinfo, length, return FALSE);
nuclear@1 752 length -= 2;
nuclear@1 753 if (length >= 0) { /* watch out for bogus length word */
nuclear@1 754 /* figure out how much we want to save */
nuclear@1 755 unsigned int limit;
nuclear@1 756 if (cinfo->unread_marker == (int) M_COM)
nuclear@1 757 limit = marker->length_limit_COM;
nuclear@1 758 else
nuclear@1 759 limit = marker->length_limit_APPn[cinfo->unread_marker - (int) M_APP0];
nuclear@1 760 if ((unsigned int) length < limit)
nuclear@1 761 limit = (unsigned int) length;
nuclear@1 762 /* allocate and initialize the marker item */
nuclear@1 763 cur_marker = (jpeg_saved_marker_ptr)
nuclear@1 764 (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE,
nuclear@1 765 SIZEOF(struct jpeg_marker_struct) + limit);
nuclear@1 766 cur_marker->next = NULL;
nuclear@1 767 cur_marker->marker = (UINT8) cinfo->unread_marker;
nuclear@1 768 cur_marker->original_length = (unsigned int) length;
nuclear@1 769 cur_marker->data_length = limit;
nuclear@1 770 /* data area is just beyond the jpeg_marker_struct */
nuclear@1 771 data = cur_marker->data = (JOCTET FAR *) (cur_marker + 1);
nuclear@1 772 marker->cur_marker = cur_marker;
nuclear@1 773 marker->bytes_read = 0;
nuclear@1 774 bytes_read = 0;
nuclear@1 775 data_length = limit;
nuclear@1 776 } else {
nuclear@1 777 /* deal with bogus length word */
nuclear@1 778 bytes_read = data_length = 0;
nuclear@1 779 data = NULL;
nuclear@1 780 }
nuclear@1 781 } else {
nuclear@1 782 /* resume reading a marker */
nuclear@1 783 bytes_read = marker->bytes_read;
nuclear@1 784 data_length = cur_marker->data_length;
nuclear@1 785 data = cur_marker->data + bytes_read;
nuclear@1 786 }
nuclear@1 787
nuclear@1 788 while (bytes_read < data_length) {
nuclear@1 789 INPUT_SYNC(cinfo); /* move the restart point to here */
nuclear@1 790 marker->bytes_read = bytes_read;
nuclear@1 791 /* If there's not at least one byte in buffer, suspend */
nuclear@1 792 MAKE_BYTE_AVAIL(cinfo, return FALSE);
nuclear@1 793 /* Copy bytes with reasonable rapidity */
nuclear@1 794 while (bytes_read < data_length && bytes_in_buffer > 0) {
nuclear@1 795 *data++ = *next_input_byte++;
nuclear@1 796 bytes_in_buffer--;
nuclear@1 797 bytes_read++;
nuclear@1 798 }
nuclear@1 799 }
nuclear@1 800
nuclear@1 801 /* Done reading what we want to read */
nuclear@1 802 if (cur_marker != NULL) { /* will be NULL if bogus length word */
nuclear@1 803 /* Add new marker to end of list */
nuclear@1 804 if (cinfo->marker_list == NULL) {
nuclear@1 805 cinfo->marker_list = cur_marker;
nuclear@1 806 } else {
nuclear@1 807 jpeg_saved_marker_ptr prev = cinfo->marker_list;
nuclear@1 808 while (prev->next != NULL)
nuclear@1 809 prev = prev->next;
nuclear@1 810 prev->next = cur_marker;
nuclear@1 811 }
nuclear@1 812 /* Reset pointer & calc remaining data length */
nuclear@1 813 data = cur_marker->data;
nuclear@1 814 length = cur_marker->original_length - data_length;
nuclear@1 815 }
nuclear@1 816 /* Reset to initial state for next marker */
nuclear@1 817 marker->cur_marker = NULL;
nuclear@1 818
nuclear@1 819 /* Process the marker if interesting; else just make a generic trace msg */
nuclear@1 820 switch (cinfo->unread_marker) {
nuclear@1 821 case M_APP0:
nuclear@1 822 examine_app0(cinfo, data, data_length, length);
nuclear@1 823 break;
nuclear@1 824 case M_APP14:
nuclear@1 825 examine_app14(cinfo, data, data_length, length);
nuclear@1 826 break;
nuclear@1 827 default:
nuclear@1 828 TRACEMS2(cinfo, 1, JTRC_MISC_MARKER, cinfo->unread_marker,
nuclear@1 829 (int) (data_length + length));
nuclear@1 830 break;
nuclear@1 831 }
nuclear@1 832
nuclear@1 833 /* skip any remaining data -- could be lots */
nuclear@1 834 INPUT_SYNC(cinfo); /* do before skip_input_data */
nuclear@1 835 if (length > 0)
nuclear@1 836 (*cinfo->src->skip_input_data) (cinfo, (long) length);
nuclear@1 837
nuclear@1 838 return TRUE;
nuclear@1 839 }
nuclear@1 840
nuclear@1 841 #endif /* SAVE_MARKERS_SUPPORTED */
nuclear@1 842
nuclear@1 843
nuclear@1 844 METHODDEF(boolean)
nuclear@1 845 skip_variable (j_decompress_ptr cinfo)
nuclear@1 846 /* Skip over an unknown or uninteresting variable-length marker */
nuclear@1 847 {
nuclear@1 848 INT32 length;
nuclear@1 849 INPUT_VARS(cinfo);
nuclear@1 850
nuclear@1 851 INPUT_2BYTES(cinfo, length, return FALSE);
nuclear@1 852 length -= 2;
nuclear@1 853
nuclear@1 854 TRACEMS2(cinfo, 1, JTRC_MISC_MARKER, cinfo->unread_marker, (int) length);
nuclear@1 855
nuclear@1 856 INPUT_SYNC(cinfo); /* do before skip_input_data */
nuclear@1 857 if (length > 0)
nuclear@1 858 (*cinfo->src->skip_input_data) (cinfo, (long) length);
nuclear@1 859
nuclear@1 860 return TRUE;
nuclear@1 861 }
nuclear@1 862
nuclear@1 863
nuclear@1 864 /*
nuclear@1 865 * Find the next JPEG marker, save it in cinfo->unread_marker.
nuclear@1 866 * Returns FALSE if had to suspend before reaching a marker;
nuclear@1 867 * in that case cinfo->unread_marker is unchanged.
nuclear@1 868 *
nuclear@1 869 * Note that the result might not be a valid marker code,
nuclear@1 870 * but it will never be 0 or FF.
nuclear@1 871 */
nuclear@1 872
nuclear@1 873 LOCAL(boolean)
nuclear@1 874 next_marker (j_decompress_ptr cinfo)
nuclear@1 875 {
nuclear@1 876 int c;
nuclear@1 877 INPUT_VARS(cinfo);
nuclear@1 878
nuclear@1 879 for (;;) {
nuclear@1 880 INPUT_BYTE(cinfo, c, return FALSE);
nuclear@1 881 /* Skip any non-FF bytes.
nuclear@1 882 * This may look a bit inefficient, but it will not occur in a valid file.
nuclear@1 883 * We sync after each discarded byte so that a suspending data source
nuclear@1 884 * can discard the byte from its buffer.
nuclear@1 885 */
nuclear@1 886 while (c != 0xFF) {
nuclear@1 887 cinfo->marker->discarded_bytes++;
nuclear@1 888 INPUT_SYNC(cinfo);
nuclear@1 889 INPUT_BYTE(cinfo, c, return FALSE);
nuclear@1 890 }
nuclear@1 891 /* This loop swallows any duplicate FF bytes. Extra FFs are legal as
nuclear@1 892 * pad bytes, so don't count them in discarded_bytes. We assume there
nuclear@1 893 * will not be so many consecutive FF bytes as to overflow a suspending
nuclear@1 894 * data source's input buffer.
nuclear@1 895 */
nuclear@1 896 do {
nuclear@1 897 INPUT_BYTE(cinfo, c, return FALSE);
nuclear@1 898 } while (c == 0xFF);
nuclear@1 899 if (c != 0)
nuclear@1 900 break; /* found a valid marker, exit loop */
nuclear@1 901 /* Reach here if we found a stuffed-zero data sequence (FF/00).
nuclear@1 902 * Discard it and loop back to try again.
nuclear@1 903 */
nuclear@1 904 cinfo->marker->discarded_bytes += 2;
nuclear@1 905 INPUT_SYNC(cinfo);
nuclear@1 906 }
nuclear@1 907
nuclear@1 908 if (cinfo->marker->discarded_bytes != 0) {
nuclear@1 909 WARNMS2(cinfo, JWRN_EXTRANEOUS_DATA, cinfo->marker->discarded_bytes, c);
nuclear@1 910 cinfo->marker->discarded_bytes = 0;
nuclear@1 911 }
nuclear@1 912
nuclear@1 913 cinfo->unread_marker = c;
nuclear@1 914
nuclear@1 915 INPUT_SYNC(cinfo);
nuclear@1 916 return TRUE;
nuclear@1 917 }
nuclear@1 918
nuclear@1 919
nuclear@1 920 LOCAL(boolean)
nuclear@1 921 first_marker (j_decompress_ptr cinfo)
nuclear@1 922 /* Like next_marker, but used to obtain the initial SOI marker. */
nuclear@1 923 /* For this marker, we do not allow preceding garbage or fill; otherwise,
nuclear@1 924 * we might well scan an entire input file before realizing it ain't JPEG.
nuclear@1 925 * If an application wants to process non-JFIF files, it must seek to the
nuclear@1 926 * SOI before calling the JPEG library.
nuclear@1 927 */
nuclear@1 928 {
nuclear@1 929 int c, c2;
nuclear@1 930 INPUT_VARS(cinfo);
nuclear@1 931
nuclear@1 932 INPUT_BYTE(cinfo, c, return FALSE);
nuclear@1 933 INPUT_BYTE(cinfo, c2, return FALSE);
nuclear@1 934 if (c != 0xFF || c2 != (int) M_SOI)
nuclear@1 935 ERREXIT2(cinfo, JERR_NO_SOI, c, c2);
nuclear@1 936
nuclear@1 937 cinfo->unread_marker = c2;
nuclear@1 938
nuclear@1 939 INPUT_SYNC(cinfo);
nuclear@1 940 return TRUE;
nuclear@1 941 }
nuclear@1 942
nuclear@1 943
nuclear@1 944 /*
nuclear@1 945 * Read markers until SOS or EOI.
nuclear@1 946 *
nuclear@1 947 * Returns same codes as are defined for jpeg_consume_input:
nuclear@1 948 * JPEG_SUSPENDED, JPEG_REACHED_SOS, or JPEG_REACHED_EOI.
nuclear@1 949 */
nuclear@1 950
nuclear@1 951 METHODDEF(int)
nuclear@1 952 read_markers (j_decompress_ptr cinfo)
nuclear@1 953 {
nuclear@1 954 /* Outer loop repeats once for each marker. */
nuclear@1 955 for (;;) {
nuclear@1 956 /* Collect the marker proper, unless we already did. */
nuclear@1 957 /* NB: first_marker() enforces the requirement that SOI appear first. */
nuclear@1 958 if (cinfo->unread_marker == 0) {
nuclear@1 959 if (! cinfo->marker->saw_SOI) {
nuclear@1 960 if (! first_marker(cinfo))
nuclear@1 961 return JPEG_SUSPENDED;
nuclear@1 962 } else {
nuclear@1 963 if (! next_marker(cinfo))
nuclear@1 964 return JPEG_SUSPENDED;
nuclear@1 965 }
nuclear@1 966 }
nuclear@1 967 /* At this point cinfo->unread_marker contains the marker code and the
nuclear@1 968 * input point is just past the marker proper, but before any parameters.
nuclear@1 969 * A suspension will cause us to return with this state still true.
nuclear@1 970 */
nuclear@1 971 switch (cinfo->unread_marker) {
nuclear@1 972 case M_SOI:
nuclear@1 973 if (! get_soi(cinfo))
nuclear@1 974 return JPEG_SUSPENDED;
nuclear@1 975 break;
nuclear@1 976
nuclear@1 977 case M_SOF0: /* Baseline */
nuclear@1 978 case M_SOF1: /* Extended sequential, Huffman */
nuclear@1 979 if (! get_sof(cinfo, FALSE, FALSE))
nuclear@1 980 return JPEG_SUSPENDED;
nuclear@1 981 break;
nuclear@1 982
nuclear@1 983 case M_SOF2: /* Progressive, Huffman */
nuclear@1 984 if (! get_sof(cinfo, TRUE, FALSE))
nuclear@1 985 return JPEG_SUSPENDED;
nuclear@1 986 break;
nuclear@1 987
nuclear@1 988 case M_SOF9: /* Extended sequential, arithmetic */
nuclear@1 989 if (! get_sof(cinfo, FALSE, TRUE))
nuclear@1 990 return JPEG_SUSPENDED;
nuclear@1 991 break;
nuclear@1 992
nuclear@1 993 case M_SOF10: /* Progressive, arithmetic */
nuclear@1 994 if (! get_sof(cinfo, TRUE, TRUE))
nuclear@1 995 return JPEG_SUSPENDED;
nuclear@1 996 break;
nuclear@1 997
nuclear@1 998 /* Currently unsupported SOFn types */
nuclear@1 999 case M_SOF3: /* Lossless, Huffman */
nuclear@1 1000 case M_SOF5: /* Differential sequential, Huffman */
nuclear@1 1001 case M_SOF6: /* Differential progressive, Huffman */
nuclear@1 1002 case M_SOF7: /* Differential lossless, Huffman */
nuclear@1 1003 case M_JPG: /* Reserved for JPEG extensions */
nuclear@1 1004 case M_SOF11: /* Lossless, arithmetic */
nuclear@1 1005 case M_SOF13: /* Differential sequential, arithmetic */
nuclear@1 1006 case M_SOF14: /* Differential progressive, arithmetic */
nuclear@1 1007 case M_SOF15: /* Differential lossless, arithmetic */
nuclear@1 1008 ERREXIT1(cinfo, JERR_SOF_UNSUPPORTED, cinfo->unread_marker);
nuclear@1 1009 break;
nuclear@1 1010
nuclear@1 1011 case M_SOS:
nuclear@1 1012 if (! get_sos(cinfo))
nuclear@1 1013 return JPEG_SUSPENDED;
nuclear@1 1014 cinfo->unread_marker = 0; /* processed the marker */
nuclear@1 1015 return JPEG_REACHED_SOS;
nuclear@1 1016
nuclear@1 1017 case M_EOI:
nuclear@1 1018 TRACEMS(cinfo, 1, JTRC_EOI);
nuclear@1 1019 cinfo->unread_marker = 0; /* processed the marker */
nuclear@1 1020 return JPEG_REACHED_EOI;
nuclear@1 1021
nuclear@1 1022 case M_DAC:
nuclear@1 1023 if (! get_dac(cinfo))
nuclear@1 1024 return JPEG_SUSPENDED;
nuclear@1 1025 break;
nuclear@1 1026
nuclear@1 1027 case M_DHT:
nuclear@1 1028 if (! get_dht(cinfo))
nuclear@1 1029 return JPEG_SUSPENDED;
nuclear@1 1030 break;
nuclear@1 1031
nuclear@1 1032 case M_DQT:
nuclear@1 1033 if (! get_dqt(cinfo))
nuclear@1 1034 return JPEG_SUSPENDED;
nuclear@1 1035 break;
nuclear@1 1036
nuclear@1 1037 case M_DRI:
nuclear@1 1038 if (! get_dri(cinfo))
nuclear@1 1039 return JPEG_SUSPENDED;
nuclear@1 1040 break;
nuclear@1 1041
nuclear@1 1042 case M_APP0:
nuclear@1 1043 case M_APP1:
nuclear@1 1044 case M_APP2:
nuclear@1 1045 case M_APP3:
nuclear@1 1046 case M_APP4:
nuclear@1 1047 case M_APP5:
nuclear@1 1048 case M_APP6:
nuclear@1 1049 case M_APP7:
nuclear@1 1050 case M_APP8:
nuclear@1 1051 case M_APP9:
nuclear@1 1052 case M_APP10:
nuclear@1 1053 case M_APP11:
nuclear@1 1054 case M_APP12:
nuclear@1 1055 case M_APP13:
nuclear@1 1056 case M_APP14:
nuclear@1 1057 case M_APP15:
nuclear@1 1058 if (! (*((my_marker_ptr) cinfo->marker)->process_APPn[
nuclear@1 1059 cinfo->unread_marker - (int) M_APP0]) (cinfo))
nuclear@1 1060 return JPEG_SUSPENDED;
nuclear@1 1061 break;
nuclear@1 1062
nuclear@1 1063 case M_COM:
nuclear@1 1064 if (! (*((my_marker_ptr) cinfo->marker)->process_COM) (cinfo))
nuclear@1 1065 return JPEG_SUSPENDED;
nuclear@1 1066 break;
nuclear@1 1067
nuclear@1 1068 case M_RST0: /* these are all parameterless */
nuclear@1 1069 case M_RST1:
nuclear@1 1070 case M_RST2:
nuclear@1 1071 case M_RST3:
nuclear@1 1072 case M_RST4:
nuclear@1 1073 case M_RST5:
nuclear@1 1074 case M_RST6:
nuclear@1 1075 case M_RST7:
nuclear@1 1076 case M_TEM:
nuclear@1 1077 TRACEMS1(cinfo, 1, JTRC_PARMLESS_MARKER, cinfo->unread_marker);
nuclear@1 1078 break;
nuclear@1 1079
nuclear@1 1080 case M_DNL: /* Ignore DNL ... perhaps the wrong thing */
nuclear@1 1081 if (! skip_variable(cinfo))
nuclear@1 1082 return JPEG_SUSPENDED;
nuclear@1 1083 break;
nuclear@1 1084
nuclear@1 1085 default: /* must be DHP, EXP, JPGn, or RESn */
nuclear@1 1086 /* For now, we treat the reserved markers as fatal errors since they are
nuclear@1 1087 * likely to be used to signal incompatible JPEG Part 3 extensions.
nuclear@1 1088 * Once the JPEG 3 version-number marker is well defined, this code
nuclear@1 1089 * ought to change!
nuclear@1 1090 */
nuclear@1 1091 ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, cinfo->unread_marker);
nuclear@1 1092 break;
nuclear@1 1093 }
nuclear@1 1094 /* Successfully processed marker, so reset state variable */
nuclear@1 1095 cinfo->unread_marker = 0;
nuclear@1 1096 } /* end loop */
nuclear@1 1097 }
nuclear@1 1098
nuclear@1 1099
nuclear@1 1100 /*
nuclear@1 1101 * Read a restart marker, which is expected to appear next in the datastream;
nuclear@1 1102 * if the marker is not there, take appropriate recovery action.
nuclear@1 1103 * Returns FALSE if suspension is required.
nuclear@1 1104 *
nuclear@1 1105 * This is called by the entropy decoder after it has read an appropriate
nuclear@1 1106 * number of MCUs. cinfo->unread_marker may be nonzero if the entropy decoder
nuclear@1 1107 * has already read a marker from the data source. Under normal conditions
nuclear@1 1108 * cinfo->unread_marker will be reset to 0 before returning; if not reset,
nuclear@1 1109 * it holds a marker which the decoder will be unable to read past.
nuclear@1 1110 */
nuclear@1 1111
nuclear@1 1112 METHODDEF(boolean)
nuclear@1 1113 read_restart_marker (j_decompress_ptr cinfo)
nuclear@1 1114 {
nuclear@1 1115 /* Obtain a marker unless we already did. */
nuclear@1 1116 /* Note that next_marker will complain if it skips any data. */
nuclear@1 1117 if (cinfo->unread_marker == 0) {
nuclear@1 1118 if (! next_marker(cinfo))
nuclear@1 1119 return FALSE;
nuclear@1 1120 }
nuclear@1 1121
nuclear@1 1122 if (cinfo->unread_marker ==
nuclear@1 1123 ((int) M_RST0 + cinfo->marker->next_restart_num)) {
nuclear@1 1124 /* Normal case --- swallow the marker and let entropy decoder continue */
nuclear@1 1125 TRACEMS1(cinfo, 3, JTRC_RST, cinfo->marker->next_restart_num);
nuclear@1 1126 cinfo->unread_marker = 0;
nuclear@1 1127 } else {
nuclear@1 1128 /* Uh-oh, the restart markers have been messed up. */
nuclear@1 1129 /* Let the data source manager determine how to resync. */
nuclear@1 1130 if (! (*cinfo->src->resync_to_restart) (cinfo,
nuclear@1 1131 cinfo->marker->next_restart_num))
nuclear@1 1132 return FALSE;
nuclear@1 1133 }
nuclear@1 1134
nuclear@1 1135 /* Update next-restart state */
nuclear@1 1136 cinfo->marker->next_restart_num = (cinfo->marker->next_restart_num + 1) & 7;
nuclear@1 1137
nuclear@1 1138 return TRUE;
nuclear@1 1139 }
nuclear@1 1140
nuclear@1 1141
nuclear@1 1142 /*
nuclear@1 1143 * This is the default resync_to_restart method for data source managers
nuclear@1 1144 * to use if they don't have any better approach. Some data source managers
nuclear@1 1145 * may be able to back up, or may have additional knowledge about the data
nuclear@1 1146 * which permits a more intelligent recovery strategy; such managers would
nuclear@1 1147 * presumably supply their own resync method.
nuclear@1 1148 *
nuclear@1 1149 * read_restart_marker calls resync_to_restart if it finds a marker other than
nuclear@1 1150 * the restart marker it was expecting. (This code is *not* used unless
nuclear@1 1151 * a nonzero restart interval has been declared.) cinfo->unread_marker is
nuclear@1 1152 * the marker code actually found (might be anything, except 0 or FF).
nuclear@1 1153 * The desired restart marker number (0..7) is passed as a parameter.
nuclear@1 1154 * This routine is supposed to apply whatever error recovery strategy seems
nuclear@1 1155 * appropriate in order to position the input stream to the next data segment.
nuclear@1 1156 * Note that cinfo->unread_marker is treated as a marker appearing before
nuclear@1 1157 * the current data-source input point; usually it should be reset to zero
nuclear@1 1158 * before returning.
nuclear@1 1159 * Returns FALSE if suspension is required.
nuclear@1 1160 *
nuclear@1 1161 * This implementation is substantially constrained by wanting to treat the
nuclear@1 1162 * input as a data stream; this means we can't back up. Therefore, we have
nuclear@1 1163 * only the following actions to work with:
nuclear@1 1164 * 1. Simply discard the marker and let the entropy decoder resume at next
nuclear@1 1165 * byte of file.
nuclear@1 1166 * 2. Read forward until we find another marker, discarding intervening
nuclear@1 1167 * data. (In theory we could look ahead within the current bufferload,
nuclear@1 1168 * without having to discard data if we don't find the desired marker.
nuclear@1 1169 * This idea is not implemented here, in part because it makes behavior
nuclear@1 1170 * dependent on buffer size and chance buffer-boundary positions.)
nuclear@1 1171 * 3. Leave the marker unread (by failing to zero cinfo->unread_marker).
nuclear@1 1172 * This will cause the entropy decoder to process an empty data segment,
nuclear@1 1173 * inserting dummy zeroes, and then we will reprocess the marker.
nuclear@1 1174 *
nuclear@1 1175 * #2 is appropriate if we think the desired marker lies ahead, while #3 is
nuclear@1 1176 * appropriate if the found marker is a future restart marker (indicating
nuclear@1 1177 * that we have missed the desired restart marker, probably because it got
nuclear@1 1178 * corrupted).
nuclear@1 1179 * We apply #2 or #3 if the found marker is a restart marker no more than
nuclear@1 1180 * two counts behind or ahead of the expected one. We also apply #2 if the
nuclear@1 1181 * found marker is not a legal JPEG marker code (it's certainly bogus data).
nuclear@1 1182 * If the found marker is a restart marker more than 2 counts away, we do #1
nuclear@1 1183 * (too much risk that the marker is erroneous; with luck we will be able to
nuclear@1 1184 * resync at some future point).
nuclear@1 1185 * For any valid non-restart JPEG marker, we apply #3. This keeps us from
nuclear@1 1186 * overrunning the end of a scan. An implementation limited to single-scan
nuclear@1 1187 * files might find it better to apply #2 for markers other than EOI, since
nuclear@1 1188 * any other marker would have to be bogus data in that case.
nuclear@1 1189 */
nuclear@1 1190
nuclear@1 1191 GLOBAL(boolean)
nuclear@1 1192 jpeg_resync_to_restart (j_decompress_ptr cinfo, int desired)
nuclear@1 1193 {
nuclear@1 1194 int marker = cinfo->unread_marker;
nuclear@1 1195 int action = 1;
nuclear@1 1196
nuclear@1 1197 /* Always put up a warning. */
nuclear@1 1198 WARNMS2(cinfo, JWRN_MUST_RESYNC, marker, desired);
nuclear@1 1199
nuclear@1 1200 /* Outer loop handles repeated decision after scanning forward. */
nuclear@1 1201 for (;;) {
nuclear@1 1202 if (marker < (int) M_SOF0)
nuclear@1 1203 action = 2; /* invalid marker */
nuclear@1 1204 else if (marker < (int) M_RST0 || marker > (int) M_RST7)
nuclear@1 1205 action = 3; /* valid non-restart marker */
nuclear@1 1206 else {
nuclear@1 1207 if (marker == ((int) M_RST0 + ((desired+1) & 7)) ||
nuclear@1 1208 marker == ((int) M_RST0 + ((desired+2) & 7)))
nuclear@1 1209 action = 3; /* one of the next two expected restarts */
nuclear@1 1210 else if (marker == ((int) M_RST0 + ((desired-1) & 7)) ||
nuclear@1 1211 marker == ((int) M_RST0 + ((desired-2) & 7)))
nuclear@1 1212 action = 2; /* a prior restart, so advance */
nuclear@1 1213 else
nuclear@1 1214 action = 1; /* desired restart or too far away */
nuclear@1 1215 }
nuclear@1 1216 TRACEMS2(cinfo, 4, JTRC_RECOVERY_ACTION, marker, action);
nuclear@1 1217 switch (action) {
nuclear@1 1218 case 1:
nuclear@1 1219 /* Discard marker and let entropy decoder resume processing. */
nuclear@1 1220 cinfo->unread_marker = 0;
nuclear@1 1221 return TRUE;
nuclear@1 1222 case 2:
nuclear@1 1223 /* Scan to the next marker, and repeat the decision loop. */
nuclear@1 1224 if (! next_marker(cinfo))
nuclear@1 1225 return FALSE;
nuclear@1 1226 marker = cinfo->unread_marker;
nuclear@1 1227 break;
nuclear@1 1228 case 3:
nuclear@1 1229 /* Return without advancing past this marker. */
nuclear@1 1230 /* Entropy decoder will be forced to process an empty segment. */
nuclear@1 1231 return TRUE;
nuclear@1 1232 }
nuclear@1 1233 } /* end loop */
nuclear@1 1234 }
nuclear@1 1235
nuclear@1 1236
nuclear@1 1237 /*
nuclear@1 1238 * Reset marker processing state to begin a fresh datastream.
nuclear@1 1239 */
nuclear@1 1240
nuclear@1 1241 METHODDEF(void)
nuclear@1 1242 reset_marker_reader (j_decompress_ptr cinfo)
nuclear@1 1243 {
nuclear@1 1244 my_marker_ptr marker = (my_marker_ptr) cinfo->marker;
nuclear@1 1245
nuclear@1 1246 cinfo->comp_info = NULL; /* until allocated by get_sof */
nuclear@1 1247 cinfo->input_scan_number = 0; /* no SOS seen yet */
nuclear@1 1248 cinfo->unread_marker = 0; /* no pending marker */
nuclear@1 1249 marker->pub.saw_SOI = FALSE; /* set internal state too */
nuclear@1 1250 marker->pub.saw_SOF = FALSE;
nuclear@1 1251 marker->pub.discarded_bytes = 0;
nuclear@1 1252 marker->cur_marker = NULL;
nuclear@1 1253 }
nuclear@1 1254
nuclear@1 1255
nuclear@1 1256 /*
nuclear@1 1257 * Initialize the marker reader module.
nuclear@1 1258 * This is called only once, when the decompression object is created.
nuclear@1 1259 */
nuclear@1 1260
nuclear@1 1261 GLOBAL(void)
nuclear@1 1262 jinit_marker_reader (j_decompress_ptr cinfo)
nuclear@1 1263 {
nuclear@1 1264 my_marker_ptr marker;
nuclear@1 1265 int i;
nuclear@1 1266
nuclear@1 1267 /* Create subobject in permanent pool */
nuclear@1 1268 marker = (my_marker_ptr)
nuclear@1 1269 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
nuclear@1 1270 SIZEOF(my_marker_reader));
nuclear@1 1271 cinfo->marker = (struct jpeg_marker_reader *) marker;
nuclear@1 1272 /* Initialize public method pointers */
nuclear@1 1273 marker->pub.reset_marker_reader = reset_marker_reader;
nuclear@1 1274 marker->pub.read_markers = read_markers;
nuclear@1 1275 marker->pub.read_restart_marker = read_restart_marker;
nuclear@1 1276 /* Initialize COM/APPn processing.
nuclear@1 1277 * By default, we examine and then discard APP0 and APP14,
nuclear@1 1278 * but simply discard COM and all other APPn.
nuclear@1 1279 */
nuclear@1 1280 marker->process_COM = skip_variable;
nuclear@1 1281 marker->length_limit_COM = 0;
nuclear@1 1282 for (i = 0; i < 16; i++) {
nuclear@1 1283 marker->process_APPn[i] = skip_variable;
nuclear@1 1284 marker->length_limit_APPn[i] = 0;
nuclear@1 1285 }
nuclear@1 1286 marker->process_APPn[0] = get_interesting_appn;
nuclear@1 1287 marker->process_APPn[14] = get_interesting_appn;
nuclear@1 1288 /* Reset marker processing state */
nuclear@1 1289 reset_marker_reader(cinfo);
nuclear@1 1290 }
nuclear@1 1291
nuclear@1 1292
nuclear@1 1293 /*
nuclear@1 1294 * Control saving of COM and APPn markers into marker_list.
nuclear@1 1295 */
nuclear@1 1296
nuclear@1 1297 #ifdef SAVE_MARKERS_SUPPORTED
nuclear@1 1298
nuclear@1 1299 GLOBAL(void)
nuclear@1 1300 jpeg_save_markers (j_decompress_ptr cinfo, int marker_code,
nuclear@1 1301 unsigned int length_limit)
nuclear@1 1302 {
nuclear@1 1303 my_marker_ptr marker = (my_marker_ptr) cinfo->marker;
nuclear@1 1304 long maxlength;
nuclear@1 1305 jpeg_marker_parser_method processor;
nuclear@1 1306
nuclear@1 1307 /* Length limit mustn't be larger than what we can allocate
nuclear@1 1308 * (should only be a concern in a 16-bit environment).
nuclear@1 1309 */
nuclear@1 1310 maxlength = cinfo->mem->max_alloc_chunk - SIZEOF(struct jpeg_marker_struct);
nuclear@1 1311 if (((long) length_limit) > maxlength)
nuclear@1 1312 length_limit = (unsigned int) maxlength;
nuclear@1 1313
nuclear@1 1314 /* Choose processor routine to use.
nuclear@1 1315 * APP0/APP14 have special requirements.
nuclear@1 1316 */
nuclear@1 1317 if (length_limit) {
nuclear@1 1318 processor = save_marker;
nuclear@1 1319 /* If saving APP0/APP14, save at least enough for our internal use. */
nuclear@1 1320 if (marker_code == (int) M_APP0 && length_limit < APP0_DATA_LEN)
nuclear@1 1321 length_limit = APP0_DATA_LEN;
nuclear@1 1322 else if (marker_code == (int) M_APP14 && length_limit < APP14_DATA_LEN)
nuclear@1 1323 length_limit = APP14_DATA_LEN;
nuclear@1 1324 } else {
nuclear@1 1325 processor = skip_variable;
nuclear@1 1326 /* If discarding APP0/APP14, use our regular on-the-fly processor. */
nuclear@1 1327 if (marker_code == (int) M_APP0 || marker_code == (int) M_APP14)
nuclear@1 1328 processor = get_interesting_appn;
nuclear@1 1329 }
nuclear@1 1330
nuclear@1 1331 if (marker_code == (int) M_COM) {
nuclear@1 1332 marker->process_COM = processor;
nuclear@1 1333 marker->length_limit_COM = length_limit;
nuclear@1 1334 } else if (marker_code >= (int) M_APP0 && marker_code <= (int) M_APP15) {
nuclear@1 1335 marker->process_APPn[marker_code - (int) M_APP0] = processor;
nuclear@1 1336 marker->length_limit_APPn[marker_code - (int) M_APP0] = length_limit;
nuclear@1 1337 } else
nuclear@1 1338 ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, marker_code);
nuclear@1 1339 }
nuclear@1 1340
nuclear@1 1341 #endif /* SAVE_MARKERS_SUPPORTED */
nuclear@1 1342
nuclear@1 1343
nuclear@1 1344 /*
nuclear@1 1345 * Install a special processing method for COM or APPn markers.
nuclear@1 1346 */
nuclear@1 1347
nuclear@1 1348 GLOBAL(void)
nuclear@1 1349 jpeg_set_marker_processor (j_decompress_ptr cinfo, int marker_code,
nuclear@1 1350 jpeg_marker_parser_method routine)
nuclear@1 1351 {
nuclear@1 1352 my_marker_ptr marker = (my_marker_ptr) cinfo->marker;
nuclear@1 1353
nuclear@1 1354 if (marker_code == (int) M_COM)
nuclear@1 1355 marker->process_COM = routine;
nuclear@1 1356 else if (marker_code >= (int) M_APP0 && marker_code <= (int) M_APP15)
nuclear@1 1357 marker->process_APPn[marker_code - (int) M_APP0] = routine;
nuclear@1 1358 else
nuclear@1 1359 ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, marker_code);
nuclear@1 1360 }