Home
last modified time | relevance | path

Searched refs:dehandle (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/jpeg_yuv_decoder/
H A Djpeg_decoder_yuv.cpp342 tjhandle dehandle = tjInitDecompress(); in DoDecode() local
343 if (nullptr == dehandle) { in DoDecode()
346 int ret = DoDecodeToYuvPlane(context, dehandle, outwidth, outheight); in DoDecode()
347 tjDestroy(dehandle); in DoDecode()
401 int JpegDecoderYuv::DecodeHeader(tjhandle dehandle, int& retSubsamp) in DecodeHeader() argument
403 if (nullptr == dehandle) { in DecodeHeader()
410 int ret = tjDecompressHeader3(dehandle, in DecodeHeader()
435 int ret = DecodeHeader(dehandle, jpegSubsamp); in DoDecodeToYuvPlane()
447 return DecodeFrom420To420(context, dehandle, width, height); in DoDecodeToYuvPlane()
454 …ret = tjDecompressToYUVPlanes(dehandle, decodeParameter_.jpegBuffer_, decodeParameter_.jpegBufferS… in DoDecodeToYuvPlane()
[all …]
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/jpeg_yuv_decoder/
H A Djpeg_decoder_yuv.h128 int DecodeHeader(tjhandle dehandle, int& retSubsamp);
129 int DoDecodeToYuvPlane(DecodeContext &context, tjhandle dehandle, uint32_t outw, uint32_t outh);
130 …int DecodeFrom420To420(DecodeContext &context, tjhandle dehandle, uint32_t width, uint32_t height);