Home
last modified time | relevance | path

Searched refs:GetFrameCount (Results 1 - 25 of 51) sorted by relevance

123

/drivers/peripheral/distributed_audio/interface/audio/v1_0/
H A Di_audio_attribute.h24 virtual int32_t GetFrameCount(uint64_t &count) = 0;
/drivers/peripheral/bluetooth/audio/interfaces/include/
H A Daudio_attribute.h65 int32_t (*GetFrameCount)(AudioHandle handle, uint64_t *count); member
/drivers/peripheral/audio/interfaces/2.0/include/
H A Daudio_attribute.h66 int32_t (*GetFrameCount)(AudioHandle handle, uint64_t *count); member
/drivers/peripheral/audio/interfaces/include/
H A Daudio_attribute.h65 int32_t (*GetFrameCount)(AudioHandle handle, uint64_t *count); member
/drivers/peripheral/camera/vdi_base/v4l2/src/stream_operator/stream_tunnel/standard/
H A Dstream_tunnel.h42 virtual uint64_t GetFrameCount() const;
/drivers/peripheral/camera/vdi_base/v4l2/src/stream_operator/stream_tunnel/lite/
H A Dstream_tunnel.h42 virtual uint64_t GetFrameCount() const;
H A Dstream_tunnel.cpp168 uint64_t StreamTunnel::GetFrameCount() const in GetFrameCount() function in OHOS::Camera::StreamTunnel
/drivers/peripheral/camera/vdi_base/v4l2/src/offline_stream_operator/
H A Doffline_stream.cpp159 streamId_, request->GetCaptureId(), request->GetEndTime(), request->GetOwnerCount(), tunnel->GetFrameCount()); in ReturnBuffer()
211 edi.frameCount_ = (int32_t)(m->GetFrameCount()); in HandleMessage()
/drivers/peripheral/audio/test/systemtest/hdi_service/common/capture/src/
H A Daudio_idl_hdicapture_attr_test.cpp116 ret = capture->GetFrameCount(capture, &count); in HWTEST_F()
122 * @tc.desc test AudioCaptureGetFrameCount interface, return 0 if the GetFrameCount is called after started.
132 ret = capture->GetFrameCount(capture, &count); in HWTEST_F()
148 ret = capture->GetFrameCount(captureNull, &count); in HWTEST_F()
162 ret = capture->GetFrameCount(capture, countNull); in HWTEST_F()
471 ret = capture->GetFrameCount(capture, &count); in HWTEST_F()
/drivers/peripheral/camera/vdi_base/v4l2/src/stream_operator/
H A Dstream_base.cpp216 lastRequest_->GetEndTime(), lastRequest_->GetOwnerCount(), tunnel_->GetFrameCount()); in StopStream()
275 request->GetOwnerCount(), tunnel_->GetFrameCount()); in CancelRequest()
480 request->GetOwnerCount(), tunnel_->GetFrameCount()); in OnFrame()
508 uint64_t StreamBase::GetFrameCount() const in GetFrameCount() function in OHOS::Camera::StreamBase
511 return tunnel_->GetFrameCount(); in GetFrameCount()
/drivers/peripheral/audio/test/systemtest/hdi_service/common/render/src/
H A Daudio_idl_hdirender_attr_test.cpp111 ret = render->GetFrameCount(render, &count); in HWTEST_F()
130 ret = render->GetFrameCount(renderNull, &count); in HWTEST_F()
147 ret = render->GetFrameCount(render, countNull); in HWTEST_F()
456 ret = render->GetFrameCount(render, &count); in HWTEST_F()
/drivers/peripheral/audio/interfaces/sound/v1_0/
H A Diaudio_render_vdi.h53 int32_t (*GetFrameCount)(struct IAudioRenderVdi *self, uint64_t *count); member
H A Diaudio_capture_vdi.h45 int32_t (*GetFrameCount)(struct IAudioCaptureVdi *self, uint64_t *count); member
/drivers/peripheral/camera/vdi_base/v4l2/include/stream_operator/
H A Dstream_base.h63 virtual uint64_t GetFrameCount() const;
H A Dcapture_message.h81 uint32_t GetFrameCount() const in GetFrameCount() function in OHOS::Camera::final
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/include/
H A Daudio_capture_ext_impl.h58 int32_t GetFrameCount(uint64_t &count) override;
H A Daudio_capture_interface_impl.h56 int32_t GetFrameCount(uint64_t &count) override;
H A Daudio_render_interface_impl.h69 int32_t GetFrameCount(uint64_t &count) override;
H A Daudio_render_ext_impl.h66 int32_t GetFrameCount(uint64_t &count) override;
/drivers/peripheral/audio/test/benchmarktest/render/
H A Daudio_render_benchmarktest.cpp83 ret = render_->GetFrameCount(render_, &frameCount); in GetRenderBufferSize()
317 BENCHMARK_F(AudioRenderBenchmarkTest, GetFrameCount)(benchmark::State &state) in BENCHMARK_F()
324 ret = render_->GetFrameCount(render_, &frameCount); in BENCHMARK_F()
329 BENCHMARK_REGISTER_F(AudioRenderBenchmarkTest, GetFrameCount)->
/drivers/peripheral/audio/test/benchmarktest/capture/
H A Daudio_capture_benchmarktest.cpp74 ret = capture_->GetFrameCount(capture_, &frameCount); in GetCaptureBufferSize()
600 BENCHMARK_F(AudioCaptureBenchmarkTest, GetFrameCount)(benchmark::State &state) in BENCHMARK_F()
607 ret = capture_->GetFrameCount(capture_, &frameCount); in BENCHMARK_F()
612 BENCHMARK_REGISTER_F(AudioCaptureBenchmarkTest, GetFrameCount)->
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/test/unittest/audio_test_utils/
H A Daudio_test_utils.h191 int32_t GetFrameCount(uint64_t &count) override
352 int32_t GetFrameCount(uint64_t &count) override
/drivers/peripheral/audio/hdi_service/primary_impl/vdi_src/
H A Daudio_capture_vdi.c367 CHECK_NULL_PTR_RETURN_VALUE(vdiCapture->GetFrameCount, HDF_ERR_INVALID_PARAM); in AudioCaptureGetFrameCountVdi()
369 int32_t ret = vdiCapture->GetFrameCount(vdiCapture, count); in AudioCaptureGetFrameCountVdi()
371 AUDIO_FUNC_LOGE("audio capture GetFrameCount fail, ret=%{public}d", ret); in AudioCaptureGetFrameCountVdi()
767 capture->GetFrameCount = AudioCaptureGetFrameCountVdi; in AudioInitCaptureInstanceVdi()
/drivers/peripheral/audio/test/unittest/common/render/
H A Daudio_render_common_test.cpp75 ret = render_->GetFrameCount(render_, &frameCount); in GetRenderBufferSize()
247 EXPECT_EQ(HDF_ERR_INVALID_OBJECT, render_->GetFrameCount(nullptr, &frameCount)); in HWTEST_F()
252 EXPECT_EQ(HDF_ERR_INVALID_PARAM, render_->GetFrameCount(render_, nullptr)); in HWTEST_F()
258 EXPECT_EQ(HDF_SUCCESS, render_->GetFrameCount(render_, &frameCount)); in HWTEST_F()
/drivers/peripheral/audio/test/systemtest/hdi_service/hispark_taurus_standard/render/src/
H A Daudio_idl_hdirender_hardware_dependence_test.cpp184 ret = render->GetFrameCount(render, &count); in HWTEST_F()
213 ret = render->GetFrameCount(render, &count); in HWTEST_F()
242 ret = render->GetFrameCount(render, &count); in HWTEST_F()
269 ret = render->GetFrameCount(render, &count); in HWTEST_F()

Completed in 16 milliseconds

123