Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/av_codec/frameworks/native/avsource/
H A Davsource_impl.cpp40 std::shared_ptr<AVSourceImpl> sourceImpl = std::make_shared<AVSourceImpl>(); in CreateWithURI() local
41 CHECK_AND_RETURN_RET_LOG(sourceImpl != nullptr, nullptr, "New avsource failed"); in CreateWithURI()
43 int32_t ret = sourceImpl->InitWithURI(uri); in CreateWithURI()
47 return sourceImpl; in CreateWithURI()
57 std::shared_ptr<AVSourceImpl> sourceImpl = std::make_shared<AVSourceImpl>(); in CreateWithFD() local
58 CHECK_AND_RETURN_RET_LOG(sourceImpl != nullptr, nullptr, "New avsource failed"); in CreateWithFD()
60 int32_t ret = sourceImpl->InitWithFD(fd, offset, size); in CreateWithFD()
64 return sourceImpl; in CreateWithFD()
72 std::shared_ptr<AVSourceImpl> sourceImpl = std::make_shared<AVSourceImpl>(); in CreateWithDataSource() local
75 int32_t ret = sourceImpl->InitWithDataSource(dataSource); in CreateWithDataSource()
[all …]