/foundation/multimedia/av_codec/frameworks/native/avcodec/ |
H A D | avcodec_video_decoder_impl.cpp | 234 int32_t AVCodecVideoDecoderImpl::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument 240 CHECK_AND_RETURN_RET_LOG(keySessionProxy != nullptr, in SetDecryptConfig() 241 AVCS_ERR_INVALID_OPERATION, "keySessionProxy is nullptr"); in SetDecryptConfig() 244 return codecClient_->SetDecryptConfig(keySessionProxy, svpFlag); in SetDecryptConfig()
|
H A D | avcodec_video_decoder_impl.h | 46 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
|
/foundation/multimedia/player_framework/services/services/player/ipc/ |
H A D | i_standard_player_service.h | 104 virtual int32_t SetDecryptConfig(const sptr<OHOS::DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument 107 (void)keySessionProxy; in SetDecryptConfig()
|
H A D | player_service_proxy.h | 74 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
|
H A D | player_service_proxy.cpp | 735 int32_t PlayerServiceProxy::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument 745 CHECK_AND_RETURN_RET_LOG(keySessionProxy != nullptr, MSERR_INVALID_OPERATION, "keySessionProxy is nullptr"); in SetDecryptConfig() 746 sptr<IRemoteObject> object = keySessionProxy->AsObject(); in SetDecryptConfig() 747 CHECK_AND_RETURN_RET_LOG(object != nullptr, MSERR_INVALID_OPERATION, "keySessionProxy object is nullptr"); in SetDecryptConfig() 764 (void)keySessionProxy; in SetDecryptConfig()
|
H A D | player_service_stub.h | 87 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
|
H A D | player_service_stub.cpp | 498 int32_t PlayerServiceStub::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument 505 return playerServer_->SetDecryptConfig(keySessionProxy, svp); in SetDecryptConfig() 507 (void)keySessionProxy; in SetDecryptConfig()
|
/foundation/multimedia/drm_framework/frameworks/native/drm/ |
H A D | media_key_system_impl.cpp | 222 sptr<IMediaKeySessionService> keySessionProxy = nullptr;
in CreateMediaKeySession() local 230 ret = serviceProxy_->CreateMediaKeySession(securityLevel, keySessionProxy);
in CreateMediaKeySession() 232 if (keySessionProxy != nullptr) {
in CreateMediaKeySession() 233 localMediaKeySessionImpl = new (std::nothrow) MediaKeySessionImpl(keySessionProxy);
in CreateMediaKeySession()
|
/foundation/multimedia/player_framework/frameworks/native/player/ |
H A D | player_impl.cpp | 462 int32_t PlayerImpl::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, bool svp) in SetDecryptConfig() argument 466 CHECK_AND_RETURN_RET_LOG(keySessionProxy != nullptr, MSERR_INVALID_VAL, "keysessionproxy is nullptr"); in SetDecryptConfig() 468 MEDIA_LOGD("And it's count is: %{public}d in PlayerImpl", keySessionProxy->GetSptrRefCount()); in SetDecryptConfig() 469 return playerService_->SetDecryptConfig(keySessionProxy, svp); in SetDecryptConfig() 471 (void)keySessionProxy; in SetDecryptConfig()
|
H A D | player_impl.h | 74 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
|
/foundation/multimedia/player_framework/services/services/engine_intf/ |
H A D | i_player_engine.h | 106 virtual int32_t SetDecryptConfig(const sptr<OHOS::DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument 109 (void)keySessionProxy; in SetDecryptConfig()
|
/foundation/multimedia/drm_framework/services/drm_service/client/include/ |
H A D | mediakeysystem_service_proxy.h | 38 sptr<IMediaKeySessionService> &keySessionProxy) override;
|
/foundation/multimedia/player_framework/services/services/player/client/ |
H A D | player_client.cpp | 407 int32_t PlayerClient::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, bool svp) in SetDecryptConfig() argument 413 CHECK_AND_RETURN_RET_LOG(keySessionProxy != nullptr, MSERR_NO_MEMORY, "keySessionProxy is nullptr.."); in SetDecryptConfig() 414 return playerProxy_->SetDecryptConfig(keySessionProxy, svp); in SetDecryptConfig() 416 (void)keySessionProxy; in SetDecryptConfig()
|
H A D | player_client.h | 64 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
|
/foundation/multimedia/av_codec/services/media_engine/filters/ |
H A D | audio_decoder_filter.cpp | 357 Status AudioDecoderFilter::SetDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptionConfig() argument 361 if (keySessionProxy == nullptr) { in SetDecryptionConfig() 362 MEDIA_LOG_E_SHORT("SetDecryptionConfig keySessionProxy is nullptr."); in SetDecryptionConfig() 370 keySessionServiceProxy_ = keySessionProxy; in SetDecryptionConfig()
|
H A D | decoder_surface_filter.cpp | 814 Status DecoderSurfaceFilter::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument 818 if (keySessionProxy == nullptr) { in SetDecryptConfig() 819 MEDIA_LOG_E("SetDecryptConfig keySessionProxy is nullptr."); in SetDecryptConfig() 825 keySessionServiceProxy_ = keySessionProxy; in SetDecryptConfig()
|
/foundation/multimedia/drm_framework/services/drm_service/ipc/ |
H A D | i_mediakeysystem_service.h | 71 sptr<IMediaKeySessionService> &keySessionProxy) = 0;
|
/foundation/multimedia/av_codec/interfaces/inner_api/native/ |
H A D | audio_decoder_filter.h | 76 Status SetDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
|
H A D | decoder_surface_filter.h | 83 Status SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
|
/foundation/multimedia/drm_framework/services/drm_service/server/include/ |
H A D | mediakeysystem_service.h | 61 sptr<IMediaKeySessionService> &keySessionProxy) override;
|
/foundation/multimedia/player_framework/services/include/ |
H A D | i_player_service.h | 384 * @param keySessionProxy is the sptr will be setted to playerserver. 391 virtual int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
|
/foundation/multimedia/drm_framework/services/drm_service/server/src/ |
H A D | mediakeysystem_service.cpp | 231 sptr<IMediaKeySessionService> &keySessionProxy)
in CreateMediaKeySession() 268 keySessionProxy = keySessionService;
in CreateMediaKeySession() 230 CreateMediaKeySession(IMediaKeySessionService::ContentProtectionLevel securityLevel, sptr<IMediaKeySessionService> &keySessionProxy) CreateMediaKeySession() argument
|
/foundation/multimedia/drm_framework/services/drm_service/client/src/ |
H A D | mediakeysystem_service_proxy.cpp | 309 sptr<IMediaKeySessionService> &keySessionProxy)
333 keySessionProxy = iface_cast<IMediaKeySessionService>(remoteObject);
335 DRM_ERR_LOG("CreateMediaKeySession keySessionProxy is nullptr");
|
/foundation/multimedia/player_framework/interfaces/inner_api/native/ |
H A D | player.h | 768 virtual int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy, in SetDecryptConfig() argument 771 (void)keySessionProxy; in SetDecryptConfig()
|
/foundation/multimedia/player_framework/test/fuzztest/player_fuzztest/playerstub_fuzzer/ |
H A D | player_service_proxy_fuzzer.h | 190 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySessionProxy,
|