Home
last modified time | relevance | path

Searched refs:SetMetaSource (Results 1 – 18 of 18) sorted by relevance

/ohos5.0/foundation/multimedia/player_framework/services/services/engine_intf/
H A Di_recorder_engine.h102 virtual int32_t SetMetaSource(MetaSourceType source, int32_t &sourceId) = 0;
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/ipc/
H A Drecorder_service_stub.h47 int32_t SetMetaSource(MetaSourceType source, int32_t &sourceId) override;
99 int32_t SetMetaSource(MessageParcel &data, MessageParcel &reply);
H A Drecorder_service_stub.cpp148 [this](MessageParcel &data, MessageParcel &reply) { return SetMetaSource(data, reply); }; in FillRecFuncPart2()
291 int32_t RecorderServiceStub::SetMetaSource(MetaSourceType source, int32_t &sourceId) in SetMetaSource() function in OHOS::Media::RecorderServiceStub
294 return recorderServer_->SetMetaSource(source, sourceId); in SetMetaSource()
593 int32_t RecorderServiceStub::SetMetaSource(MessageParcel &data, MessageParcel &reply) in SetMetaSource() function in OHOS::Media::RecorderServiceStub
598 int32_t ret = SetMetaSource(sourceType, sourceId); in SetMetaSource()
H A Drecorder_service_proxy.h38 int32_t SetMetaSource(MetaSourceType source, int32_t &sourceId) override;
H A Di_standard_recorder_service.h37 virtual int32_t SetMetaSource(MetaSourceType source, int32_t &sourceId) = 0;
H A Drecorder_service_proxy.cpp199 int32_t RecorderServiceProxy::SetMetaSource(MetaSourceType source, int32_t &sourceId) in SetMetaSource() function in OHOS::Media::RecorderServiceProxy
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/recorder/
H A Drecorder_impl.cpp197 int32_t RecorderImpl::SetMetaSource(MetaSourceType source, int32_t &sourceId) in SetMetaSource() function in OHOS::Media::RecorderImpl
202 return recorderService_->SetMetaSource(source, sourceId); in SetMetaSource()
H A Drecorder_impl.h47 int32_t SetMetaSource(MetaSourceType source, int32_t &sourceId) override;
/ohos5.0/foundation/multimedia/player_framework/services/include/
H A Di_recorder_service.h59 virtual int32_t SetMetaSource(MetaSourceType source, int32_t &sourceId) = 0;
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/client/
H A Drecorder_client.h40 int32_t SetMetaSource(MetaSourceType source, int32_t &sourceId) override;
H A Drecorder_client.cpp149 int32_t RecorderClient::SetMetaSource(MetaSourceType source, int32_t &sourceId) in SetMetaSource() function in OHOS::Media::RecorderClient
156 return recorderProxy_->SetMetaSource(source, sourceId); in SetMetaSource()
/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/recorder/
H A Dhirecorder_impl.h61 int32_t SetMetaSource(MetaSourceType source, int32_t &sourceId);
H A Dhirecorder_impl.cpp157 int32_t HiRecorderImpl::SetMetaSource(MetaSourceType source, int32_t &sourceId) in SetMetaSource() function in OHOS::Media::HiRecorderImpl
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/server/
H A Drecorder_server.h78 int32_t SetMetaSource(MetaSourceType source, int32_t &sourceId) override;
H A Drecorder_server.cpp298 int32_t RecorderServer::SetMetaSource(MetaSourceType source, int32_t &sourceId) in SetMetaSource() function in OHOS::Media::RecorderServer
309 return recorderEngine_->SetMetaSource(source, sourceId); in SetMetaSource()
/ohos5.0/foundation/multimedia/player_framework/interfaces/inner_api/native/
H A Drecorder.h551 virtual int32_t SetMetaSource(MetaSourceType source, int32_t &sourceId) = 0;
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/recorder/test/unittest/src/
H A Drecorder_mock.cpp568 ret = recorder_->SetMetaSource(recorderConfig.metaSourceType, recorderConfig.metaSourceId); in SetAudVidFormat()
/ohos5.0/foundation/multimedia/player_framework/frameworks/js/avrecorder/
H A Davrecorder_napi.cpp2128 ret = recorder_->SetMetaSource(MetaSourceType::VIDEO_META_MAKER_INFO, metaSourceID_); in Configure()