Home
last modified time | relevance | path

Searched refs:GetDecodeFormat (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Djpeg_decoder_test.cpp1130 jpegDecoder->GetDecodeFormat(PixelFormat::UNKNOWN, outputFormat);
1132 jpegDecoder->GetDecodeFormat(PixelFormat::RGBA_8888, outputFormat);
1134 jpegDecoder->GetDecodeFormat(PixelFormat::BGRA_8888, outputFormat);
1136 jpegDecoder->GetDecodeFormat(PixelFormat::ARGB_8888, outputFormat);
1137 jpegDecoder->GetDecodeFormat(PixelFormat::ALPHA_8, outputFormat);
1138 jpegDecoder->GetDecodeFormat(PixelFormat::RGB_565, outputFormat);
1140 jpegDecoder->GetDecodeFormat(PixelFormat::RGB_888, outputFormat);
1141 jpegDecoder->GetDecodeFormat(PixelFormat::ASTC_8x8, outputFormat);
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/include/
H A Djpeg_decoder.h76 J_COLOR_SPACE GetDecodeFormat(PixelFormat format, PixelFormat &outputFormat);
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libpngplugin/include/
H A Dpng_decoder.h69 uint32_t GetDecodeFormat(PixelFormat format, PixelFormat &outputFormat, AlphaType &alphaType);
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libpngplugin/src/
H A Dpng_decoder.cpp490 uint32_t PngDecoder::GetDecodeFormat(PixelFormat format, PixelFormat &outputFormat, AlphaType &alph… in GetDecodeFormat() function in OHOS::ImagePlugin::PngDecoder
1062 ret = GetDecodeFormat(PixelFormat::RGBA_8888, outputFormat_, alphaType_); in ConfigInfo()
1067 ret = GetDecodeFormat(opts.desiredPixelFormat, outputFormat_, alphaType_); in ConfigInfo()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/png_test/
H A Dpng_decoder_test.cpp868 uint32_t ret = pngDecoder->GetDecodeFormat(format, outputFormat, alphaType);
887 uint32_t ret = pngDecoder->GetDecodeFormat(format, outputFormat, alphaType);
1586 uint32_t ret = pngDecoder->GetDecodeFormat(format, outputFormat, alphaType);
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/
H A Djpeg_decoder.cpp213 J_COLOR_SPACE JpegDecoder::GetDecodeFormat(PixelFormat format, PixelFormat &outputFormat) in GetDecodeFormat() function in OHOS::ImagePlugin::JpegDecoder
733 decodeInfo_.out_color_space = GetDecodeFormat(opts.desiredPixelFormat, outputFormat_); in StartDecompress()