Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding SerParameter for RDK-adapter #355

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions interfaces/IOCDM.h
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ struct ISession : virtual public Core::IUnknown {
// Let the CDM know playback has stopped in order to disable output protection
virtual void ResetOutputProtection() = 0;

// Set a name/value pair into the CDM
virtual void SetParameter(const std::string& name, const std::string& value) = 0;

// During instantiation a callback is set, here we can decouple.
virtual void Revoke(ISession::ICallback* callback) = 0;
};
Expand Down