Home
last modified time | relevance | path

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

/foundation/multimedia/player_framework/services/services/screen_capture/ipc/
Dscreen_capture_service_stub.h53 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
82 int32_t SetMaxVideoFrameRate(MessageParcel &data, MessageParcel &reply);
Dscreen_capture_service_stub.cpp62 screenCaptureStubFuncs_[SET_MAX_FRAME_RATE] = &ScreenCaptureServiceStub::SetMaxVideoFrameRate; in Init()
255 int32_t ScreenCaptureServiceStub::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureServiceStub
259 return screenCaptureServer_->SetMaxVideoFrameRate(frameRate); in SetMaxVideoFrameRate()
378 int32_t ScreenCaptureServiceStub::SetMaxVideoFrameRate(MessageParcel &data, MessageParcel &reply) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureServiceStub
383 int32_t ret = SetMaxVideoFrameRate(frameRate); in SetMaxVideoFrameRate()
Dscreen_capture_service_proxy.h51 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
Di_standard_screen_capture_service.h51 virtual int32_t SetMaxVideoFrameRate(int32_t frameRate) = 0;
Dscreen_capture_service_proxy.cpp538 int32_t ScreenCaptureServiceProxy::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureServiceProxy
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/native/src/
Dscreen_capture_native_mock.cpp181 int32_t ScreenCaptureNativeMock::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureNativeMock
184 return screenCapture_->SetMaxVideoFrameRate(frameRate); in SetMaxVideoFrameRate()
/foundation/multimedia/player_framework/services/include/
Di_screen_capture_service.h53 virtual int32_t SetMaxVideoFrameRate(int32_t frameRate) = 0;
/foundation/multimedia/player_framework/frameworks/native/screen_capture/
Dscreen_capture_impl.h40 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
Dscreen_capture_impl.cpp152 int32_t ScreenCaptureImpl::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureImpl
157 return screenCaptureService_->SetMaxVideoFrameRate(frameRate); in SetMaxVideoFrameRate()
/foundation/multimedia/player_framework/services/services/screen_capture/client/
Dscreen_capture_client.h55 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
Dscreen_capture_client.cpp196 int32_t ScreenCaptureClient::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureClient
200 return screenCaptureProxy_->SetMaxVideoFrameRate(frameRate); in SetMaxVideoFrameRate()
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/native/include/
Dscreen_capture_native_mock.h41 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
/foundation/multimedia/player_framework/test/fuzztest/common/
Dtest_screen_capture.cpp127 return screenCapture->SetMaxVideoFrameRate(frameRate); in SetMaxFrameRate()
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/
Dscreen_capture_mock.h87 virtual int32_t SetMaxVideoFrameRate(int32_t frameRate) = 0;
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/capi/include/
Dscreen_capture_capi_mock.h41 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
/foundation/multimedia/player_framework/interfaces/inner_api/native/
Dscreen_capture.h260 virtual int32_t SetMaxVideoFrameRate(int32_t frameRate) = 0;
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/screen_capture_unittest/src/
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));
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/capi/src/
Dscreen_capture_capi_mock.cpp293 int32_t ScreenCaptureCapiMock::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in ScreenCaptureCapiMock
/foundation/multimedia/player_framework/services/services/screen_capture/server/
Dscreen_capture_server.h311 int32_t SetMaxVideoFrameRate(int32_t frameRate) override;
Dscreen_capture_server.cpp2788 int32_t ScreenCaptureServer::SetMaxVideoFrameRate(int32_t frameRate) in SetMaxVideoFrameRate() function in OHOS::Media::ScreenCaptureServer
/foundation/multimedia/player_framework/frameworks/native/capi/screencapture/
Dnative_avscreen_capture.cpp988 int32_t ret = screenCaptureObj->screenCapture_->SetMaxVideoFrameRate(frameRate); in OH_AVScreenCapture_SetMaxVideoFrameRate()