Skip to content
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