michael@0: /* michael@0: * jdmarker.c michael@0: * michael@0: * This file was part of the Independent JPEG Group's software: michael@0: * Copyright (C) 1991-1998, Thomas G. Lane. michael@0: * libjpeg-turbo Modifications: michael@0: * Copyright (C) 2012, D. R. Commander. michael@0: * For conditions of distribution and use, see the accompanying README file. michael@0: * michael@0: * This file contains routines to decode JPEG datastream markers. michael@0: * Most of the complexity arises from our desire to support input michael@0: * suspension: if not all of the data for a marker is available, michael@0: * we must exit back to the application. On resumption, we reprocess michael@0: * the marker. michael@0: */ michael@0: michael@0: #define JPEG_INTERNALS michael@0: #include "jinclude.h" michael@0: #include "jpeglib.h" michael@0: michael@0: michael@0: typedef enum { /* JPEG marker codes */ michael@0: M_SOF0 = 0xc0, michael@0: M_SOF1 = 0xc1, michael@0: M_SOF2 = 0xc2, michael@0: M_SOF3 = 0xc3, michael@0: michael@0: M_SOF5 = 0xc5, michael@0: M_SOF6 = 0xc6, michael@0: M_SOF7 = 0xc7, michael@0: michael@0: M_JPG = 0xc8, michael@0: M_SOF9 = 0xc9, michael@0: M_SOF10 = 0xca, michael@0: M_SOF11 = 0xcb, michael@0: michael@0: M_SOF13 = 0xcd, michael@0: M_SOF14 = 0xce, michael@0: M_SOF15 = 0xcf, michael@0: michael@0: M_DHT = 0xc4, michael@0: michael@0: M_DAC = 0xcc, michael@0: michael@0: M_RST0 = 0xd0, michael@0: M_RST1 = 0xd1, michael@0: M_RST2 = 0xd2, michael@0: M_RST3 = 0xd3, michael@0: M_RST4 = 0xd4, michael@0: M_RST5 = 0xd5, michael@0: M_RST6 = 0xd6, michael@0: M_RST7 = 0xd7, michael@0: michael@0: M_SOI = 0xd8, michael@0: M_EOI = 0xd9, michael@0: M_SOS = 0xda, michael@0: M_DQT = 0xdb, michael@0: M_DNL = 0xdc, michael@0: M_DRI = 0xdd, michael@0: M_DHP = 0xde, michael@0: M_EXP = 0xdf, michael@0: michael@0: M_APP0 = 0xe0, michael@0: M_APP1 = 0xe1, michael@0: M_APP2 = 0xe2, michael@0: M_APP3 = 0xe3, michael@0: M_APP4 = 0xe4, michael@0: M_APP5 = 0xe5, michael@0: M_APP6 = 0xe6, michael@0: M_APP7 = 0xe7, michael@0: M_APP8 = 0xe8, michael@0: M_APP9 = 0xe9, michael@0: M_APP10 = 0xea, michael@0: M_APP11 = 0xeb, michael@0: M_APP12 = 0xec, michael@0: M_APP13 = 0xed, michael@0: M_APP14 = 0xee, michael@0: M_APP15 = 0xef, michael@0: michael@0: M_JPG0 = 0xf0, michael@0: M_JPG13 = 0xfd, michael@0: M_COM = 0xfe, michael@0: michael@0: M_TEM = 0x01, michael@0: michael@0: M_ERROR = 0x100 michael@0: } JPEG_MARKER; michael@0: michael@0: michael@0: /* Private state */ michael@0: michael@0: typedef struct { michael@0: struct jpeg_marker_reader pub; /* public fields */ michael@0: michael@0: /* Application-overridable marker processing methods */ michael@0: jpeg_marker_parser_method process_COM; michael@0: jpeg_marker_parser_method process_APPn[16]; michael@0: michael@0: /* Limit on marker data length to save for each marker type */ michael@0: unsigned int length_limit_COM; michael@0: unsigned int length_limit_APPn[16]; michael@0: michael@0: /* Status of COM/APPn marker saving */ michael@0: jpeg_saved_marker_ptr cur_marker; /* NULL if not processing a marker */ michael@0: unsigned int bytes_read; /* data bytes read so far in marker */ michael@0: /* Note: cur_marker is not linked into marker_list until it's all read. */ michael@0: } my_marker_reader; michael@0: michael@0: typedef my_marker_reader * my_marker_ptr; michael@0: michael@0: michael@0: /* michael@0: * Macros for fetching data from the data source module. michael@0: * michael@0: * At all times, cinfo->src->next_input_byte and ->bytes_in_buffer reflect michael@0: * the current restart point; we update them only when we have reached a michael@0: * suitable place to restart if a suspension occurs. michael@0: */ michael@0: michael@0: /* Declare and initialize local copies of input pointer/count */ michael@0: #define INPUT_VARS(cinfo) \ michael@0: struct jpeg_source_mgr * datasrc = (cinfo)->src; \ michael@0: const JOCTET * next_input_byte = datasrc->next_input_byte; \ michael@0: size_t bytes_in_buffer = datasrc->bytes_in_buffer michael@0: michael@0: /* Unload the local copies --- do this only at a restart boundary */ michael@0: #define INPUT_SYNC(cinfo) \ michael@0: ( datasrc->next_input_byte = next_input_byte, \ michael@0: datasrc->bytes_in_buffer = bytes_in_buffer ) michael@0: michael@0: /* Reload the local copies --- used only in MAKE_BYTE_AVAIL */ michael@0: #define INPUT_RELOAD(cinfo) \ michael@0: ( next_input_byte = datasrc->next_input_byte, \ michael@0: bytes_in_buffer = datasrc->bytes_in_buffer ) michael@0: michael@0: /* Internal macro for INPUT_BYTE and INPUT_2BYTES: make a byte available. michael@0: * Note we do *not* do INPUT_SYNC before calling fill_input_buffer, michael@0: * but we must reload the local copies after a successful fill. michael@0: */ michael@0: #define MAKE_BYTE_AVAIL(cinfo,action) \ michael@0: if (bytes_in_buffer == 0) { \ michael@0: if (! (*datasrc->fill_input_buffer) (cinfo)) \ michael@0: { action; } \ michael@0: INPUT_RELOAD(cinfo); \ michael@0: } michael@0: michael@0: /* Read a byte into variable V. michael@0: * If must suspend, take the specified action (typically "return FALSE"). michael@0: */ michael@0: #define INPUT_BYTE(cinfo,V,action) \ michael@0: MAKESTMT( MAKE_BYTE_AVAIL(cinfo,action); \ michael@0: bytes_in_buffer--; \ michael@0: V = GETJOCTET(*next_input_byte++); ) michael@0: michael@0: /* As above, but read two bytes interpreted as an unsigned 16-bit integer. michael@0: * V should be declared unsigned int or perhaps INT32. michael@0: */ michael@0: #define INPUT_2BYTES(cinfo,V,action) \ michael@0: MAKESTMT( MAKE_BYTE_AVAIL(cinfo,action); \ michael@0: bytes_in_buffer--; \ michael@0: V = ((unsigned int) GETJOCTET(*next_input_byte++)) << 8; \ michael@0: MAKE_BYTE_AVAIL(cinfo,action); \ michael@0: bytes_in_buffer--; \ michael@0: V += GETJOCTET(*next_input_byte++); ) michael@0: michael@0: michael@0: /* michael@0: * Routines to process JPEG markers. michael@0: * michael@0: * Entry condition: JPEG marker itself has been read and its code saved michael@0: * in cinfo->unread_marker; input restart point is just after the marker. michael@0: * michael@0: * Exit: if return TRUE, have read and processed any parameters, and have michael@0: * updated the restart point to point after the parameters. michael@0: * If return FALSE, was forced to suspend before reaching end of michael@0: * marker parameters; restart point has not been moved. Same routine michael@0: * will be called again after application supplies more input data. michael@0: * michael@0: * This approach to suspension assumes that all of a marker's parameters michael@0: * can fit into a single input bufferload. This should hold for "normal" michael@0: * markers. Some COM/APPn markers might have large parameter segments michael@0: * that might not fit. If we are simply dropping such a marker, we use michael@0: * skip_input_data to get past it, and thereby put the problem on the michael@0: * source manager's shoulders. If we are saving the marker's contents michael@0: * into memory, we use a slightly different convention: when forced to michael@0: * suspend, the marker processor updates the restart point to the end of michael@0: * what it's consumed (ie, the end of the buffer) before returning FALSE. michael@0: * On resumption, cinfo->unread_marker still contains the marker code, michael@0: * but the data source will point to the next chunk of marker data. michael@0: * The marker processor must retain internal state to deal with this. michael@0: * michael@0: * Note that we don't bother to avoid duplicate trace messages if a michael@0: * suspension occurs within marker parameters. Other side effects michael@0: * require more care. michael@0: */ michael@0: michael@0: michael@0: LOCAL(boolean) michael@0: get_soi (j_decompress_ptr cinfo) michael@0: /* Process an SOI marker */ michael@0: { michael@0: int i; michael@0: michael@0: TRACEMS(cinfo, 1, JTRC_SOI); michael@0: michael@0: if (cinfo->marker->saw_SOI) michael@0: ERREXIT(cinfo, JERR_SOI_DUPLICATE); michael@0: michael@0: /* Reset all parameters that are defined to be reset by SOI */ michael@0: michael@0: for (i = 0; i < NUM_ARITH_TBLS; i++) { michael@0: cinfo->arith_dc_L[i] = 0; michael@0: cinfo->arith_dc_U[i] = 1; michael@0: cinfo->arith_ac_K[i] = 5; michael@0: } michael@0: cinfo->restart_interval = 0; michael@0: michael@0: /* Set initial assumptions for colorspace etc */ michael@0: michael@0: cinfo->jpeg_color_space = JCS_UNKNOWN; michael@0: cinfo->CCIR601_sampling = FALSE; /* Assume non-CCIR sampling??? */ michael@0: michael@0: cinfo->saw_JFIF_marker = FALSE; michael@0: cinfo->JFIF_major_version = 1; /* set default JFIF APP0 values */ michael@0: cinfo->JFIF_minor_version = 1; michael@0: cinfo->density_unit = 0; michael@0: cinfo->X_density = 1; michael@0: cinfo->Y_density = 1; michael@0: cinfo->saw_Adobe_marker = FALSE; michael@0: cinfo->Adobe_transform = 0; michael@0: michael@0: cinfo->marker->saw_SOI = TRUE; michael@0: michael@0: return TRUE; michael@0: } michael@0: michael@0: michael@0: LOCAL(boolean) michael@0: get_sof (j_decompress_ptr cinfo, boolean is_prog, boolean is_arith) michael@0: /* Process a SOFn marker */ michael@0: { michael@0: INT32 length; michael@0: int c, ci; michael@0: jpeg_component_info * compptr; michael@0: INPUT_VARS(cinfo); michael@0: michael@0: cinfo->progressive_mode = is_prog; michael@0: cinfo->arith_code = is_arith; michael@0: michael@0: INPUT_2BYTES(cinfo, length, return FALSE); michael@0: michael@0: INPUT_BYTE(cinfo, cinfo->data_precision, return FALSE); michael@0: INPUT_2BYTES(cinfo, cinfo->image_height, return FALSE); michael@0: INPUT_2BYTES(cinfo, cinfo->image_width, return FALSE); michael@0: INPUT_BYTE(cinfo, cinfo->num_components, return FALSE); michael@0: michael@0: length -= 8; michael@0: michael@0: TRACEMS4(cinfo, 1, JTRC_SOF, cinfo->unread_marker, michael@0: (int) cinfo->image_width, (int) cinfo->image_height, michael@0: cinfo->num_components); michael@0: michael@0: if (cinfo->marker->saw_SOF) michael@0: ERREXIT(cinfo, JERR_SOF_DUPLICATE); michael@0: michael@0: /* We don't support files in which the image height is initially specified */ michael@0: /* as 0 and is later redefined by DNL. As long as we have to check that, */ michael@0: /* might as well have a general sanity check. */ michael@0: if (cinfo->image_height <= 0 || cinfo->image_width <= 0 michael@0: || cinfo->num_components <= 0) michael@0: ERREXIT(cinfo, JERR_EMPTY_IMAGE); michael@0: michael@0: if (length != (cinfo->num_components * 3)) michael@0: ERREXIT(cinfo, JERR_BAD_LENGTH); michael@0: michael@0: if (cinfo->comp_info == NULL) /* do only once, even if suspend */ michael@0: cinfo->comp_info = (jpeg_component_info *) (*cinfo->mem->alloc_small) michael@0: ((j_common_ptr) cinfo, JPOOL_IMAGE, michael@0: cinfo->num_components * SIZEOF(jpeg_component_info)); michael@0: michael@0: for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; michael@0: ci++, compptr++) { michael@0: compptr->component_index = ci; michael@0: INPUT_BYTE(cinfo, compptr->component_id, return FALSE); michael@0: INPUT_BYTE(cinfo, c, return FALSE); michael@0: compptr->h_samp_factor = (c >> 4) & 15; michael@0: compptr->v_samp_factor = (c ) & 15; michael@0: INPUT_BYTE(cinfo, compptr->quant_tbl_no, return FALSE); michael@0: michael@0: TRACEMS4(cinfo, 1, JTRC_SOF_COMPONENT, michael@0: compptr->component_id, compptr->h_samp_factor, michael@0: compptr->v_samp_factor, compptr->quant_tbl_no); michael@0: } michael@0: michael@0: cinfo->marker->saw_SOF = TRUE; michael@0: michael@0: INPUT_SYNC(cinfo); michael@0: return TRUE; michael@0: } michael@0: michael@0: michael@0: LOCAL(boolean) michael@0: get_sos (j_decompress_ptr cinfo) michael@0: /* Process a SOS marker */ michael@0: { michael@0: INT32 length; michael@0: int i, ci, n, c, cc, pi; michael@0: jpeg_component_info * compptr; michael@0: INPUT_VARS(cinfo); michael@0: michael@0: if (! cinfo->marker->saw_SOF) michael@0: ERREXIT(cinfo, JERR_SOS_NO_SOF); michael@0: michael@0: INPUT_2BYTES(cinfo, length, return FALSE); michael@0: michael@0: INPUT_BYTE(cinfo, n, return FALSE); /* Number of components */ michael@0: michael@0: TRACEMS1(cinfo, 1, JTRC_SOS, n); michael@0: michael@0: if (length != (n * 2 + 6) || n < 1 || n > MAX_COMPS_IN_SCAN) michael@0: ERREXIT(cinfo, JERR_BAD_LENGTH); michael@0: michael@0: cinfo->comps_in_scan = n; michael@0: michael@0: /* Collect the component-spec parameters */ michael@0: michael@0: for (i = 0; i < MAX_COMPS_IN_SCAN; i++) michael@0: cinfo->cur_comp_info[i] = NULL; michael@0: michael@0: for (i = 0; i < n; i++) { michael@0: INPUT_BYTE(cinfo, cc, return FALSE); michael@0: INPUT_BYTE(cinfo, c, return FALSE); michael@0: michael@0: for (ci = 0, compptr = cinfo->comp_info; michael@0: ci < cinfo->num_components && ci < MAX_COMPS_IN_SCAN; michael@0: ci++, compptr++) { michael@0: if (cc == compptr->component_id && !cinfo->cur_comp_info[ci]) michael@0: goto id_found; michael@0: } michael@0: michael@0: ERREXIT1(cinfo, JERR_BAD_COMPONENT_ID, cc); michael@0: michael@0: id_found: michael@0: michael@0: cinfo->cur_comp_info[i] = compptr; michael@0: compptr->dc_tbl_no = (c >> 4) & 15; michael@0: compptr->ac_tbl_no = (c ) & 15; michael@0: michael@0: TRACEMS3(cinfo, 1, JTRC_SOS_COMPONENT, cc, michael@0: compptr->dc_tbl_no, compptr->ac_tbl_no); michael@0: michael@0: /* This CSi (cc) should differ from the previous CSi */ michael@0: for (pi = 0; pi < i; pi++) { michael@0: if (cinfo->cur_comp_info[pi] == compptr) { michael@0: ERREXIT1(cinfo, JERR_BAD_COMPONENT_ID, cc); michael@0: } michael@0: } michael@0: } michael@0: michael@0: /* Collect the additional scan parameters Ss, Se, Ah/Al. */ michael@0: INPUT_BYTE(cinfo, c, return FALSE); michael@0: cinfo->Ss = c; michael@0: INPUT_BYTE(cinfo, c, return FALSE); michael@0: cinfo->Se = c; michael@0: INPUT_BYTE(cinfo, c, return FALSE); michael@0: cinfo->Ah = (c >> 4) & 15; michael@0: cinfo->Al = (c ) & 15; michael@0: michael@0: TRACEMS4(cinfo, 1, JTRC_SOS_PARAMS, cinfo->Ss, cinfo->Se, michael@0: cinfo->Ah, cinfo->Al); michael@0: michael@0: /* Prepare to scan data & restart markers */ michael@0: cinfo->marker->next_restart_num = 0; michael@0: michael@0: /* Count another SOS marker */ michael@0: cinfo->input_scan_number++; michael@0: michael@0: INPUT_SYNC(cinfo); michael@0: return TRUE; michael@0: } michael@0: michael@0: michael@0: #ifdef D_ARITH_CODING_SUPPORTED michael@0: michael@0: LOCAL(boolean) michael@0: get_dac (j_decompress_ptr cinfo) michael@0: /* Process a DAC marker */ michael@0: { michael@0: INT32 length; michael@0: int index, val; michael@0: INPUT_VARS(cinfo); michael@0: michael@0: INPUT_2BYTES(cinfo, length, return FALSE); michael@0: length -= 2; michael@0: michael@0: while (length > 0) { michael@0: INPUT_BYTE(cinfo, index, return FALSE); michael@0: INPUT_BYTE(cinfo, val, return FALSE); michael@0: michael@0: length -= 2; michael@0: michael@0: TRACEMS2(cinfo, 1, JTRC_DAC, index, val); michael@0: michael@0: if (index < 0 || index >= (2*NUM_ARITH_TBLS)) michael@0: ERREXIT1(cinfo, JERR_DAC_INDEX, index); michael@0: michael@0: if (index >= NUM_ARITH_TBLS) { /* define AC table */ michael@0: cinfo->arith_ac_K[index-NUM_ARITH_TBLS] = (UINT8) val; michael@0: } else { /* define DC table */ michael@0: cinfo->arith_dc_L[index] = (UINT8) (val & 0x0F); michael@0: cinfo->arith_dc_U[index] = (UINT8) (val >> 4); michael@0: if (cinfo->arith_dc_L[index] > cinfo->arith_dc_U[index]) michael@0: ERREXIT1(cinfo, JERR_DAC_VALUE, val); michael@0: } michael@0: } michael@0: michael@0: if (length != 0) michael@0: ERREXIT(cinfo, JERR_BAD_LENGTH); michael@0: michael@0: INPUT_SYNC(cinfo); michael@0: return TRUE; michael@0: } michael@0: michael@0: #else /* ! D_ARITH_CODING_SUPPORTED */ michael@0: michael@0: #define get_dac(cinfo) skip_variable(cinfo) michael@0: michael@0: #endif /* D_ARITH_CODING_SUPPORTED */ michael@0: michael@0: michael@0: LOCAL(boolean) michael@0: get_dht (j_decompress_ptr cinfo) michael@0: /* Process a DHT marker */ michael@0: { michael@0: INT32 length; michael@0: UINT8 bits[17]; michael@0: UINT8 huffval[256]; michael@0: int i, index, count; michael@0: JHUFF_TBL **htblptr; michael@0: INPUT_VARS(cinfo); michael@0: michael@0: INPUT_2BYTES(cinfo, length, return FALSE); michael@0: length -= 2; michael@0: michael@0: while (length > 16) { michael@0: INPUT_BYTE(cinfo, index, return FALSE); michael@0: michael@0: TRACEMS1(cinfo, 1, JTRC_DHT, index); michael@0: michael@0: bits[0] = 0; michael@0: count = 0; michael@0: for (i = 1; i <= 16; i++) { michael@0: INPUT_BYTE(cinfo, bits[i], return FALSE); michael@0: count += bits[i]; michael@0: } michael@0: michael@0: length -= 1 + 16; michael@0: michael@0: TRACEMS8(cinfo, 2, JTRC_HUFFBITS, michael@0: bits[1], bits[2], bits[3], bits[4], michael@0: bits[5], bits[6], bits[7], bits[8]); michael@0: TRACEMS8(cinfo, 2, JTRC_HUFFBITS, michael@0: bits[9], bits[10], bits[11], bits[12], michael@0: bits[13], bits[14], bits[15], bits[16]); michael@0: michael@0: /* Here we just do minimal validation of the counts to avoid walking michael@0: * off the end of our table space. jdhuff.c will check more carefully. michael@0: */ michael@0: if (count > 256 || ((INT32) count) > length) michael@0: ERREXIT(cinfo, JERR_BAD_HUFF_TABLE); michael@0: michael@0: for (i = 0; i < count; i++) michael@0: INPUT_BYTE(cinfo, huffval[i], return FALSE); michael@0: michael@0: MEMZERO(&huffval[count], (256 - count) * SIZEOF(UINT8)); michael@0: michael@0: length -= count; michael@0: michael@0: if (index & 0x10) { /* AC table definition */ michael@0: index -= 0x10; michael@0: if (index < 0 || index >= NUM_HUFF_TBLS) michael@0: ERREXIT1(cinfo, JERR_DHT_INDEX, index); michael@0: htblptr = &cinfo->ac_huff_tbl_ptrs[index]; michael@0: } else { /* DC table definition */ michael@0: if (index < 0 || index >= NUM_HUFF_TBLS) michael@0: ERREXIT1(cinfo, JERR_DHT_INDEX, index); michael@0: htblptr = &cinfo->dc_huff_tbl_ptrs[index]; michael@0: } michael@0: michael@0: if (*htblptr == NULL) michael@0: *htblptr = jpeg_alloc_huff_table((j_common_ptr) cinfo); michael@0: michael@0: MEMCOPY((*htblptr)->bits, bits, SIZEOF((*htblptr)->bits)); michael@0: MEMCOPY((*htblptr)->huffval, huffval, SIZEOF((*htblptr)->huffval)); michael@0: } michael@0: michael@0: if (length != 0) michael@0: ERREXIT(cinfo, JERR_BAD_LENGTH); michael@0: michael@0: INPUT_SYNC(cinfo); michael@0: return TRUE; michael@0: } michael@0: michael@0: michael@0: LOCAL(boolean) michael@0: get_dqt (j_decompress_ptr cinfo) michael@0: /* Process a DQT marker */ michael@0: { michael@0: INT32 length; michael@0: int n, i, prec; michael@0: unsigned int tmp; michael@0: JQUANT_TBL *quant_ptr; michael@0: INPUT_VARS(cinfo); michael@0: michael@0: INPUT_2BYTES(cinfo, length, return FALSE); michael@0: length -= 2; michael@0: michael@0: while (length > 0) { michael@0: INPUT_BYTE(cinfo, n, return FALSE); michael@0: prec = n >> 4; michael@0: n &= 0x0F; michael@0: michael@0: TRACEMS2(cinfo, 1, JTRC_DQT, n, prec); michael@0: michael@0: if (n >= NUM_QUANT_TBLS) michael@0: ERREXIT1(cinfo, JERR_DQT_INDEX, n); michael@0: michael@0: if (cinfo->quant_tbl_ptrs[n] == NULL) michael@0: cinfo->quant_tbl_ptrs[n] = jpeg_alloc_quant_table((j_common_ptr) cinfo); michael@0: quant_ptr = cinfo->quant_tbl_ptrs[n]; michael@0: michael@0: for (i = 0; i < DCTSIZE2; i++) { michael@0: if (prec) michael@0: INPUT_2BYTES(cinfo, tmp, return FALSE); michael@0: else michael@0: INPUT_BYTE(cinfo, tmp, return FALSE); michael@0: /* We convert the zigzag-order table to natural array order. */ michael@0: quant_ptr->quantval[jpeg_natural_order[i]] = (UINT16) tmp; michael@0: } michael@0: michael@0: if (cinfo->err->trace_level >= 2) { michael@0: for (i = 0; i < DCTSIZE2; i += 8) { michael@0: TRACEMS8(cinfo, 2, JTRC_QUANTVALS, michael@0: quant_ptr->quantval[i], quant_ptr->quantval[i+1], michael@0: quant_ptr->quantval[i+2], quant_ptr->quantval[i+3], michael@0: quant_ptr->quantval[i+4], quant_ptr->quantval[i+5], michael@0: quant_ptr->quantval[i+6], quant_ptr->quantval[i+7]); michael@0: } michael@0: } michael@0: michael@0: length -= DCTSIZE2+1; michael@0: if (prec) length -= DCTSIZE2; michael@0: } michael@0: michael@0: if (length != 0) michael@0: ERREXIT(cinfo, JERR_BAD_LENGTH); michael@0: michael@0: INPUT_SYNC(cinfo); michael@0: return TRUE; michael@0: } michael@0: michael@0: michael@0: LOCAL(boolean) michael@0: get_dri (j_decompress_ptr cinfo) michael@0: /* Process a DRI marker */ michael@0: { michael@0: INT32 length; michael@0: unsigned int tmp; michael@0: INPUT_VARS(cinfo); michael@0: michael@0: INPUT_2BYTES(cinfo, length, return FALSE); michael@0: michael@0: if (length != 4) michael@0: ERREXIT(cinfo, JERR_BAD_LENGTH); michael@0: michael@0: INPUT_2BYTES(cinfo, tmp, return FALSE); michael@0: michael@0: TRACEMS1(cinfo, 1, JTRC_DRI, tmp); michael@0: michael@0: cinfo->restart_interval = tmp; michael@0: michael@0: INPUT_SYNC(cinfo); michael@0: return TRUE; michael@0: } michael@0: michael@0: michael@0: /* michael@0: * Routines for processing APPn and COM markers. michael@0: * These are either saved in memory or discarded, per application request. michael@0: * APP0 and APP14 are specially checked to see if they are michael@0: * JFIF and Adobe markers, respectively. michael@0: */ michael@0: michael@0: #define APP0_DATA_LEN 14 /* Length of interesting data in APP0 */ michael@0: #define APP14_DATA_LEN 12 /* Length of interesting data in APP14 */ michael@0: #define APPN_DATA_LEN 14 /* Must be the largest of the above!! */ michael@0: michael@0: michael@0: LOCAL(void) michael@0: examine_app0 (j_decompress_ptr cinfo, JOCTET FAR * data, michael@0: unsigned int datalen, INT32 remaining) michael@0: /* Examine first few bytes from an APP0. michael@0: * Take appropriate action if it is a JFIF marker. michael@0: * datalen is # of bytes at data[], remaining is length of rest of marker data. michael@0: */ michael@0: { michael@0: INT32 totallen = (INT32) datalen + remaining; michael@0: michael@0: if (datalen >= APP0_DATA_LEN && michael@0: GETJOCTET(data[0]) == 0x4A && michael@0: GETJOCTET(data[1]) == 0x46 && michael@0: GETJOCTET(data[2]) == 0x49 && michael@0: GETJOCTET(data[3]) == 0x46 && michael@0: GETJOCTET(data[4]) == 0) { michael@0: /* Found JFIF APP0 marker: save info */ michael@0: cinfo->saw_JFIF_marker = TRUE; michael@0: cinfo->JFIF_major_version = GETJOCTET(data[5]); michael@0: cinfo->JFIF_minor_version = GETJOCTET(data[6]); michael@0: cinfo->density_unit = GETJOCTET(data[7]); michael@0: cinfo->X_density = (GETJOCTET(data[8]) << 8) + GETJOCTET(data[9]); michael@0: cinfo->Y_density = (GETJOCTET(data[10]) << 8) + GETJOCTET(data[11]); michael@0: /* Check version. michael@0: * Major version must be 1, anything else signals an incompatible change. michael@0: * (We used to treat this as an error, but now it's a nonfatal warning, michael@0: * because some bozo at Hijaak couldn't read the spec.) michael@0: * Minor version should be 0..2, but process anyway if newer. michael@0: */ michael@0: if (cinfo->JFIF_major_version != 1) michael@0: WARNMS2(cinfo, JWRN_JFIF_MAJOR, michael@0: cinfo->JFIF_major_version, cinfo->JFIF_minor_version); michael@0: /* Generate trace messages */ michael@0: TRACEMS5(cinfo, 1, JTRC_JFIF, michael@0: cinfo->JFIF_major_version, cinfo->JFIF_minor_version, michael@0: cinfo->X_density, cinfo->Y_density, cinfo->density_unit); michael@0: /* Validate thumbnail dimensions and issue appropriate messages */ michael@0: if (GETJOCTET(data[12]) | GETJOCTET(data[13])) michael@0: TRACEMS2(cinfo, 1, JTRC_JFIF_THUMBNAIL, michael@0: GETJOCTET(data[12]), GETJOCTET(data[13])); michael@0: totallen -= APP0_DATA_LEN; michael@0: if (totallen != michael@0: ((INT32)GETJOCTET(data[12]) * (INT32)GETJOCTET(data[13]) * (INT32) 3)) michael@0: TRACEMS1(cinfo, 1, JTRC_JFIF_BADTHUMBNAILSIZE, (int) totallen); michael@0: } else if (datalen >= 6 && michael@0: GETJOCTET(data[0]) == 0x4A && michael@0: GETJOCTET(data[1]) == 0x46 && michael@0: GETJOCTET(data[2]) == 0x58 && michael@0: GETJOCTET(data[3]) == 0x58 && michael@0: GETJOCTET(data[4]) == 0) { michael@0: /* Found JFIF "JFXX" extension APP0 marker */ michael@0: /* The library doesn't actually do anything with these, michael@0: * but we try to produce a helpful trace message. michael@0: */ michael@0: switch (GETJOCTET(data[5])) { michael@0: case 0x10: michael@0: TRACEMS1(cinfo, 1, JTRC_THUMB_JPEG, (int) totallen); michael@0: break; michael@0: case 0x11: michael@0: TRACEMS1(cinfo, 1, JTRC_THUMB_PALETTE, (int) totallen); michael@0: break; michael@0: case 0x13: michael@0: TRACEMS1(cinfo, 1, JTRC_THUMB_RGB, (int) totallen); michael@0: break; michael@0: default: michael@0: TRACEMS2(cinfo, 1, JTRC_JFIF_EXTENSION, michael@0: GETJOCTET(data[5]), (int) totallen); michael@0: break; michael@0: } michael@0: } else { michael@0: /* Start of APP0 does not match "JFIF" or "JFXX", or too short */ michael@0: TRACEMS1(cinfo, 1, JTRC_APP0, (int) totallen); michael@0: } michael@0: } michael@0: michael@0: michael@0: LOCAL(void) michael@0: examine_app14 (j_decompress_ptr cinfo, JOCTET FAR * data, michael@0: unsigned int datalen, INT32 remaining) michael@0: /* Examine first few bytes from an APP14. michael@0: * Take appropriate action if it is an Adobe marker. michael@0: * datalen is # of bytes at data[], remaining is length of rest of marker data. michael@0: */ michael@0: { michael@0: unsigned int version, flags0, flags1, transform; michael@0: michael@0: if (datalen >= APP14_DATA_LEN && michael@0: GETJOCTET(data[0]) == 0x41 && michael@0: GETJOCTET(data[1]) == 0x64 && michael@0: GETJOCTET(data[2]) == 0x6F && michael@0: GETJOCTET(data[3]) == 0x62 && michael@0: GETJOCTET(data[4]) == 0x65) { michael@0: /* Found Adobe APP14 marker */ michael@0: version = (GETJOCTET(data[5]) << 8) + GETJOCTET(data[6]); michael@0: flags0 = (GETJOCTET(data[7]) << 8) + GETJOCTET(data[8]); michael@0: flags1 = (GETJOCTET(data[9]) << 8) + GETJOCTET(data[10]); michael@0: transform = GETJOCTET(data[11]); michael@0: TRACEMS4(cinfo, 1, JTRC_ADOBE, version, flags0, flags1, transform); michael@0: cinfo->saw_Adobe_marker = TRUE; michael@0: cinfo->Adobe_transform = (UINT8) transform; michael@0: } else { michael@0: /* Start of APP14 does not match "Adobe", or too short */ michael@0: TRACEMS1(cinfo, 1, JTRC_APP14, (int) (datalen + remaining)); michael@0: } michael@0: } michael@0: michael@0: michael@0: METHODDEF(boolean) michael@0: get_interesting_appn (j_decompress_ptr cinfo) michael@0: /* Process an APP0 or APP14 marker without saving it */ michael@0: { michael@0: INT32 length; michael@0: JOCTET b[APPN_DATA_LEN]; michael@0: unsigned int i, numtoread; michael@0: INPUT_VARS(cinfo); michael@0: michael@0: INPUT_2BYTES(cinfo, length, return FALSE); michael@0: length -= 2; michael@0: michael@0: /* get the interesting part of the marker data */ michael@0: if (length >= APPN_DATA_LEN) michael@0: numtoread = APPN_DATA_LEN; michael@0: else if (length > 0) michael@0: numtoread = (unsigned int) length; michael@0: else michael@0: numtoread = 0; michael@0: for (i = 0; i < numtoread; i++) michael@0: INPUT_BYTE(cinfo, b[i], return FALSE); michael@0: length -= numtoread; michael@0: michael@0: /* process it */ michael@0: switch (cinfo->unread_marker) { michael@0: case M_APP0: michael@0: examine_app0(cinfo, (JOCTET FAR *) b, numtoread, length); michael@0: break; michael@0: case M_APP14: michael@0: examine_app14(cinfo, (JOCTET FAR *) b, numtoread, length); michael@0: break; michael@0: default: michael@0: /* can't get here unless jpeg_save_markers chooses wrong processor */ michael@0: ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, cinfo->unread_marker); michael@0: break; michael@0: } michael@0: michael@0: /* skip any remaining data -- could be lots */ michael@0: INPUT_SYNC(cinfo); michael@0: if (length > 0) michael@0: (*cinfo->src->skip_input_data) (cinfo, (long) length); michael@0: michael@0: return TRUE; michael@0: } michael@0: michael@0: michael@0: #ifdef SAVE_MARKERS_SUPPORTED michael@0: michael@0: METHODDEF(boolean) michael@0: save_marker (j_decompress_ptr cinfo) michael@0: /* Save an APPn or COM marker into the marker list */ michael@0: { michael@0: my_marker_ptr marker = (my_marker_ptr) cinfo->marker; michael@0: jpeg_saved_marker_ptr cur_marker = marker->cur_marker; michael@0: unsigned int bytes_read, data_length; michael@0: JOCTET FAR * data; michael@0: INT32 length = 0; michael@0: INPUT_VARS(cinfo); michael@0: michael@0: if (cur_marker == NULL) { michael@0: /* begin reading a marker */ michael@0: INPUT_2BYTES(cinfo, length, return FALSE); michael@0: length -= 2; michael@0: if (length >= 0) { /* watch out for bogus length word */ michael@0: /* figure out how much we want to save */ michael@0: unsigned int limit; michael@0: if (cinfo->unread_marker == (int) M_COM) michael@0: limit = marker->length_limit_COM; michael@0: else michael@0: limit = marker->length_limit_APPn[cinfo->unread_marker - (int) M_APP0]; michael@0: if ((unsigned int) length < limit) michael@0: limit = (unsigned int) length; michael@0: /* allocate and initialize the marker item */ michael@0: cur_marker = (jpeg_saved_marker_ptr) michael@0: (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE, michael@0: SIZEOF(struct jpeg_marker_struct) + limit); michael@0: cur_marker->next = NULL; michael@0: cur_marker->marker = (UINT8) cinfo->unread_marker; michael@0: cur_marker->original_length = (unsigned int) length; michael@0: cur_marker->data_length = limit; michael@0: /* data area is just beyond the jpeg_marker_struct */ michael@0: data = cur_marker->data = (JOCTET FAR *) (cur_marker + 1); michael@0: marker->cur_marker = cur_marker; michael@0: marker->bytes_read = 0; michael@0: bytes_read = 0; michael@0: data_length = limit; michael@0: } else { michael@0: /* deal with bogus length word */ michael@0: bytes_read = data_length = 0; michael@0: data = NULL; michael@0: } michael@0: } else { michael@0: /* resume reading a marker */ michael@0: bytes_read = marker->bytes_read; michael@0: data_length = cur_marker->data_length; michael@0: data = cur_marker->data + bytes_read; michael@0: } michael@0: michael@0: while (bytes_read < data_length) { michael@0: INPUT_SYNC(cinfo); /* move the restart point to here */ michael@0: marker->bytes_read = bytes_read; michael@0: /* If there's not at least one byte in buffer, suspend */ michael@0: MAKE_BYTE_AVAIL(cinfo, return FALSE); michael@0: /* Copy bytes with reasonable rapidity */ michael@0: while (bytes_read < data_length && bytes_in_buffer > 0) { michael@0: *data++ = *next_input_byte++; michael@0: bytes_in_buffer--; michael@0: bytes_read++; michael@0: } michael@0: } michael@0: michael@0: /* Done reading what we want to read */ michael@0: if (cur_marker != NULL) { /* will be NULL if bogus length word */ michael@0: /* Add new marker to end of list */ michael@0: if (cinfo->marker_list == NULL) { michael@0: cinfo->marker_list = cur_marker; michael@0: } else { michael@0: jpeg_saved_marker_ptr prev = cinfo->marker_list; michael@0: while (prev->next != NULL) michael@0: prev = prev->next; michael@0: prev->next = cur_marker; michael@0: } michael@0: /* Reset pointer & calc remaining data length */ michael@0: data = cur_marker->data; michael@0: length = cur_marker->original_length - data_length; michael@0: } michael@0: /* Reset to initial state for next marker */ michael@0: marker->cur_marker = NULL; michael@0: michael@0: /* Process the marker if interesting; else just make a generic trace msg */ michael@0: switch (cinfo->unread_marker) { michael@0: case M_APP0: michael@0: examine_app0(cinfo, data, data_length, length); michael@0: break; michael@0: case M_APP14: michael@0: examine_app14(cinfo, data, data_length, length); michael@0: break; michael@0: default: michael@0: TRACEMS2(cinfo, 1, JTRC_MISC_MARKER, cinfo->unread_marker, michael@0: (int) (data_length + length)); michael@0: break; michael@0: } michael@0: michael@0: /* skip any remaining data -- could be lots */ michael@0: INPUT_SYNC(cinfo); /* do before skip_input_data */ michael@0: if (length > 0) michael@0: (*cinfo->src->skip_input_data) (cinfo, (long) length); michael@0: michael@0: return TRUE; michael@0: } michael@0: michael@0: #endif /* SAVE_MARKERS_SUPPORTED */ michael@0: michael@0: michael@0: METHODDEF(boolean) michael@0: skip_variable (j_decompress_ptr cinfo) michael@0: /* Skip over an unknown or uninteresting variable-length marker */ michael@0: { michael@0: INT32 length; michael@0: INPUT_VARS(cinfo); michael@0: michael@0: INPUT_2BYTES(cinfo, length, return FALSE); michael@0: length -= 2; michael@0: michael@0: TRACEMS2(cinfo, 1, JTRC_MISC_MARKER, cinfo->unread_marker, (int) length); michael@0: michael@0: INPUT_SYNC(cinfo); /* do before skip_input_data */ michael@0: if (length > 0) michael@0: (*cinfo->src->skip_input_data) (cinfo, (long) length); michael@0: michael@0: return TRUE; michael@0: } michael@0: michael@0: michael@0: /* michael@0: * Find the next JPEG marker, save it in cinfo->unread_marker. michael@0: * Returns FALSE if had to suspend before reaching a marker; michael@0: * in that case cinfo->unread_marker is unchanged. michael@0: * michael@0: * Note that the result might not be a valid marker code, michael@0: * but it will never be 0 or FF. michael@0: */ michael@0: michael@0: LOCAL(boolean) michael@0: next_marker (j_decompress_ptr cinfo) michael@0: { michael@0: int c; michael@0: INPUT_VARS(cinfo); michael@0: michael@0: for (;;) { michael@0: INPUT_BYTE(cinfo, c, return FALSE); michael@0: /* Skip any non-FF bytes. michael@0: * This may look a bit inefficient, but it will not occur in a valid file. michael@0: * We sync after each discarded byte so that a suspending data source michael@0: * can discard the byte from its buffer. michael@0: */ michael@0: while (c != 0xFF) { michael@0: cinfo->marker->discarded_bytes++; michael@0: INPUT_SYNC(cinfo); michael@0: INPUT_BYTE(cinfo, c, return FALSE); michael@0: } michael@0: /* This loop swallows any duplicate FF bytes. Extra FFs are legal as michael@0: * pad bytes, so don't count them in discarded_bytes. We assume there michael@0: * will not be so many consecutive FF bytes as to overflow a suspending michael@0: * data source's input buffer. michael@0: */ michael@0: do { michael@0: INPUT_BYTE(cinfo, c, return FALSE); michael@0: } while (c == 0xFF); michael@0: if (c != 0) michael@0: break; /* found a valid marker, exit loop */ michael@0: /* Reach here if we found a stuffed-zero data sequence (FF/00). michael@0: * Discard it and loop back to try again. michael@0: */ michael@0: cinfo->marker->discarded_bytes += 2; michael@0: INPUT_SYNC(cinfo); michael@0: } michael@0: michael@0: if (cinfo->marker->discarded_bytes != 0) { michael@0: WARNMS2(cinfo, JWRN_EXTRANEOUS_DATA, cinfo->marker->discarded_bytes, c); michael@0: cinfo->marker->discarded_bytes = 0; michael@0: } michael@0: michael@0: cinfo->unread_marker = c; michael@0: michael@0: INPUT_SYNC(cinfo); michael@0: return TRUE; michael@0: } michael@0: michael@0: michael@0: LOCAL(boolean) michael@0: first_marker (j_decompress_ptr cinfo) michael@0: /* Like next_marker, but used to obtain the initial SOI marker. */ michael@0: /* For this marker, we do not allow preceding garbage or fill; otherwise, michael@0: * we might well scan an entire input file before realizing it ain't JPEG. michael@0: * If an application wants to process non-JFIF files, it must seek to the michael@0: * SOI before calling the JPEG library. michael@0: */ michael@0: { michael@0: int c, c2; michael@0: INPUT_VARS(cinfo); michael@0: michael@0: INPUT_BYTE(cinfo, c, return FALSE); michael@0: INPUT_BYTE(cinfo, c2, return FALSE); michael@0: if (c != 0xFF || c2 != (int) M_SOI) michael@0: ERREXIT2(cinfo, JERR_NO_SOI, c, c2); michael@0: michael@0: cinfo->unread_marker = c2; michael@0: michael@0: INPUT_SYNC(cinfo); michael@0: return TRUE; michael@0: } michael@0: michael@0: michael@0: /* michael@0: * Read markers until SOS or EOI. michael@0: * michael@0: * Returns same codes as are defined for jpeg_consume_input: michael@0: * JPEG_SUSPENDED, JPEG_REACHED_SOS, or JPEG_REACHED_EOI. michael@0: */ michael@0: michael@0: METHODDEF(int) michael@0: read_markers (j_decompress_ptr cinfo) michael@0: { michael@0: /* Outer loop repeats once for each marker. */ michael@0: for (;;) { michael@0: /* Collect the marker proper, unless we already did. */ michael@0: /* NB: first_marker() enforces the requirement that SOI appear first. */ michael@0: if (cinfo->unread_marker == 0) { michael@0: if (! cinfo->marker->saw_SOI) { michael@0: if (! first_marker(cinfo)) michael@0: return JPEG_SUSPENDED; michael@0: } else { michael@0: if (! next_marker(cinfo)) michael@0: return JPEG_SUSPENDED; michael@0: } michael@0: } michael@0: /* At this point cinfo->unread_marker contains the marker code and the michael@0: * input point is just past the marker proper, but before any parameters. michael@0: * A suspension will cause us to return with this state still true. michael@0: */ michael@0: switch (cinfo->unread_marker) { michael@0: case M_SOI: michael@0: if (! get_soi(cinfo)) michael@0: return JPEG_SUSPENDED; michael@0: break; michael@0: michael@0: case M_SOF0: /* Baseline */ michael@0: case M_SOF1: /* Extended sequential, Huffman */ michael@0: if (! get_sof(cinfo, FALSE, FALSE)) michael@0: return JPEG_SUSPENDED; michael@0: break; michael@0: michael@0: case M_SOF2: /* Progressive, Huffman */ michael@0: if (! get_sof(cinfo, TRUE, FALSE)) michael@0: return JPEG_SUSPENDED; michael@0: break; michael@0: michael@0: case M_SOF9: /* Extended sequential, arithmetic */ michael@0: if (! get_sof(cinfo, FALSE, TRUE)) michael@0: return JPEG_SUSPENDED; michael@0: break; michael@0: michael@0: case M_SOF10: /* Progressive, arithmetic */ michael@0: if (! get_sof(cinfo, TRUE, TRUE)) michael@0: return JPEG_SUSPENDED; michael@0: break; michael@0: michael@0: /* Currently unsupported SOFn types */ michael@0: case M_SOF3: /* Lossless, Huffman */ michael@0: case M_SOF5: /* Differential sequential, Huffman */ michael@0: case M_SOF6: /* Differential progressive, Huffman */ michael@0: case M_SOF7: /* Differential lossless, Huffman */ michael@0: case M_JPG: /* Reserved for JPEG extensions */ michael@0: case M_SOF11: /* Lossless, arithmetic */ michael@0: case M_SOF13: /* Differential sequential, arithmetic */ michael@0: case M_SOF14: /* Differential progressive, arithmetic */ michael@0: case M_SOF15: /* Differential lossless, arithmetic */ michael@0: ERREXIT1(cinfo, JERR_SOF_UNSUPPORTED, cinfo->unread_marker); michael@0: break; michael@0: michael@0: case M_SOS: michael@0: if (! get_sos(cinfo)) michael@0: return JPEG_SUSPENDED; michael@0: cinfo->unread_marker = 0; /* processed the marker */ michael@0: return JPEG_REACHED_SOS; michael@0: michael@0: case M_EOI: michael@0: TRACEMS(cinfo, 1, JTRC_EOI); michael@0: cinfo->unread_marker = 0; /* processed the marker */ michael@0: return JPEG_REACHED_EOI; michael@0: michael@0: case M_DAC: michael@0: if (! get_dac(cinfo)) michael@0: return JPEG_SUSPENDED; michael@0: break; michael@0: michael@0: case M_DHT: michael@0: if (! get_dht(cinfo)) michael@0: return JPEG_SUSPENDED; michael@0: break; michael@0: michael@0: case M_DQT: michael@0: if (! get_dqt(cinfo)) michael@0: return JPEG_SUSPENDED; michael@0: break; michael@0: michael@0: case M_DRI: michael@0: if (! get_dri(cinfo)) michael@0: return JPEG_SUSPENDED; michael@0: break; michael@0: michael@0: case M_APP0: michael@0: case M_APP1: michael@0: case M_APP2: michael@0: case M_APP3: michael@0: case M_APP4: michael@0: case M_APP5: michael@0: case M_APP6: michael@0: case M_APP7: michael@0: case M_APP8: michael@0: case M_APP9: michael@0: case M_APP10: michael@0: case M_APP11: michael@0: case M_APP12: michael@0: case M_APP13: michael@0: case M_APP14: michael@0: case M_APP15: michael@0: if (! (*((my_marker_ptr) cinfo->marker)->process_APPn[ michael@0: cinfo->unread_marker - (int) M_APP0]) (cinfo)) michael@0: return JPEG_SUSPENDED; michael@0: break; michael@0: michael@0: case M_COM: michael@0: if (! (*((my_marker_ptr) cinfo->marker)->process_COM) (cinfo)) michael@0: return JPEG_SUSPENDED; michael@0: break; michael@0: michael@0: case M_RST0: /* these are all parameterless */ michael@0: case M_RST1: michael@0: case M_RST2: michael@0: case M_RST3: michael@0: case M_RST4: michael@0: case M_RST5: michael@0: case M_RST6: michael@0: case M_RST7: michael@0: case M_TEM: michael@0: TRACEMS1(cinfo, 1, JTRC_PARMLESS_MARKER, cinfo->unread_marker); michael@0: break; michael@0: michael@0: case M_DNL: /* Ignore DNL ... perhaps the wrong thing */ michael@0: if (! skip_variable(cinfo)) michael@0: return JPEG_SUSPENDED; michael@0: break; michael@0: michael@0: default: /* must be DHP, EXP, JPGn, or RESn */ michael@0: /* For now, we treat the reserved markers as fatal errors since they are michael@0: * likely to be used to signal incompatible JPEG Part 3 extensions. michael@0: * Once the JPEG 3 version-number marker is well defined, this code michael@0: * ought to change! michael@0: */ michael@0: ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, cinfo->unread_marker); michael@0: break; michael@0: } michael@0: /* Successfully processed marker, so reset state variable */ michael@0: cinfo->unread_marker = 0; michael@0: } /* end loop */ michael@0: } michael@0: michael@0: michael@0: /* michael@0: * Read a restart marker, which is expected to appear next in the datastream; michael@0: * if the marker is not there, take appropriate recovery action. michael@0: * Returns FALSE if suspension is required. michael@0: * michael@0: * This is called by the entropy decoder after it has read an appropriate michael@0: * number of MCUs. cinfo->unread_marker may be nonzero if the entropy decoder michael@0: * has already read a marker from the data source. Under normal conditions michael@0: * cinfo->unread_marker will be reset to 0 before returning; if not reset, michael@0: * it holds a marker which the decoder will be unable to read past. michael@0: */ michael@0: michael@0: METHODDEF(boolean) michael@0: read_restart_marker (j_decompress_ptr cinfo) michael@0: { michael@0: /* Obtain a marker unless we already did. */ michael@0: /* Note that next_marker will complain if it skips any data. */ michael@0: if (cinfo->unread_marker == 0) { michael@0: if (! next_marker(cinfo)) michael@0: return FALSE; michael@0: } michael@0: michael@0: if (cinfo->unread_marker == michael@0: ((int) M_RST0 + cinfo->marker->next_restart_num)) { michael@0: /* Normal case --- swallow the marker and let entropy decoder continue */ michael@0: TRACEMS1(cinfo, 3, JTRC_RST, cinfo->marker->next_restart_num); michael@0: cinfo->unread_marker = 0; michael@0: } else { michael@0: /* Uh-oh, the restart markers have been messed up. */ michael@0: /* Let the data source manager determine how to resync. */ michael@0: if (! (*cinfo->src->resync_to_restart) (cinfo, michael@0: cinfo->marker->next_restart_num)) michael@0: return FALSE; michael@0: } michael@0: michael@0: /* Update next-restart state */ michael@0: cinfo->marker->next_restart_num = (cinfo->marker->next_restart_num + 1) & 7; michael@0: michael@0: return TRUE; michael@0: } michael@0: michael@0: michael@0: /* michael@0: * This is the default resync_to_restart method for data source managers michael@0: * to use if they don't have any better approach. Some data source managers michael@0: * may be able to back up, or may have additional knowledge about the data michael@0: * which permits a more intelligent recovery strategy; such managers would michael@0: * presumably supply their own resync method. michael@0: * michael@0: * read_restart_marker calls resync_to_restart if it finds a marker other than michael@0: * the restart marker it was expecting. (This code is *not* used unless michael@0: * a nonzero restart interval has been declared.) cinfo->unread_marker is michael@0: * the marker code actually found (might be anything, except 0 or FF). michael@0: * The desired restart marker number (0..7) is passed as a parameter. michael@0: * This routine is supposed to apply whatever error recovery strategy seems michael@0: * appropriate in order to position the input stream to the next data segment. michael@0: * Note that cinfo->unread_marker is treated as a marker appearing before michael@0: * the current data-source input point; usually it should be reset to zero michael@0: * before returning. michael@0: * Returns FALSE if suspension is required. michael@0: * michael@0: * This implementation is substantially constrained by wanting to treat the michael@0: * input as a data stream; this means we can't back up. Therefore, we have michael@0: * only the following actions to work with: michael@0: * 1. Simply discard the marker and let the entropy decoder resume at next michael@0: * byte of file. michael@0: * 2. Read forward until we find another marker, discarding intervening michael@0: * data. (In theory we could look ahead within the current bufferload, michael@0: * without having to discard data if we don't find the desired marker. michael@0: * This idea is not implemented here, in part because it makes behavior michael@0: * dependent on buffer size and chance buffer-boundary positions.) michael@0: * 3. Leave the marker unread (by failing to zero cinfo->unread_marker). michael@0: * This will cause the entropy decoder to process an empty data segment, michael@0: * inserting dummy zeroes, and then we will reprocess the marker. michael@0: * michael@0: * #2 is appropriate if we think the desired marker lies ahead, while #3 is michael@0: * appropriate if the found marker is a future restart marker (indicating michael@0: * that we have missed the desired restart marker, probably because it got michael@0: * corrupted). michael@0: * We apply #2 or #3 if the found marker is a restart marker no more than michael@0: * two counts behind or ahead of the expected one. We also apply #2 if the michael@0: * found marker is not a legal JPEG marker code (it's certainly bogus data). michael@0: * If the found marker is a restart marker more than 2 counts away, we do #1 michael@0: * (too much risk that the marker is erroneous; with luck we will be able to michael@0: * resync at some future point). michael@0: * For any valid non-restart JPEG marker, we apply #3. This keeps us from michael@0: * overrunning the end of a scan. An implementation limited to single-scan michael@0: * files might find it better to apply #2 for markers other than EOI, since michael@0: * any other marker would have to be bogus data in that case. michael@0: */ michael@0: michael@0: GLOBAL(boolean) michael@0: jpeg_resync_to_restart (j_decompress_ptr cinfo, int desired) michael@0: { michael@0: int marker = cinfo->unread_marker; michael@0: int action = 1; michael@0: michael@0: /* Always put up a warning. */ michael@0: WARNMS2(cinfo, JWRN_MUST_RESYNC, marker, desired); michael@0: michael@0: /* Outer loop handles repeated decision after scanning forward. */ michael@0: for (;;) { michael@0: if (marker < (int) M_SOF0) michael@0: action = 2; /* invalid marker */ michael@0: else if (marker < (int) M_RST0 || marker > (int) M_RST7) michael@0: action = 3; /* valid non-restart marker */ michael@0: else { michael@0: if (marker == ((int) M_RST0 + ((desired+1) & 7)) || michael@0: marker == ((int) M_RST0 + ((desired+2) & 7))) michael@0: action = 3; /* one of the next two expected restarts */ michael@0: else if (marker == ((int) M_RST0 + ((desired-1) & 7)) || michael@0: marker == ((int) M_RST0 + ((desired-2) & 7))) michael@0: action = 2; /* a prior restart, so advance */ michael@0: else michael@0: action = 1; /* desired restart or too far away */ michael@0: } michael@0: TRACEMS2(cinfo, 4, JTRC_RECOVERY_ACTION, marker, action); michael@0: switch (action) { michael@0: case 1: michael@0: /* Discard marker and let entropy decoder resume processing. */ michael@0: cinfo->unread_marker = 0; michael@0: return TRUE; michael@0: case 2: michael@0: /* Scan to the next marker, and repeat the decision loop. */ michael@0: if (! next_marker(cinfo)) michael@0: return FALSE; michael@0: marker = cinfo->unread_marker; michael@0: break; michael@0: case 3: michael@0: /* Return without advancing past this marker. */ michael@0: /* Entropy decoder will be forced to process an empty segment. */ michael@0: return TRUE; michael@0: } michael@0: } /* end loop */ michael@0: } michael@0: michael@0: michael@0: /* michael@0: * Reset marker processing state to begin a fresh datastream. michael@0: */ michael@0: michael@0: METHODDEF(void) michael@0: reset_marker_reader (j_decompress_ptr cinfo) michael@0: { michael@0: my_marker_ptr marker = (my_marker_ptr) cinfo->marker; michael@0: michael@0: cinfo->comp_info = NULL; /* until allocated by get_sof */ michael@0: cinfo->input_scan_number = 0; /* no SOS seen yet */ michael@0: cinfo->unread_marker = 0; /* no pending marker */ michael@0: marker->pub.saw_SOI = FALSE; /* set internal state too */ michael@0: marker->pub.saw_SOF = FALSE; michael@0: marker->pub.discarded_bytes = 0; michael@0: marker->cur_marker = NULL; michael@0: } michael@0: michael@0: michael@0: /* michael@0: * Initialize the marker reader module. michael@0: * This is called only once, when the decompression object is created. michael@0: */ michael@0: michael@0: GLOBAL(void) michael@0: jinit_marker_reader (j_decompress_ptr cinfo) michael@0: { michael@0: my_marker_ptr marker; michael@0: int i; michael@0: michael@0: /* Create subobject in permanent pool */ michael@0: marker = (my_marker_ptr) michael@0: (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT, michael@0: SIZEOF(my_marker_reader)); michael@0: cinfo->marker = (struct jpeg_marker_reader *) marker; michael@0: /* Initialize public method pointers */ michael@0: marker->pub.reset_marker_reader = reset_marker_reader; michael@0: marker->pub.read_markers = read_markers; michael@0: marker->pub.read_restart_marker = read_restart_marker; michael@0: /* Initialize COM/APPn processing. michael@0: * By default, we examine and then discard APP0 and APP14, michael@0: * but simply discard COM and all other APPn. michael@0: */ michael@0: marker->process_COM = skip_variable; michael@0: marker->length_limit_COM = 0; michael@0: for (i = 0; i < 16; i++) { michael@0: marker->process_APPn[i] = skip_variable; michael@0: marker->length_limit_APPn[i] = 0; michael@0: } michael@0: marker->process_APPn[0] = get_interesting_appn; michael@0: marker->process_APPn[14] = get_interesting_appn; michael@0: /* Reset marker processing state */ michael@0: reset_marker_reader(cinfo); michael@0: } michael@0: michael@0: michael@0: /* michael@0: * Control saving of COM and APPn markers into marker_list. michael@0: */ michael@0: michael@0: #ifdef SAVE_MARKERS_SUPPORTED michael@0: michael@0: GLOBAL(void) michael@0: jpeg_save_markers (j_decompress_ptr cinfo, int marker_code, michael@0: unsigned int length_limit) michael@0: { michael@0: my_marker_ptr marker = (my_marker_ptr) cinfo->marker; michael@0: long maxlength; michael@0: jpeg_marker_parser_method processor; michael@0: michael@0: /* Length limit mustn't be larger than what we can allocate michael@0: * (should only be a concern in a 16-bit environment). michael@0: */ michael@0: maxlength = cinfo->mem->max_alloc_chunk - SIZEOF(struct jpeg_marker_struct); michael@0: if (((long) length_limit) > maxlength) michael@0: length_limit = (unsigned int) maxlength; michael@0: michael@0: /* Choose processor routine to use. michael@0: * APP0/APP14 have special requirements. michael@0: */ michael@0: if (length_limit) { michael@0: processor = save_marker; michael@0: /* If saving APP0/APP14, save at least enough for our internal use. */ michael@0: if (marker_code == (int) M_APP0 && length_limit < APP0_DATA_LEN) michael@0: length_limit = APP0_DATA_LEN; michael@0: else if (marker_code == (int) M_APP14 && length_limit < APP14_DATA_LEN) michael@0: length_limit = APP14_DATA_LEN; michael@0: } else { michael@0: processor = skip_variable; michael@0: /* If discarding APP0/APP14, use our regular on-the-fly processor. */ michael@0: if (marker_code == (int) M_APP0 || marker_code == (int) M_APP14) michael@0: processor = get_interesting_appn; michael@0: } michael@0: michael@0: if (marker_code == (int) M_COM) { michael@0: marker->process_COM = processor; michael@0: marker->length_limit_COM = length_limit; michael@0: } else if (marker_code >= (int) M_APP0 && marker_code <= (int) M_APP15) { michael@0: marker->process_APPn[marker_code - (int) M_APP0] = processor; michael@0: marker->length_limit_APPn[marker_code - (int) M_APP0] = length_limit; michael@0: } else michael@0: ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, marker_code); michael@0: } michael@0: michael@0: #endif /* SAVE_MARKERS_SUPPORTED */ michael@0: michael@0: michael@0: /* michael@0: * Install a special processing method for COM or APPn markers. michael@0: */ michael@0: michael@0: GLOBAL(void) michael@0: jpeg_set_marker_processor (j_decompress_ptr cinfo, int marker_code, michael@0: jpeg_marker_parser_method routine) michael@0: { michael@0: my_marker_ptr marker = (my_marker_ptr) cinfo->marker; michael@0: michael@0: if (marker_code == (int) M_COM) michael@0: marker->process_COM = routine; michael@0: else if (marker_code >= (int) M_APP0 && marker_code <= (int) M_APP15) michael@0: marker->process_APPn[marker_code - (int) M_APP0] = routine; michael@0: else michael@0: ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, marker_code); michael@0: }