Searched refs:StreamBase (Results 1 – 12 of 12) sorted by relevance
/ohos5.0/drivers/peripheral/camera/vdi_base/v4l2/include/stream_operator/ |
H A D | stream_base.h | 26 class StreamBase : public IStream, public std::enable_shared_from_this<StreamBase> { 28 StreamBase(const int32_t id, 32 virtual ~StreamBase(); 33 StreamBase(const StreamBase& other) = delete; 34 StreamBase(StreamBase&& other) = delete; 35 StreamBase& operator=(const StreamBase& other) = delete; 36 StreamBase& operator=(StreamBase&& other) = delete;
|
H A D | stream_post_view.h | 22 class StreamPostView : public StreamBase {
|
H A D | stream_preview.h | 22 class StreamPreview : public StreamBase {
|
H A D | stream_video.h | 23 class StreamVideo : public StreamBase {
|
H A D | stream_still_capture.h | 23 class StreamStillCapture : public StreamBase {
|
/ohos5.0/drivers/peripheral/camera/vdi_base/v4l2/src/stream_operator/ |
H A D | stream_base.cpp | 31 StreamBase::StreamBase(const int32_t id, in StreamBase() function in OHOS::Camera::StreamBase 42 StreamBase::~StreamBase() in ~StreamBase() 76 RetCode StreamBase::CommitStream() in CommitStream() 126 RetCode StreamBase::StartStream() in StartStream() 176 RetCode StreamBase::StopStream() in StopStream() 284 void StreamBase::HandleRequest() in HandleRequest() 552 uint64_t StreamBase::GetUsage() in GetUsage() 557 uint32_t StreamBase::GetBufferCount() in GetBufferCount() 572 bool StreamBase::IsRunning() const in IsRunning() 577 bool StreamBase::GetTunnelMode() const in GetTunnelMode() [all …]
|
H A D | stream_video.cpp | 23 : StreamBase(id, type, p, m) in StreamVideo() 41 return StreamBase::Capture(request); in Capture()
|
H A D | stream_still_capture.cpp | 24 : StreamBase(id, type, p, m) in StreamStillCapture() 45 StreamBase::HandleResult(buffer); in HandleResult() 57 return StreamBase::Capture(request); in Capture()
|
H A D | stream_post_view.cpp | 23 : StreamBase(id, type, p, m) in StreamPostView()
|
H A D | stream_preview.cpp | 23 : StreamBase(id, type, p, m) in StreamPreview()
|
/ohos5.0/docs/zh-cn/device-dev/driver/ |
H A D | driver-peripherals-camera-des.md | 351 …erator(StreamOperatorImpl类是StreamOperator的基类)类中的方法,该接口的主要作用是创建一个StreamBase对象,通过StreamBase的Init方法初始…
|
/ohos5.0/docs/en/device-dev/driver/ |
H A D | driver-peripherals-camera-des.md | 359 …se class of **StreamOperator**). Use **CreateStreams()** to create a **StreamBase** object, which …
|