Home
last modified time | relevance | path

Searched refs:sourceStream (Results 1 – 25 of 25) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/librawplugin/src/
H A Draw_stream.cpp27 RawStream::RawStream(InputDataStream &sourceStream) in RawStream() argument
31 inputStream_ = &sourceStream; in RawStream()
H A Draw_decoder.cpp96 void RawDecoder::SetSource(InputDataStream &sourceStream) in SetSource() argument
100 inputStream_ = &sourceStream; in SetSource()
101 rawStream_ = std::make_unique<RawStream>(sourceStream); in SetSource()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libpngplugin/include/
H A Dpng_decoder.h54 void SetSource(InputDataStream &sourceStream) override;
87 uint32_t ProcessData(png_structp pngPtr, png_infop infoPtr, InputDataStream *sourceStream,
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/librawplugin/include/
H A Draw_stream.h24 explicit RawStream(InputDataStream &sourceStream);
H A Draw_decoder.h30 void SetSource(InputDataStream &sourceStream) override;
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libheifplugin/src/
H A Dheif_decoder.cpp35 void HeifDecoder::SetSource(InputDataStream &sourceStream) in SetSource() argument
37 heifDecoderInterface_ = HeifDecoderWrapper::CreateHeifDecoderInterface(sourceStream); in SetSource()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/mock/
H A Dmock_abs_image_decoder.h30 void SetSource(InputDataStream &sourceStream) {} in SetSource() argument
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libheifplugin/include/
H A Dheif_decoder.h31 virtual void SetSource(InputDataStream &sourceStream) override;
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libbmpplugin/include/
H A Dbmp_decoder.h43 void SetSource(InputDataStream &sourceStream) override;
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libsvgplugin/include/
H A Dsvg_decoder.h40 void SetSource(InputDataStream &sourceStream) override;
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libwebpplugin/include/
H A Dwebp_decoder.h44 void SetSource(InputDataStream &sourceStream) override;
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libpngplugin/src/
H A Dpng_decoder.cpp73 void PngDecoder::SetSource(InputDataStream &sourceStream) in SetSource() argument
75 inputStreamPtr_ = &sourceStream; in SetSource()
596 …oder::ProcessData(png_structp pngStructPtr, png_infop infoStructPtr, InputDataStream *sourceStream, in ProcessData() argument
599 …if ((pngStructPtr == nullptr) || (infoStructPtr == nullptr) || (sourceStream == nullptr) || (total… in ProcessData()
606 uint32_t ret = IncrementalRead(sourceStream, readSize, streamData); in ProcessData()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libbmpplugin/src/
H A Dbmp_decoder.cpp41 void BmpDecoder::SetSource(InputDataStream &sourceStream) in SetSource() argument
43 stream_ = &sourceStream; in SetSource()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libgifplugin/include/
H A Dgif_decoder.h41 void SetSource(InputDataStream &sourceStream) override;
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/include/
H A Djpeg_decoder.h52 void SetSource(InputDataStream &sourceStream) override;
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libwebpplugin/src/
H A Dwebp_decoder.cpp54 void WebpDecoder::SetSource(InputDataStream &sourceStream) in SetSource() argument
56 stream_ = &sourceStream; in SetSource()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/image_source_test/
H A Dmetadata_stream_test.cpp415 FileMetadataStream sourceStream(filePathSource, std::move(mockSourceFileWrapper));
419 sourceStream.Open();
421 byte *buf = new byte[sourceStream.GetSize()];
422 EXPECT_EQ(sourceStream.Read(buf, sourceStream.GetSize()), -1);
/ohos5.0/foundation/multimedia/image_framework/plugins/manager/include/image/
H A Dabs_image_decoder.h135 virtual void SetSource(InputDataStream &sourceStream) = 0;
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libsvgplugin/src/
H A Dsvg_decoder.cpp235 void SvgDecoder::SetSource(InputDataStream &sourceStream) in SetSource() argument
241 inputStreamPtr_ = &sourceStream; in SetSource()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/
H A Dext_decoder.h55 void SetSource(InputDataStream &sourceStream) override;
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Draw_decoder_test.cpp767 MockInputDataStream sourceStream; variable
768 auto rawStream = std::make_shared<RawStream>(sourceStream);
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libgifplugin/src/
H A Dgif_decoder.cpp72 void GifDecoder::SetSource(InputDataStream &sourceStream) in SetSource() argument
75 inputStreamPtr_ = &sourceStream; in SetSource()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/
H A Djpeg_decoder.cpp179 void JpegDecoder::SetSource(InputDataStream &sourceStream) in SetSource() argument
181 srcMgr_.inputStream = &sourceStream; in SetSource()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/
H A Dext_decoder.cpp386 void ExtDecoder::SetSource(InputDataStream &sourceStream) in HeapMemAlloc() argument
388 stream_ = &sourceStream; in HeapMemAlloc()
389 streamOff_ = sourceStream.Tell(); in HeapMemAlloc()
390 if (streamOff_ >= sourceStream.GetStreamSize()) { in HeapMemAlloc()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/codec/src/
H A Dimage_source.cpp3751 bool GetStreamData(std::unique_ptr<SourceStream>& sourceStream, uint8_t* streamBuffer, uint32_t str… in GetStreamData() argument
3758 uint32_t savedPosition = sourceStream->Tell(); in GetStreamData()
3759 sourceStream->Seek(0); in GetStreamData()
3760 bool result = sourceStream->Read(streamSize, streamBuffer, streamSize, readSize); in GetStreamData()
3761 sourceStream->Seek(savedPosition); in GetStreamData()