Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/
H A DHeifDecoderImpl.cpp250 if (srcMemory_ != nullptr) { in ~HeifDecoderImpl()
251 delete[] srcMemory_; in ~HeifDecoderImpl()
263 if (srcMemory_ == nullptr) { in init()
268 srcMemory_ = new uint8_t[fileLength]; in init()
269 if (srcMemory_ == nullptr) { in init()
272 stream->read(srcMemory_, fileLength); in init()
275 heif_error err = HeifParser::MakeFromMemory(srcMemory_, fileLength, false, &parser_); in init()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/heif_impl/
H A DHeifDecoderImpl.h144 uint8_t *srcMemory_ = nullptr; variable