Home
last modified time | relevance | path

Searched refs:DataSource (Results 1 - 25 of 29) sorted by relevance

12

/foundation/multimedia/media_foundation/engine/include/plugin/interface/
H A Ddemuxer_plugin.h51 struct DataSource { struct
53 virtual ~DataSource() = default;
107 virtual Status SetDataSource(const std::shared_ptr<DataSource>& source) = 0;
204 using DemuxerPluginSnifferFunc = int (*)(const std::string& name, std::shared_ptr<DataSource> dataSource);
/foundation/window/window_manager/test/fuzztest/window_scene/
H A Ddata_source.h25 class DataSource { class
27 DataSource(const std::uint8_t* data, size_t size) : data_(data), size_(size), pos_(0) {} in DataSource() function in OHOS::Rosen::DataSource
/foundation/multimedia/media_foundation/engine/plugin/plugins/demuxer/minimp4_demuxer/
H A Dminimp4_demuxer_plugin.h43 Status SetDataSource(const std::shared_ptr<DataSource>& source) override;
52 std::shared_ptr<DataSource> GetInputBuffer();
60 std::shared_ptr<DataSource> dataSource {nullptr};
H A Dminimp4_demuxer_plugin.cpp46 int Sniff(const std::string &name, std::shared_ptr<DataSource> dataSource);
68 Status MiniMP4DemuxerPlugin::SetDataSource(const std::shared_ptr<DataSource> &source) in SetDataSource()
441 int Sniff(const std::string &name, std::shared_ptr<DataSource> dataSource) in Sniff()
/foundation/multimedia/media_foundation/test/unittest/plugins/
H A DUtDemuxerTest2.cpp20 static int Sniff(const std::string& name, std::shared_ptr<DataSource> dataSource) in Sniff()
40 Status UtDemuxerTest2::SetDataSource(const std::shared_ptr<DataSource> &source) in SetDataSource()
H A DUtDemuxerTest1.cpp20 static int Sniff(const std::string& name, std::shared_ptr<DataSource> dataSource) in Sniff()
48 Status UtDemuxerTest1::SetDataSource(const std::shared_ptr<DataSource> &source) in SetDataSource()
H A DUtDemuxerTest2.h33 Status SetDataSource(const std::shared_ptr<DataSource> &source) override;
H A DUtDemuxerTest1.h32 Status SetDataSource(const std::shared_ptr<DataSource> &source) override;
/foundation/multimedia/media_foundation/engine/plugin/plugins/demuxer/wav_demuxer/
H A Dwav_demuxer_plugin.h56 Status SetDataSource(const std::shared_ptr<DataSource>& source) override;
72 std::shared_ptr<DataSource> dataSource {nullptr};
H A Dwav_demuxer_plugin.cpp50 int Sniff(const std::string& pluginName, std::shared_ptr<DataSource> dataSource);
70 Status WavDemuxerPlugin::SetDataSource(const std::shared_ptr<DataSource>& source) in SetDataSource()
213 int Sniff(const std::string& name, std::shared_ptr<DataSource> dataSource) in Sniff()
/foundation/multimedia/media_foundation/interface/inner_api/plugin/
H A Dplugin_definition.h93 struct DataSource { struct
95 virtual ~DataSource() = default;
138 using PluginSnifferFunc = int (*)(const std::string& name, std::shared_ptr<DataSource> dataSource);
H A Dplugin_manager_v2.h38 std::string SnifferPlugin(PluginType pluginType, std::shared_ptr<DataSource> dataSource);
/foundation/window/window_manager/test/fuzztest/window_scene/sessioninterface_fuzzer/
H A Dsessioninterface_fuzzer.cpp86 DataSource source(data, size); in IPCFuzzTest()
167 DataSource source(data, size); in IPCInterfaceFuzzTest()
191 DataSource source(data, size); in ProxyInterfaceFuzzTestPart1()
216 DataSource source(data, size); in ProxyInterfaceFuzzTestPart2()
248 DataSource source(data, size); in ProxyInterfaceFuzzTestPart3()
/foundation/multimedia/media_foundation/engine/plugin/plugins/demuxer/aac_demuxer/
H A Daac_demuxer_plugin.h63 Status SetDataSource(const std::shared_ptr<DataSource>& source) override;
74 std::shared_ptr<DataSource> dataSource {nullptr};
H A Daac_demuxer_plugin.cpp41 int Sniff(const std::string& name, std::shared_ptr<DataSource> dataSource);
63 Status AACDemuxerPlugin::SetDataSource(const std::shared_ptr<DataSource>& source) in SetDataSource()
417 int Sniff(const std::string& name, std::shared_ptr<DataSource> dataSource) in Sniff()
/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/demuxer/
H A Dffmpeg_demuxer_plugin.h53 Status SetDataSource(const std::shared_ptr<DataSource>& source) override;
72 std::shared_ptr<DataSource> dataSource {nullptr};
/foundation/window/window_manager/test/fuzztest/window_scene/screensessionmanager_fuzzer/
H A Dscreensessionmanager_fuzzer.cpp68 DataSource source(data, size); in IPCFuzzTest()
200 DataSource source(data, size); in IPCInterfaceFuzzTest()
225 DataSource source(data, size); in ProxyInterfaceFuzzTestPart1()
261 DataSource source(data, size); in ProxyInterfaceFuzzTestPart2()
296 DataSource source(data, size); in ProxyInterfaceFuzzTestPart3()
334 DataSource source(data, size); in ProxyInterfaceFuzzTestPart4()
371 DataSource source(data, size); in ProxyInterfaceFuzzTestPart5()
/foundation/multimedia/media_foundation/engine/plugin/core/
H A Dplugin_wrapper.h28 struct DataSourceWrapper : DataSource {
H A Dplugin_register.h31 struct DataSource;
32 using DemuxerPluginSnifferFunc = int (*)(const std::string& name, std::shared_ptr<DataSource> dataSource);
/foundation/multimedia/media_foundation/engine/plugin/plugins/minimp3_adapter/
H A Dminimp3_demuxer_plugin.h97 Status SetDataSource(const std::shared_ptr<DataSource>& source) override;
110 std::shared_ptr<DataSource> dataSource {nullptr};
/foundation/multimedia/av_codec/services/media_engine/modules/demuxer/
H A Dtype_finder.h31 class TypeFinder : public std::enable_shared_from_this<TypeFinder>, public Plugins::DataSource {
H A Ddemuxer_plugin_manager.h49 class DataSourceImpl : public Plugins::DataSource {
/foundation/multimedia/media_foundation/src/plugin/
H A Dplugin_manager_v2.cpp46 std::string PluginManagerV2::SnifferPlugin(PluginType pluginType, std::shared_ptr<DataSource> dataSource) in SnifferPlugin()
/foundation/multimedia/av_codec/interfaces/plugin/
H A Ddemuxer_plugin.h51 virtual Status SetDataSource(const std::shared_ptr<DataSource>& source) = 0;
/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/demuxer/
H A Dffmpeg_demuxer_plugin.h58 Status SetDataSource(const std::shared_ptr<DataSource>& source) override;
95 std::shared_ptr<DataSource> dataSource {nullptr};

Completed in 10 milliseconds

12