Home
last modified time | relevance | path

Searched refs:SetVideoIsHdr (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/ipc/
H A Drecorder_service_stub.h44 int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) override;
96 int32_t SetVideoIsHdr(MessageParcel &data, MessageParcel &reply);
H A Drecorder_service_stub.cpp136 [this](MessageParcel &data, MessageParcel &reply) { return SetVideoIsHdr(data, reply); }; in FillRecFuncPart2()
273 int32_t RecorderServiceStub::SetVideoIsHdr(int32_t sourceId, bool isHdr) in SetVideoIsHdr() function in OHOS::Media::RecorderServiceStub
276 return recorderServer_->SetVideoIsHdr(sourceId, isHdr); in SetVideoIsHdr()
569 int32_t RecorderServiceStub::SetVideoIsHdr(MessageParcel &data, MessageParcel &reply) in SetVideoIsHdr() function in OHOS::Media::RecorderServiceStub
573 reply.WriteInt32(SetVideoIsHdr(sourceId, isHdr)); in SetVideoIsHdr()
H A Drecorder_service_proxy.h35 int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) override;
H A Di_standard_recorder_service.h90 virtual int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) = 0;
H A Drecorder_service_proxy.cpp146 int32_t RecorderServiceProxy::SetVideoIsHdr(int32_t sourceId, bool isHdr) in SetVideoIsHdr() function in OHOS::Media::RecorderServiceProxy
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/recorder/
H A Drecorder_impl.cpp115 int32_t RecorderImpl::RecorderImpl::SetVideoIsHdr(int32_t sourceId, bool isHdr) in SetVideoIsHdr() function in OHOS::Media::RecorderImpl::RecorderImpl
120 return recorderService_->SetVideoIsHdr(sourceId, isHdr); in SetVideoIsHdr()
H A Drecorder_impl.h37 int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) override;
/ohos5.0/foundation/multimedia/player_framework/services/include/
H A Di_recorder_service.h187 virtual int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) = 0;
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/client/
H A Drecorder_client.h38 int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) override;
H A Drecorder_client.cpp130 int32_t RecorderClient::SetVideoIsHdr(int32_t sourceId, bool isHdr) in SetVideoIsHdr() function in OHOS::Media::RecorderClient
136 return recorderProxy_->SetVideoIsHdr(sourceId, isHdr); in SetVideoIsHdr()
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/server/
H A Drecorder_server.h76 int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) override;
H A Drecorder_server.cpp260 int32_t RecorderServer::SetVideoIsHdr(int32_t sourceId, bool isHdr) in SetVideoIsHdr() function in OHOS::Media::RecorderServer
/ohos5.0/foundation/multimedia/player_framework/interfaces/inner_api/native/
H A Drecorder.h605 virtual int32_t SetVideoIsHdr(int32_t sourceId, bool isHdr) = 0;
/ohos5.0/foundation/multimedia/player_framework/frameworks/js/avrecorder/
H A Davrecorder_napi.cpp2087 ret = recorder_->SetVideoIsHdr(videoSourceID_, profile.isHdr); in SetProfile()