Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/player_framework/services/services/screen_capture/ipc/
H A Dscreen_capture_service_stub.h52 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
80 int32_t SetMaxVideoFrameRate(MessageParcel &data, MessageParcel &reply);
H A Dscreen_capture_service_stub.cpp62 screenCaptureStubFuncs_[SET_MAX_FRAME_RATE] = &ScreenCaptureServiceStub::SetMaxVideoFrameRate; in Init()
247 int32_t ScreenCaptureServiceStub::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureServiceStub
251 return screenCaptureServer_->SetMaxVideoFrameRate(frameRate); in SetMaxVideoFrameRate()
360 int32_t ScreenCaptureServiceStub::SetMaxVideoFrameRate(MessageParcel &data, MessageParcel &reply) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureServiceStub
365 int32_t ret = SetMaxVideoFrameRate(frameRate); in SetMaxVideoFrameRate()
H A Dscreen_capture_service_proxy.h50 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
H A Di_standard_screen_capture_service.h50 virtual int32_t SetMaxVideoFrameRate(int32_t frameRate) = 0;
H A Dscreen_capture_service_proxy.cpp519 int32_t ScreenCaptureServiceProxy::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureServiceProxy
/ohos5.0/foundation/multimedia/player_framework/test/unittest/screen_capture_test/native/src/
H A Dscreen_capture_native_mock.cpp173 int32_t ScreenCaptureNativeMock::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureNativeMock
176 return screenCapture_->SetMaxVideoFrameRate(frameRate); in SetMaxVideoFrameRate()
/ohos5.0/foundation/multimedia/player_framework/services/include/
H A Di_screen_capture_service.h52 virtual int32_t SetMaxVideoFrameRate(int32_t frameRate) = 0;
/ohos5.0/foundation/multimedia/player_framework/services/services/screen_capture/client/
H A Dscreen_capture_client.cpp189 int32_t ScreenCaptureClient::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureClient
193 return screenCaptureProxy_->SetMaxVideoFrameRate(frameRate); in SetMaxVideoFrameRate()
H A Dscreen_capture_client.h54 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/screen_capture/
H A Dscreen_capture_impl.h39 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
H A Dscreen_capture_impl.cpp144 int32_t ScreenCaptureImpl::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureImpl
149 return screenCaptureService_->SetMaxVideoFrameRate(frameRate); in SetMaxVideoFrameRate()
/ohos5.0/foundation/multimedia/player_framework/test/unittest/screen_capture_test/native/include/
H A Dscreen_capture_native_mock.h41 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
/ohos5.0/foundation/multimedia/player_framework/test/fuzztest/common/
H A Dtest_screen_capture.cpp127 return screenCapture->SetMaxVideoFrameRate(frameRate); in SetMaxFrameRate()
/ohos5.0/foundation/multimedia/player_framework/test/unittest/screen_capture_test/capi/include/
H A Dscreen_capture_capi_mock.h41 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
/ohos5.0/foundation/multimedia/player_framework/test/unittest/screen_capture_test/
H A Dscreen_capture_mock.h86 virtual int32_t SetMaxVideoFrameRate(int32_t frameRate) = 0;
/ohos5.0/foundation/multimedia/player_framework/interfaces/inner_api/native/
H A Dscreen_capture.h253 virtual int32_t SetMaxVideoFrameRate(int32_t frameRate) = 0;
/ohos5.0/foundation/multimedia/player_framework/test/unittest/screen_capture_test/screen_capture_unittest/src/
H A Dscreen_capture_unit_test.cpp2300 EXPECT_EQ(MSERR_OK, screenCapture_->SetMaxVideoFrameRate(15));
2302 EXPECT_NE(MSERR_OK, screenCapture_->SetMaxVideoFrameRate(15));
2311 EXPECT_EQ(MSERR_OK, screenCapture_->SetMaxVideoFrameRate(90));
2313 EXPECT_NE(MSERR_OK, screenCapture_->SetMaxVideoFrameRate(90));
2357 EXPECT_NE(MSERR_OK, screenCapture_->SetMaxVideoFrameRate(-10));
2365 EXPECT_EQ(MSERR_OK, screenCapture_->SetMaxVideoFrameRate(1000000000));
2367 EXPECT_NE(MSERR_OK, screenCapture_->SetMaxVideoFrameRate(1000000000));
/ohos5.0/foundation/multimedia/player_framework/test/unittest/screen_capture_test/capi/src/
H A Dscreen_capture_capi_mock.cpp285 int32_t ScreenCaptureCapiMock::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in ScreenCaptureCapiMock
/ohos5.0/foundation/multimedia/player_framework/services/services/screen_capture/server/
H A Dscreen_capture_server.h275 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
H A Dscreen_capture_server.cpp2400 int32_t ScreenCaptureServer::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureServer
/ohos5.0/base/web/webview/test/unittest/ohos_adapter/screen_capture_adapter_impl_test/
H A Dscreen_capture_adapter_impl_test.cpp50 MOCK_METHOD1(SetMaxVideoFrameRate, int32_t(int32_t));
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/capi/screencapture/
H A Dnative_avscreen_capture.cpp935 int32_t ret = screenCaptureObj->screenCapture_->SetMaxVideoFrameRate(frameRate); in OH_AVScreenCapture_SetMaxVideoFrameRate()