5 #ifndef MEDIA_FORMATS_WEBM_WEBM_CONTENT_ENCODINGS_H_
6 #define MEDIA_FORMATS_WEBM_WEBM_CONTENT_ENCODINGS_H_
11 #include "packager/base/memory/scoped_ptr.h"
13 namespace edash_packager {
25 kScopeAllFrameContents = 1,
26 kScopeTrackPrivateData = 2,
27 kScopeNextContentEncodingData = 4,
39 kEncAlgoNotEncrypted = 0,
48 kCipherModeInvalid = 0,
55 int64_t order()
const {
return order_; }
56 void set_order(int64_t order) { order_ = order; }
58 Scope scope()
const {
return scope_; }
59 void set_scope(Scope scope) { scope_ = scope; }
61 Type type()
const {
return type_; }
62 void set_type(Type type) { type_ = type; }
64 EncryptionAlgo encryption_algo()
const {
return encryption_algo_; }
65 void set_encryption_algo(EncryptionAlgo encryption_algo) {
66 encryption_algo_ = encryption_algo;
69 const std::string& encryption_key_id()
const {
return encryption_key_id_; }
70 void SetEncryptionKeyId(
const uint8_t* encryption_key_id,
int size);
72 CipherMode cipher_mode()
const {
return cipher_mode_; }
73 void set_cipher_mode(CipherMode mode) { cipher_mode_ = mode; }
79 EncryptionAlgo encryption_algo_;
80 std::string encryption_key_id_;
81 CipherMode cipher_mode_;
83 DISALLOW_COPY_AND_ASSIGN(ContentEncoding);
89 #endif // MEDIA_FORMATS_WEBM_WEBM_CONTENT_ENCODINGS_H_
static const int kOrderInvalid