Home
last modified time | relevance | path

Searched refs:timedKey (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/multimedia/player_framework/services/services/engine_intf/
H A Drecorder_param.h215 timedKey(key) {} in MetaTimedKey()
216 std::string timedKey; member
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/client/
H A Drecorder_client.cpp178 int32_t RecorderClient::SetMetaTimedKey(int32_t sourceId, const std::string_view &timedKey) in SetMetaTimedKey() argument
184 sourceId, timedKey.data()); in SetMetaTimedKey()
185 return recorderProxy_->SetMetaTimedKey(sourceId, timedKey); in SetMetaTimedKey()
H A Drecorder_client.h43 int32_t SetMetaTimedKey(int32_t sourceId, const std::string_view &timedKey) override;
/ohos5.0/foundation/multimedia/player_framework/services/include/
H A Di_recorder_service.h102 virtual int32_t SetMetaTimedKey(int32_t sourceId, const std::string_view &timedKey) = 0;
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/ipc/
H A Drecorder_service_proxy.h40 int32_t SetMetaTimedKey(int32_t sourceId, const std::string_view &timedKey) override;
H A Drecorder_service_stub.cpp303 int32_t RecorderServiceStub::SetMetaTimedKey(int32_t sourceId, const std::string_view &timedKey) in SetMetaTimedKey() argument
306 return recorderServer_->SetMetaTimedKey(sourceId, timedKey); in SetMetaTimedKey()
621 std::string_view timedKey(mimetypeStr); in SetMetaTimedKey() local
622 reply.WriteInt32(SetMetaTimedKey(sourceId, timedKey)); in SetMetaTimedKey()
H A Di_standard_recorder_service.h39 virtual int32_t SetMetaTimedKey(int32_t sourceId, const std::string_view &timedKey) = 0;
H A Drecorder_service_stub.h49 int32_t SetMetaTimedKey(int32_t sourceId, const std::string_view &timedKey) override;
H A Drecorder_service_proxy.cpp235 int32_t RecorderServiceProxy::SetMetaTimedKey(int32_t sourceId, const std::string_view &timedKey) in SetMetaTimedKey() argument
245 data.WriteCString(timedKey.data()); in SetMetaTimedKey()
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/server/
H A Drecorder_server.h81 int32_t SetMetaTimedKey(int32_t sourceId, const std::string_view &timedKey) override;
H A Drecorder_server.cpp341 int32_t RecorderServer::SetMetaTimedKey(int32_t sourceId, const std::string_view &timedKey) in SetMetaTimedKey() argument
344 "MetaTimedKey(%{public}s)", FAKE_POINTER(this), sourceId, timedKey.data()); in SetMetaTimedKey()
350 config_.metaTimedKey = timedKey; in SetMetaTimedKey()
351 MetaTimedKey metaTimedKey(timedKey); in SetMetaTimedKey()
/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/recorder/
H A Dhirecorder_impl.cpp729 MetaTimedKey timedKey = static_cast<const MetaTimedKey&>(recParam); in ConfigureMeta() local
730 metaFormat->Set<Tag::TIMED_METADATA_KEY>(timedKey.timedKey); in ConfigureMeta()