Home
last modified time | relevance | path

Searched refs:ExtStream (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/
H A Dext_stream.cpp36 ExtStream::ExtStream(InputDataStream *stream) : stream_(stream) in ExtStream() function in OHOS::ImagePlugin::ExtStream
61 size_t ExtStream::read(void *buffer, size_t size) in read()
83 size_t ExtStream::peek(void *buffer, size_t size) const in peek()
101 bool ExtStream::isAtEnd() const in isAtEnd()
110 size_t ExtStream::getLength() const in getLength()
H A Dext_decoder.cpp1407 codec_ = SkCodec::MakeFromStream(make_unique<ExtStream>(stream_)); in HeapMemAlloc()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/
H A Dext_stream.h27 class ExtStream : public SkStream, NoCopyable {
29 ExtStream() = default;
30 explicit ExtStream(InputDataStream *stream);
31 virtual ~ExtStream() override in ~ExtStream()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/plugin_test/
H A Dext_decoder_test.cpp330 extDecoder->codec_ = SkCodec::MakeFromStream(std::make_unique<ExtStream>(extDecoder->stream_));
634 extDecoder->codec_ = SkCodec::MakeFromStream(std::make_unique<ExtStream>(extDecoder->stream_));
805 ExtStream extStream;
833 extDecoder->codec_ = SkCodec::MakeFromStream(std::make_unique<ExtStream>(extDecoder->stream_));
897 extDecoder->codec_ = SkCodec::MakeFromStream(std::make_unique<ExtStream>(extDecoder->stream_));
931 extDecoder->codec_ = SkCodec::MakeFromStream(std::make_unique<ExtStream>(extDecoder->stream_));
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/jpeg_hw_decode/common/
H A Dmock_jpeg_hw_decode_flow.cpp72 …std::unique_ptr<SkCodec> demoCodec = SkCodec::MakeFromStream(std::make_unique<ExtStream>(inputStre… in DoDecode()