Home
last modified time | relevance | path

Searched refs:AVSource (Results 1 - 25 of 27) sorted by relevance

12

/foundation/multimedia/av_codec/interfaces/inner_api/native/
H A Davsource.h27 class AVSource { class
29 virtual ~AVSource() = default;
63 static std::shared_ptr<AVSource> CreateWithURI(const std::string &uri) in CreateWithURI()
69 static std::shared_ptr<AVSource> CreateWithFD(int32_t fd, int64_t offset, int64_t size) in CreateWithFD()
75 static std::shared_ptr<AVSource> CreateWithDataSource(const std::shared_ptr<Media::IMediaDataSource> &dataSource) in CreateWithDataSource()
88 static std::shared_ptr<AVSource> CreateWithURI(const std::string &uri);
98 static std::shared_ptr<AVSource> CreateWithFD(int32_t fd, int64_t offset, int64_t size);
100 static std::shared_ptr<AVSource> CreateWithDataSource(const std::shared_ptr<Media::IMediaDataSource> &dataSource);
H A Davdemuxer.h135 static std::shared_ptr<AVDemuxer> CreateWithSource(std::shared_ptr<AVSource> source) in CreateWithSource()
146 static std::shared_ptr<AVDemuxer> CreateWithSource(std::shared_ptr<AVSource> source);
/foundation/multimedia/av_codec/test/unittest/avsource_test/inner/
H A Davsource_inner_mock.h28 explicit AVSourceInnerMock(std::shared_ptr<AVSource> source) : source_(source) {} in AVSourceInnerMock()
35 std::shared_ptr<AVSource> GetAVSource();
37 std::shared_ptr<AVSource> source_ = nullptr;
H A Davsource_inner_mock_factory.cpp22 std::shared_ptr<AVSource> source = AVSourceFactory::CreateWithURI(uri); in CreateSourceWithURI()
31 std::shared_ptr<AVSource> source = AVSourceFactory::CreateWithFD(fd, offset, size); in CreateSourceWithFD()
41 std::shared_ptr<AVSource> source = AVSourceFactory::CreateWithDataSource(dataSource); in CreateWithDataSource()
H A Davsource_inner_mock.cpp59 std::shared_ptr<AVSource> AVSourceInnerMock::GetAVSource() in GetAVSource()
/foundation/multimedia/av_codec/frameworks/native/capi/common/
H A Dnative_object.h25 explicit AVSourceObject(const std::shared_ptr<OHOS::MediaAVCodec::AVSource> &source) in AVSourceObject()
29 const std::shared_ptr<OHOS::MediaAVCodec::AVSource> source_;
/foundation/multimedia/av_codec/frameworks/native/capi/avsource/
H A Dnative_avsource.cpp73 std::shared_ptr<AVSource> source = AVSourceFactory::CreateWithURI(uri); in OH_AVSource_CreateWithURI()
88 std::shared_ptr<AVSource> source = AVSourceFactory::CreateWithFD(fd, offset, size); in OH_AVSource_CreateWithFD()
102 std::shared_ptr<AVSource> source = AVSourceFactory::CreateWithDataSource(nativeAVDataSource); in OH_AVSource_CreateWithDataSource()
/foundation/multimedia/camera_framework/services/deferred_processing_service/include/media_manager/
H A Dtrack_factory.h29 std::shared_ptr<Track> CreateTrack(const std::shared_ptr<AVSource>& source, int trackIndex);
H A Ddemuxer.h32 MediaManagerError Create(const std::shared_ptr<AVSource>& source,
H A Dreader.h50 std::shared_ptr<AVSource> source_ {nullptr};
/foundation/multimedia/av_codec/test/unittest/demuxer_test/inner/
H A Ddemuxer_inner_mock_factory.cpp24 std::shared_ptr<AVSource> avSource = (innerSource != nullptr) ? innerSource->GetAVSource() : nullptr; in CreateDemuxer()
/foundation/multimedia/av_codec/test/nativedemo/avdemuxer/inner_demo/
H A Dinner_demuxer_demo.h33 int32_t CreateWithSource(std::shared_ptr<AVSource> source);
56 std::shared_ptr<AVSource> avsource_ = nullptr;
H A Dinner_source_demo.h34 std::shared_ptr<AVSource> avsource_ = nullptr;
H A Dinner_demuxer_demo.cpp33 int32_t InnerDemuxerDemo::CreateWithSource(std::shared_ptr<AVSource> source) in CreateWithSource()
/foundation/multimedia/av_codec/frameworks/native/avsource/
H A Davsource_impl.cpp34 std::shared_ptr<AVSource> AVSourceFactory::CreateWithURI(const std::string &uri) in CreateWithURI()
50 std::shared_ptr<AVSource> AVSourceFactory::CreateWithFD(int32_t fd, int64_t offset, int64_t size) in CreateWithFD()
67 std::shared_ptr<AVSource> AVSourceFactory::CreateWithDataSource( in CreateWithDataSource()
H A Davsource_impl.h25 class AVSourceImpl : public AVSource, public NoCopyable {
/foundation/multimedia/camera_framework/services/deferred_processing_service/src/media_manager/
H A Dtrack_factory.cpp35 std::shared_ptr<Track> TrackFactory::CreateTrack(const std::shared_ptr<AVSource>& source, int trackIndex) in CreateTrack()
H A Ddemuxer.cpp33 MediaManagerError Demuxer::Create(const std::shared_ptr<AVSource>& source, in Create()
/foundation/multimedia/av_codec/frameworks/native/avdemuxer/
H A Davdemuxer_impl.h43 int32_t Init(std::shared_ptr<AVSource> source);
H A Davdemuxer_impl.cpp36 std::shared_ptr<AVDemuxer> AVDemuxerFactory::CreateWithSource(std::shared_ptr<AVSource> source) in CreateWithSource()
49 int32_t AVDemuxerImpl::Init(std::shared_ptr<AVSource> source) in Init()
53 CHECK_AND_RETURN_RET_LOG(source != nullptr, AVCS_ERR_INVALID_VAL, "AVSource is nullptr"); in Init()
/foundation/multimedia/av_codec/test/unittest/reference_parser_test/reference_parser_demo/
H A Dreference_parser_demo.h75 std::shared_ptr<AVSource> source_ = nullptr;
/foundation/multimedia/av_codec/test/moduletest/demuxer/src/InnerAPI/include/
H A Dinner_demuxer_parser_sample.h98 std::shared_ptr<AVSource> avsource_ = nullptr;
H A Dinner_demuxer_sample.h59 std::shared_ptr<AVSource> avsource_ = nullptr;
/foundation/multimedia/player_framework/frameworks/native/soundpool/
H A Dsound_parser.cpp33 std::shared_ptr<MediaAVCodec::AVSource> source = MediaAVCodec::AVSourceFactory::CreateWithURI(url); in SoundParser()
34 CHECK_AND_RETURN_LOG(source != nullptr, "Create AVSource failed"); in SoundParser()
48 std::shared_ptr<MediaAVCodec::AVSource> source = in SoundParser()
50 CHECK_AND_RETURN_LOG(source != nullptr, "Create AVSource failed"); in SoundParser()
H A Dsound_parser.h184 std::shared_ptr<MediaAVCodec::AVSource> source_;

Completed in 8 milliseconds

12