Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(291)

Side by Side Diff: components/cdm/common/widevine_drm_delegate_android.cc

Issue 2580093002: Revert of Convert USE_PROPRIETARY_CODECS to a buildflag header. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/cdm/common/widevine_drm_delegate_android.h" 5 #include "components/cdm/common/widevine_drm_delegate_android.h"
6 6
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "media/cdm/cenc_utils.h" 8 #include "media/cdm/cenc_utils.h"
9 #include "media/media_features.h"
10 9
11 namespace cdm { 10 namespace cdm {
12 11
13 namespace { 12 namespace {
14 13
15 const uint8_t kWidevineUuid[16] = { 14 const uint8_t kWidevineUuid[16] = {
16 0xED, 0xEF, 0x8B, 0xA9, 0x79, 0xD6, 0x4A, 0xCE, // 15 0xED, 0xEF, 0x8B, 0xA9, 0x79, 0xD6, 0x4A, 0xCE, //
17 0xA3, 0xC8, 0x27, 0xDC, 0xD5, 0x1D, 0x21, 0xED}; 16 0xA3, 0xC8, 0x27, 0xDC, 0xD5, 0x1D, 0x21, 0xED};
18 17
19 } // namespace 18 } // namespace
20 19
21 WidevineDrmDelegateAndroid::WidevineDrmDelegateAndroid() {} 20 WidevineDrmDelegateAndroid::WidevineDrmDelegateAndroid() {}
22 21
23 WidevineDrmDelegateAndroid::~WidevineDrmDelegateAndroid() {} 22 WidevineDrmDelegateAndroid::~WidevineDrmDelegateAndroid() {}
24 23
25 const std::vector<uint8_t> WidevineDrmDelegateAndroid::GetUUID() const { 24 const std::vector<uint8_t> WidevineDrmDelegateAndroid::GetUUID() const {
26 return std::vector<uint8_t>(kWidevineUuid, 25 return std::vector<uint8_t>(kWidevineUuid,
27 kWidevineUuid + arraysize(kWidevineUuid)); 26 kWidevineUuid + arraysize(kWidevineUuid));
28 } 27 }
29 28
30 bool WidevineDrmDelegateAndroid::OnCreateSession( 29 bool WidevineDrmDelegateAndroid::OnCreateSession(
31 const media::EmeInitDataType init_data_type, 30 const media::EmeInitDataType init_data_type,
32 const std::vector<uint8_t>& init_data, 31 const std::vector<uint8_t>& init_data,
33 std::vector<uint8_t>* init_data_out, 32 std::vector<uint8_t>* init_data_out,
34 std::vector<std::string>* /* optional_parameters_out */) { 33 std::vector<std::string>* /* optional_parameters_out */) {
35 if (init_data_type != media::EmeInitDataType::CENC) 34 if (init_data_type != media::EmeInitDataType::CENC)
36 return true; 35 return true;
37 36
38 #if BUILDFLAG(USE_PROPRIETARY_CODECS) 37 #if defined(USE_PROPRIETARY_CODECS)
39 // Widevine MediaDrm plugin only accepts the "data" part of the PSSH box as 38 // Widevine MediaDrm plugin only accepts the "data" part of the PSSH box as
40 // the init data when using MP4 container. 39 // the init data when using MP4 container.
41 return media::GetPsshData(init_data, GetUUID(), init_data_out); 40 return media::GetPsshData(init_data, GetUUID(), init_data_out);
42 #else 41 #else
43 return false; 42 return false;
44 #endif 43 #endif
45 } 44 }
46 45
47 } // namespace cdm 46 } // namespace cdm
OLDNEW
« no previous file with comments | « components/cdm/browser/cdm_message_filter_android.cc ('k') | components/cdm/renderer/android_key_systems.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698