28 lines
771 B
C
28 lines
771 B
C
|
// ContentProtectionElement is shared a structure that can be passed to
|
||
|
// MPD generator classes to add ContentProtection element in the resulting MPD
|
||
|
// file.
|
||
|
// http://goo.gl/UrsSlF
|
||
|
|
||
|
#ifndef MPD_BASE_CONTENT_PROTECTION_ELEMENT_H_
|
||
|
#define MPD_BASE_CONTENT_PROTECTION_ELEMENT_H_
|
||
|
|
||
|
#include <map>
|
||
|
#include <string>
|
||
|
|
||
|
namespace dash_packager {
|
||
|
|
||
|
struct ContentProtectionElement {
|
||
|
std::string value; // Will be set for 'value' attribute.
|
||
|
std::string scheme_id_uri; // Will be set for 'schemeIdUri' attribute.
|
||
|
|
||
|
// Other attributes for this element.
|
||
|
std::map<std::string, std::string> additional_attributes;
|
||
|
|
||
|
// The elements that will be in this element.
|
||
|
std::string subelements;
|
||
|
};
|
||
|
|
||
|
} // namespace dash_packager
|
||
|
|
||
|
#endif // MPD_BASE_CONTENT_PROTECTION_ELEMENT_H_
|