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"
10 ContentEncoding::ContentEncoding()
11 : order_(kOrderInvalid
),
12 scope_(kScopeInvalid
),
14 encryption_algo_(kEncAlgoInvalid
),
15 cipher_mode_(kCipherModeInvalid
) {
18 ContentEncoding::~ContentEncoding() {}
20 void ContentEncoding::SetEncryptionKeyId(const uint8
* encryption_key_id
,
22 DCHECK(encryption_key_id
);
24 encryption_key_id_
.assign(reinterpret_cast<const char*>(encryption_key_id
),