Roll ANGLE e754fb8..6ffeb74
[chromium-blink-merge.git] / media / formats / webm / webm_content_encodings.cc
blob157c6ac43115c3f99200e3cf8b2949fd68e888e4
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/logging.h"
6 #include "media/formats/webm/webm_content_encodings.h"
8 namespace media {
10 ContentEncoding::ContentEncoding()
11 : order_(kOrderInvalid),
12 scope_(kScopeInvalid),
13 type_(kTypeInvalid),
14 encryption_algo_(kEncAlgoInvalid),
15 cipher_mode_(kCipherModeInvalid) {
18 ContentEncoding::~ContentEncoding() {}
20 void ContentEncoding::SetEncryptionKeyId(const uint8* encryption_key_id,
21 int size) {
22 DCHECK(encryption_key_id);
23 DCHECK_GT(size, 0);
24 encryption_key_id_.assign(reinterpret_cast<const char*>(encryption_key_id),
25 size);
28 } // namespace media