Home
last modified time | relevance | path

Searched refs:decodeInfo_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/
H A Djpeg_decoder.cpp158 jpeg_create_decompress(&decodeInfo_); in CreateDecoder()
163 if (decodeInfo_.err == nullptr) { in CreateDecoder()
172 jpeg_destroy_decompress(&decodeInfo_); in ~JpegDecoder()
207 size.width = decodeInfo_.image_width; in GetImageSize()
208 size.height = decodeInfo_.image_height; in GetImageSize()
350 …(decodeInfo_.out_color_space == JCS_RGB565) ? PIXEL_BYTES_RGB_565 : decodeInfo_.out_color_componen… in GetRowBytes()
465decodeInfo_.src->next_input_byte = dataPtr + streamPosition_ - decodeInfo_.src->bytes_in_buffer; in DoSwDecode()
477 while (decodeInfo_.output_scanline < decodeInfo_.output_height) { in DoSwDecode()
578decodeInfo_.output_height == 0 ? 0 : (decodeInfo_.output_scanline * NUM_100) / decodeInfo_.output_… in PromoteIncrementalDecode()
684 decodeInfo_.src = &srcMgr_; in DecodeHeader()
[all …]
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/hardware/
H A Djpeg_hw_decoder.cpp187 decodeInfo_.sampleSize = sampleSize; in Decode()
208 decodeInfo_.numComponents = jpegCompressInfo->num_components; in AssembleComponentInfo()
210 decodeInfo_.compInfo.emplace_back(CodecJpegCompInfo { in AssembleComponentInfo()
256 decodeInfo_.dcHuffTbl.emplace_back(dcTbl); in AssembleHuffmanTable()
261 decodeInfo_.acHuffTbl.emplace_back(acTbl); in AssembleHuffmanTable()
286 decodeInfo_.imageWidth = jpegCompressInfo->image_width; in AssembleJpegImgHeader()
287 decodeInfo_.imageHeight = jpegCompressInfo->image_height; in AssembleJpegImgHeader()
288 decodeInfo_.dataPrecision = jpegCompressInfo->data_precision; in AssembleJpegImgHeader()
290 decodeInfo_.arithCode = jpegCompressInfo->arith_code; in AssembleJpegImgHeader()
293 decodeInfo_.region.flag = 0; in AssembleJpegImgHeader()
[all …]
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/hardware/
H A Djpeg_hw_decoder.h98 OHOS::HDI::Codec::Image::V2_0::CodecJpegDecInfo decodeInfo_; variable
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/include/
H A Djpeg_decoder.h93 jpeg_decompress_struct decodeInfo_; variable