/foundation/multimedia/av_codec/interfaces/inner_api/native/ |
H A D | avsource.h | 27 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 D | avdemuxer.h | 135 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 D | avsource_inner_mock.h | 28 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 D | avsource_inner_mock_factory.cpp | 22 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 D | avsource_inner_mock.cpp | 59 std::shared_ptr<AVSource> AVSourceInnerMock::GetAVSource() in GetAVSource()
|
/foundation/multimedia/av_codec/frameworks/native/capi/common/ |
H A D | native_object.h | 25 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 D | native_avsource.cpp | 73 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 D | track_factory.h | 29 std::shared_ptr<Track> CreateTrack(const std::shared_ptr<AVSource>& source, int trackIndex);
|
H A D | demuxer.h | 32 MediaManagerError Create(const std::shared_ptr<AVSource>& source,
|
H A D | reader.h | 50 std::shared_ptr<AVSource> source_ {nullptr};
|
/foundation/multimedia/av_codec/test/unittest/demuxer_test/inner/ |
H A D | demuxer_inner_mock_factory.cpp | 24 std::shared_ptr<AVSource> avSource = (innerSource != nullptr) ? innerSource->GetAVSource() : nullptr; in CreateDemuxer()
|
/foundation/multimedia/av_codec/test/nativedemo/avdemuxer/inner_demo/ |
H A D | inner_demuxer_demo.h | 33 int32_t CreateWithSource(std::shared_ptr<AVSource> source); 56 std::shared_ptr<AVSource> avsource_ = nullptr;
|
H A D | inner_source_demo.h | 34 std::shared_ptr<AVSource> avsource_ = nullptr;
|
H A D | inner_demuxer_demo.cpp | 33 int32_t InnerDemuxerDemo::CreateWithSource(std::shared_ptr<AVSource> source) in CreateWithSource()
|
/foundation/multimedia/av_codec/frameworks/native/avsource/ |
H A D | avsource_impl.cpp | 34 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 D | avsource_impl.h | 25 class AVSourceImpl : public AVSource, public NoCopyable {
|
/foundation/multimedia/camera_framework/services/deferred_processing_service/src/media_manager/ |
H A D | track_factory.cpp | 35 std::shared_ptr<Track> TrackFactory::CreateTrack(const std::shared_ptr<AVSource>& source, int trackIndex) in CreateTrack()
|
H A D | demuxer.cpp | 33 MediaManagerError Demuxer::Create(const std::shared_ptr<AVSource>& source, in Create()
|
/foundation/multimedia/av_codec/frameworks/native/avdemuxer/ |
H A D | avdemuxer_impl.h | 43 int32_t Init(std::shared_ptr<AVSource> source);
|
H A D | avdemuxer_impl.cpp | 36 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 D | reference_parser_demo.h | 75 std::shared_ptr<AVSource> source_ = nullptr;
|
/foundation/multimedia/av_codec/test/moduletest/demuxer/src/InnerAPI/include/ |
H A D | inner_demuxer_parser_sample.h | 98 std::shared_ptr<AVSource> avsource_ = nullptr;
|
H A D | inner_demuxer_sample.h | 59 std::shared_ptr<AVSource> avsource_ = nullptr;
|
/foundation/multimedia/player_framework/frameworks/native/soundpool/ |
H A D | sound_parser.cpp | 33 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 D | sound_parser.h | 184 std::shared_ptr<MediaAVCodec::AVSource> source_;
|