static void initialize_info(jpeg_decompress_struct* cinfo, skjpeg_source_mgr* src_mgr) { SkASSERT(cinfo != NULL); SkASSERT(src_mgr != NULL); jpeg_create_decompress(cinfo); overwrite_mem_buffer_size(cinfo); cinfo->src = src_mgr; }
static void initialize_info(jpeg_decompress_struct* cinfo, skjpeg_source_mgr* src_mgr) { SkASSERT(cinfo != NULL); SkASSERT(src_mgr != NULL); jpeg_create_decompress(cinfo); overwrite_mem_buffer_size(cinfo); cinfo->src = src_mgr; /* To suppress warnings with a SK_DEBUG binary, set the * environment variable "skia_images_jpeg_suppressDecoderWarnings" * to "true". Inside a program that links to skia: * SK_CONF_SET("images.jpeg.suppressDecoderWarnings", true); */ if (c_suppressJPEGImageDecoderWarnings) { cinfo->err->emit_message = &do_nothing_emit_message; } /* To suppress error messages with a SK_DEBUG binary, set the * environment variable "skia_images_jpeg_suppressDecoderErrors" * to "true". Inside a program that links to skia: * SK_CONF_SET("images.jpeg.suppressDecoderErrors", true); */ if (c_suppressJPEGImageDecoderErrors) { cinfo->err->output_message = &do_nothing_output_message; } }
bool SkJPEGImageDecoder::onBuildTileIndex(SkStream* stream, int *width, int *height) { SkAutoMalloc srcStorage; SkJPEGImageIndex *index = new SkJPEGImageIndex; jpeg_decompress_struct *cinfo = (jpeg_decompress_struct*) malloc(sizeof(jpeg_decompress_struct)); skjpeg_error_mgr sk_err; skjpeg_source_mgr *sk_stream = new skjpeg_source_mgr(stream, this, true); if (cinfo == NULL || sk_stream == NULL) { return false; } cinfo->err = jpeg_std_error(&sk_err); sk_err.error_exit = skjpeg_error_exit; // All objects need to be instantiated before this setjmp call so that // they will be cleaned up properly if an error occurs. if (setjmp(sk_err.fJmpBuf)) { return false; } jpeg_create_decompress(cinfo); cinfo->do_fancy_upsampling = 0; cinfo->do_block_smoothing = 0; #ifdef SK_BUILD_FOR_ANDROID overwrite_mem_buffer_size(cinfo); #endif cinfo->src = sk_stream; int status = jpeg_read_header(cinfo, true); if (status != JPEG_HEADER_OK) { return false; } index->index = (huffman_index*)malloc(sizeof(huffman_index)); jpeg_create_huffman_index(cinfo, index->index); cinfo->scale_num = 1; cinfo->scale_denom = 1; if (!jpeg_build_huffman_index(cinfo, index->index)) { return false; } if (fReporter) fReporter->reportMemory(index->index->mem_used); jpeg_destroy_decompress(cinfo); // Init decoder to image decode mode jpeg_create_decompress(cinfo); #ifdef SK_BUILD_FOR_ANDROID overwrite_mem_buffer_size(cinfo); #endif cinfo->src = sk_stream; status = jpeg_read_header(cinfo,true); if (status != JPEG_HEADER_OK) { return false; } cinfo->out_color_space = JCS_RGBA_8888; cinfo->do_fancy_upsampling = 0; cinfo->do_block_smoothing = 0; //jpeg_start_decompress(cinfo); jpeg_start_tile_decompress(cinfo); cinfo->scale_num = 1; index->cinfo = cinfo; *height = cinfo->output_height; *width = cinfo->output_width; this->index = index; return true; }
bool SkJPEGImageDecoder::onDecode(SkStream* stream, SkBitmap* bm, Mode mode) { #ifdef TIME_DECODE AutoTimeMillis atm("JPEG Decode"); #endif SkAutoMalloc srcStorage; JPEGAutoClean autoClean; jpeg_decompress_struct cinfo; skjpeg_error_mgr sk_err; skjpeg_source_mgr sk_stream(stream, this, false); cinfo.err = jpeg_std_error(&sk_err); sk_err.error_exit = skjpeg_error_exit; // All objects need to be instantiated before this setjmp call so that // they will be cleaned up properly if an error occurs. if (setjmp(sk_err.fJmpBuf)) { return return_false(cinfo, *bm, "setjmp"); } jpeg_create_decompress(&cinfo); autoClean.set(&cinfo); #ifdef SK_BUILD_FOR_ANDROID overwrite_mem_buffer_size(&cinfo); #endif //jpeg_stdio_src(&cinfo, file); cinfo.src = &sk_stream; int status = jpeg_read_header(&cinfo, true); if (status != JPEG_HEADER_OK) { return return_false(cinfo, *bm, "read_header"); } /* Try to fulfill the requested sampleSize. Since jpeg can do it (when it can) much faster that we, just use their num/denom api to approximate the size. */ int sampleSize = this->getSampleSize(); if (this->getPreferQualityOverSpeed()) { cinfo.dct_method = JDCT_ISLOW; } else { cinfo.dct_method = JDCT_IFAST; } cinfo.scale_num = 1; cinfo.scale_denom = sampleSize; /* this gives about 30% performance improvement. In theory it may reduce the visual quality, in practice I'm not seeing a difference */ cinfo.do_fancy_upsampling = 0; /* this gives another few percents */ cinfo.do_block_smoothing = 0; /* default format is RGB */ cinfo.out_color_space = JCS_RGB; SkBitmap::Config config = this->getPrefConfig(k32Bit_SrcDepth, false); // only these make sense for jpegs if (config != SkBitmap::kARGB_8888_Config && config != SkBitmap::kARGB_4444_Config && config != SkBitmap::kRGB_565_Config) { config = SkBitmap::kARGB_8888_Config; } #ifdef ANDROID_RGB cinfo.dither_mode = JDITHER_NONE; if (config == SkBitmap::kARGB_8888_Config) { cinfo.out_color_space = JCS_RGBA_8888; } else if (config == SkBitmap::kRGB_565_Config) { cinfo.out_color_space = JCS_RGB_565; if (this->getDitherImage()) { cinfo.dither_mode = JDITHER_ORDERED; } } #endif if (sampleSize == 1 && mode == SkImageDecoder::kDecodeBounds_Mode) { bm->setConfig(config, cinfo.image_width, cinfo.image_height); bm->setIsOpaque(true); return true; } /* image_width and image_height are the original dimensions, available after jpeg_read_header(). To see the scaled dimensions, we have to call jpeg_start_decompress(), and then read output_width and output_height. */ if (!jpeg_start_decompress(&cinfo)) { /* If we failed here, we may still have enough information to return to the caller if they just wanted (subsampled bounds). If sampleSize was 1, then we would have already returned. Thus we just check if we're in kDecodeBounds_Mode, and that we have valid output sizes. One reason to fail here is that we have insufficient stream data to complete the setup. However, output dimensions seem to get computed very early, which is why this special check can pay off. */ if (SkImageDecoder::kDecodeBounds_Mode == mode && valid_output_dimensions(cinfo)) { SkScaledBitmapSampler smpl(cinfo.output_width, cinfo.output_height, recompute_sampleSize(sampleSize, cinfo)); bm->setConfig(config, smpl.scaledWidth(), smpl.scaledHeight()); bm->setIsOpaque(true); return true; } else { return return_false(cinfo, *bm, "start_decompress"); } } sampleSize = recompute_sampleSize(sampleSize, cinfo); // should we allow the Chooser (if present) to pick a config for us??? if (!this->chooseFromOneChoice(config, cinfo.output_width, cinfo.output_height)) { return return_false(cinfo, *bm, "chooseFromOneChoice"); } #ifdef ANDROID_RGB /* short-circuit the SkScaledBitmapSampler when possible, as this gives a significant performance boost. */ if (sampleSize == 1 && ((config == SkBitmap::kARGB_8888_Config && cinfo.out_color_space == JCS_RGBA_8888) || (config == SkBitmap::kRGB_565_Config && cinfo.out_color_space == JCS_RGB_565))) { bm->lockPixels(); JSAMPLE* rowptr = (JSAMPLE*)bm->getPixels(); bm->unlockPixels(); bool reuseBitmap = (rowptr != NULL); if (reuseBitmap && ((int) cinfo.output_width != bm->width() || (int) cinfo.output_height != bm->height())) { // Dimensions must match return false; } if (!reuseBitmap) { bm->setConfig(config, cinfo.output_width, cinfo.output_height); bm->setIsOpaque(true); if (SkImageDecoder::kDecodeBounds_Mode == mode) { return true; } if (!this->allocPixelRef(bm, NULL)) { return return_false(cinfo, *bm, "allocPixelRef"); } } else if (SkImageDecoder::kDecodeBounds_Mode == mode) { return true; } SkAutoLockPixels alp(*bm); rowptr = (JSAMPLE*)bm->getPixels(); INT32 const bpr = bm->rowBytes(); while (cinfo.output_scanline < cinfo.output_height) { int row_count = jpeg_read_scanlines(&cinfo, &rowptr, 1); // if row_count == 0, then we didn't get a scanline, so abort. // if we supported partial images, we might return true in this case if (0 == row_count) { return return_false(cinfo, *bm, "read_scanlines"); } if (this->shouldCancelDecode()) { return return_false(cinfo, *bm, "shouldCancelDecode"); } rowptr += bpr; } if (reuseBitmap) { bm->notifyPixelsChanged(); } jpeg_finish_decompress(&cinfo); return true; } #endif // check for supported formats SkScaledBitmapSampler::SrcConfig sc; if (3 == cinfo.out_color_components && JCS_RGB == cinfo.out_color_space) { sc = SkScaledBitmapSampler::kRGB; #ifdef ANDROID_RGB } else if (JCS_RGBA_8888 == cinfo.out_color_space) { sc = SkScaledBitmapSampler::kRGBX; } else if (JCS_RGB_565 == cinfo.out_color_space) { sc = SkScaledBitmapSampler::kRGB_565; #endif } else if (1 == cinfo.out_color_components && JCS_GRAYSCALE == cinfo.out_color_space) { sc = SkScaledBitmapSampler::kGray; } else { return return_false(cinfo, *bm, "jpeg colorspace"); } SkScaledBitmapSampler sampler(cinfo.output_width, cinfo.output_height, sampleSize); bm->lockPixels(); JSAMPLE* rowptr = (JSAMPLE*)bm->getPixels(); bool reuseBitmap = (rowptr != NULL); bm->unlockPixels(); if (reuseBitmap && (sampler.scaledWidth() != bm->width() || sampler.scaledHeight() != bm->height())) { // Dimensions must match return false; } if (!reuseBitmap) { bm->setConfig(config, sampler.scaledWidth(), sampler.scaledHeight()); // jpegs are always opaque (i.e. have no per-pixel alpha) bm->setIsOpaque(true); if (SkImageDecoder::kDecodeBounds_Mode == mode) { return true; } if (!this->allocPixelRef(bm, NULL)) { return return_false(cinfo, *bm, "allocPixelRef"); } } else if (SkImageDecoder::kDecodeBounds_Mode == mode) { return true; } SkAutoLockPixels alp(*bm); if (!sampler.begin(bm, sc, this->getDitherImage())) { return return_false(cinfo, *bm, "sampler.begin"); } uint8_t* srcRow = (uint8_t*)srcStorage.reset(cinfo.output_width * 4); // Possibly skip initial rows [sampler.srcY0] if (!skip_src_rows(&cinfo, srcRow, sampler.srcY0())) { return return_false(cinfo, *bm, "skip rows"); } // now loop through scanlines until y == bm->height() - 1 for (int y = 0;; y++) { JSAMPLE* rowptr = (JSAMPLE*)srcRow; int row_count = jpeg_read_scanlines(&cinfo, &rowptr, 1); if (0 == row_count) { return return_false(cinfo, *bm, "read_scanlines"); } if (this->shouldCancelDecode()) { return return_false(cinfo, *bm, "shouldCancelDecode"); } sampler.next(srcRow); if (bm->height() - 1 == y) { // we're done break; } if (!skip_src_rows(&cinfo, srcRow, sampler.srcDY() - 1)) { return return_false(cinfo, *bm, "skip rows"); } } // we formally skip the rest, so we don't get a complaint from libjpeg if (!skip_src_rows(&cinfo, srcRow, cinfo.output_height - cinfo.output_scanline)) { return return_false(cinfo, *bm, "skip rows"); } if (reuseBitmap) { bm->notifyPixelsChanged(); } jpeg_finish_decompress(&cinfo); // SkDebugf("------------------- bm2 size %d [%d %d] %d\n", bm->getSize(), bm->width(), bm->height(), bm->config()); return true; }