Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/player_framework/services/services/engine_intf/
H A Di_recorder_engine.h148 virtual sptr<Surface> GetMetaSurface(int32_t sourceId) = 0;
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/ipc/
H A Drecorder_service_stub.h52 sptr<OHOS::Surface> GetMetaSurface(int32_t sourceId) override;
104 int32_t GetMetaSurface(MessageParcel &data, MessageParcel &reply);
H A Drecorder_service_stub.cpp156 [this](MessageParcel &data, MessageParcel &reply) { return GetMetaSurface(data, reply); }; in FillRecFuncPart2()
321 sptr<OHOS::Surface> RecorderServiceStub::GetMetaSurface(int32_t sourceId) in GetMetaSurface() function in OHOS::Media::RecorderServiceStub
324 return recorderServer_->GetMetaSurface(sourceId); in GetMetaSurface()
648 int32_t RecorderServiceStub::GetMetaSurface(MessageParcel &data, MessageParcel &reply) in GetMetaSurface() function in OHOS::Media::RecorderServiceStub
651 sptr<OHOS::Surface> surface = GetMetaSurface(sourceId); in GetMetaSurface()
H A Drecorder_service_proxy.h44 sptr<OHOS::Surface> GetMetaSurface(int32_t sourceId) override;
H A Di_standard_recorder_service.h48 virtual sptr<OHOS::Surface> GetMetaSurface(int32_t sourceId) = 0;
H A Drecorder_service_proxy.cpp312 sptr<OHOS::Surface> RecorderServiceProxy::GetMetaSurface(int32_t sourceId) in GetMetaSurface() function in OHOS::Media::RecorderServiceProxy
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/recorder/
H A Drecorder_impl.cpp148 sptr<OHOS::Surface> RecorderImpl::GetMetaSurface(int32_t sourceId) in GetMetaSurface() function in OHOS::Media::RecorderImpl
153 metaSurface_ = recorderService_->GetMetaSurface(sourceId); in GetMetaSurface()
H A Drecorder_impl.h41 sptr<OHOS::Surface> GetMetaSurface(int32_t sourceId) override;
/ohos5.0/foundation/multimedia/player_framework/services/include/
H A Di_recorder_service.h233 virtual sptr<OHOS::Surface> GetMetaSurface(int32_t sourceId) = 0;
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/client/
H A Drecorder_client.h47 sptr<OHOS::Surface> GetMetaSurface(int32_t sourceId) override;
H A Drecorder_client.cpp216 sptr<OHOS::Surface> RecorderClient::GetMetaSurface(int32_t sourceId) in GetMetaSurface() function in OHOS::Media::RecorderClient
222 return recorderProxy_->GetMetaSurface(sourceId); in GetMetaSurface()
/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/recorder/
H A Dhirecorder_impl.h67 sptr<Surface> GetMetaSurface(int32_t sourceId);
H A Dhirecorder_impl.cpp311 sptr<Surface> HiRecorderImpl::GetMetaSurface(int32_t sourceId) in GetMetaSurface() function in OHOS::Media::HiRecorderImpl
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/recorder/test/unittest/include/
H A Drecorder_mock.h134 OHOS::sptr<OHOS::Surface> GetMetaSurface(int32_t sourceId);
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/server/
H A Drecorder_server.h85 sptr<OHOS::Surface> GetMetaSurface(int32_t sourceId) override;
H A Drecorder_server.cpp418 sptr<OHOS::Surface> RecorderServer::GetMetaSurface(int32_t sourceId) in GetMetaSurface() function in OHOS::Media::RecorderServer
427 return recorderEngine_->GetMetaSurface(sourceId); in GetMetaSurface()
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/recorder/test/unittest/src/
H A Drecorder_mock.cpp163 OHOS::sptr<OHOS::Surface> RecorderMock::GetMetaSurface(int32_t sourceId) in GetMetaSurface() function in RecorderMock
166 return recorder_->GetMetaSurface(sourceId); in GetMetaSurface()
H A Drecorder_unit_test.cpp1582 … OHOS::sptr<OHOS::Surface> surface = recorder_->GetMetaSurface(g_videoRecorderConfig.metaSourceId);
/ohos5.0/foundation/multimedia/player_framework/interfaces/inner_api/native/
H A Drecorder.h694 virtual sptr<OHOS::Surface> GetMetaSurface(int32_t sourceId) = 0;
/ohos5.0/foundation/multimedia/player_framework/frameworks/js/avrecorder/
H A Davrecorder_napi.cpp1352 napi->metaSurface_ = napi->recorder_->GetMetaSurface(napi->metaSourceIDMap_.at(type)); in GetInputMetaSurface()