Home
last modified time | relevance | path

Searched refs:keySession (Results 1 - 25 of 33) sorted by relevance

12

/foundation/multimedia/av_codec/services/include/
H A Di_codec_service.h64 virtual int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetDecryptConfig() argument
67 (void)keySession; in SetDecryptConfig()
118 virtual int32_t SetAudioDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetAudioDecryptionConfig() argument
121 (void)keySession; in SetAudioDecryptionConfig()
/foundation/multimedia/av_codec/test/unittest/video_test/drm_decryptor_test/
H A Dcodec_drm_decrypt_mock.cpp48 void CodecDrmDecryptorMock::SetDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetDecryptionConfig() argument
52 return decryptor_->SetDecryptionConfig(keySession, svpFlag); in SetDecryptionConfig()
H A Dcodec_drm_decrypt_mock.h39 void SetDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession,
/foundation/multimedia/av_codec/services/services/codec/ipc/
H A Di_standard_codec_service.h57 virtual int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetDecryptConfig() argument
60 (void)keySession; in SetDecryptConfig()
H A Dcodec_service_proxy.h55 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession,
H A Dcodec_service_stub.h59 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession,
H A Dcodec_service_proxy.cpp468 int32_t CodecServiceProxy::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetDecryptConfig() argument
478 CHECK_AND_RETURN_RET_LOG(keySession != nullptr, AVCS_ERR_INVALID_VAL, "keySession nullptr failed!"); in SetDecryptConfig()
479 sptr<IRemoteObject> object = keySession->AsObject(); in SetDecryptConfig()
/foundation/multimedia/av_codec/test/unittest/filter_test/
H A Dsurface_decoder_unit_test.h120 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetDecryptConfig() argument
123 (void)keySession; in SetDecryptConfig()
/foundation/multimedia/av_codec/services/engine/base/include/
H A Dcodecbase.h115 virtual int32_t SetAudioDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetAudioDecryptionConfig() argument
118 (void)keySession; in SetAudioDecryptionConfig()
/foundation/multimedia/av_codec/interfaces/inner_api/native/
H A Davcodec_video_decoder.h232 virtual int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetDecryptConfig() argument
235 (void)keySession; in SetDecryptConfig()
H A Dvideo_decoder_adapter.h62 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession,
/foundation/multimedia/drm_framework/frameworks/c/drm_capi/
H A Dnative_mediakeysession.cpp336 Drm_ErrCode OH_MediaKeySession_Destroy(MediaKeySession *keySession) in OH_MediaKeySession_Destroy() argument
339 DRM_CHECK_AND_RETURN_RET_LOG(keySession != nullptr, DRM_ERR_INVALID_VAL, in OH_MediaKeySession_Destroy()
340 "OH_MediaKeySession_Destroy keySession is nullptr!"); in OH_MediaKeySession_Destroy()
342 MediaKeySessionObject *sessionObject = reinterpret_cast<MediaKeySessionObject *>(keySession); in OH_MediaKeySession_Destroy()
350 delete keySession; in OH_MediaKeySession_Destroy()
351 keySession = nullptr; in OH_MediaKeySession_Destroy()
/foundation/multimedia/av_codec/test/unittest/decoder_filter_test/
H A Dvideo_decoder_adapter_unit_test.h179 virtual int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetDecryptConfig() argument
182 (void)keySession; in SetDecryptConfig()
/foundation/multimedia/av_codec/services/services/codec/server/
H A Dcodec_server.h81 int32_t SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession,
113 int32_t SetAudioDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession,
128 int32_t CheckDrmSvpConsistency(const sptr<DrmStandard::IMediaKeySessionService> &keySession, bool svpFlag);
/foundation/multimedia/av_codec/frameworks/native/avcodec/
H A Davcodec_audio_codec_impl.cpp219 int32_t AVCodecAudioCodecImpl::SetAudioDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetAudioDecryptionConfig() argument
224 return codecService_->SetAudioDecryptionConfig(keySession, svpFlag); in SetAudioDecryptionConfig()
227 int32_t AVCodecAudioCodecImpl::SetAudioDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetAudioDecryptionConfig() argument
230 (void)keySession; in SetAudioDecryptionConfig()
H A Davcodec_audio_codec_impl.h45 int32_t SetAudioDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession,
/foundation/multimedia/av_codec/services/engine/codec/include/audio/
H A Daudio_codec.h175 int32_t SetAudioDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession,
179 static_cast<Media::Status>(mediaCodec_->SetAudioDecryptionConfig(keySession, svpFlag)));
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_server_test/mock/
H A Dcodec_drm_decrypt_mock.cpp213 void CodecDrmDecrypt::SetDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetDecryptionConfig() argument
216 (void)keySession; in SetDecryptionConfig()
H A Dcodecbase_mock.cpp403 int32_t CodecBase::SetAudioDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetAudioDecryptionConfig() argument
410 return mock->SetAudioDecryptionConfig(keySession, svpFlag); in SetAudioDecryptionConfig()
/foundation/multimedia/av_codec/services/media_engine/filters/
H A Dvideo_decoder_adapter.cpp412 int32_t VideoDecoderAdapter::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, in SetDecryptConfig() argument
420 if (keySession == nullptr) { in SetDecryptConfig()
421 MEDIA_LOG_E_SHORT("keySession is nullptr"); in SetDecryptConfig()
424 return mediaCodec_->SetDecryptConfig(keySession, svpFlag); in SetDecryptConfig()
/foundation/multimedia/drm_framework/interfaces/inner_api/native/drm/
H A Dkey_session_impl.h51 explicit MediaKeySessionImpl(sptr<IMediaKeySessionService> &keySession);
/foundation/multimedia/av_codec/services/drm_decryptor/
H A Dcodec_drm_decrypt.h53 void SetDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession,
/foundation/multimedia/av_codec/services/media_engine/modules/media_codec/
H A Dmedia_codec.h125 int32_t SetAudioDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession,
/foundation/multimedia/av_codec/services/services/codec/client/
H A Dcodec_client.cpp348 int32_t CodecClient::SetDecryptConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession, const bool svpFlag) in SetDecryptConfig() argument
352 CHECK_AND_RETURN_RET_LOG(keySession != nullptr, AVCS_ERR_INVALID_OPERATION, "Server not exist"); in SetDecryptConfig()
354 int32_t ret = codecProxy_->SetDecryptConfig(keySession, svpFlag); in SetDecryptConfig()
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_server_test/mock/include/
H A Dcodecbase.h215 (const sptr<DrmStandard::IMediaKeySessionService> &keySession, const bool svpFlag));
264 virtual int32_t SetAudioDecryptionConfig(const sptr<DrmStandard::IMediaKeySessionService> &keySession,

Completed in 12 milliseconds

12