OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "media/video/capture/video_capture_device.h" | 5 #include "media/video/capture/video_capture_device.h" |
6 | 6 |
7 #include "base/i18n/timezone.h" | 7 #include "base/i18n/timezone.h" |
8 #include "base/strings/string_util.h" | 8 #include "base/strings/string_util.h" |
9 | 9 |
10 namespace media { | 10 namespace media { |
11 | 11 |
12 const std::string VideoCaptureDevice::Name::GetNameAndModel() const { | 12 const std::string VideoCaptureDevice::Name::GetNameAndModel() const { |
13 const std::string model_id = GetModel(); | 13 const std::string model_id = GetModel(); |
14 if (model_id.empty()) | 14 if (model_id.empty()) |
15 return device_name_; | 15 return device_name_; |
16 const std::string suffix = " (" + model_id + ")"; | 16 const std::string suffix = " (" + model_id + ")"; |
17 if (EndsWith(device_name_, suffix, true)) // |true| means case-sensitive. | 17 if (EndsWith(device_name_, suffix, true)) // |true| means case-sensitive. |
18 return device_name_; | 18 return device_name_; |
19 return device_name_ + suffix; | 19 return device_name_ + suffix; |
20 } | 20 } |
21 | 21 |
22 VideoCaptureDevice::Name::Name() {} | |
23 | |
24 VideoCaptureDevice::Name::Name(const std::string& name, const std::string& id) | |
25 : device_name_(name), unique_id_(id) {} | |
26 | |
27 #if defined(OS_WIN) | |
28 VideoCaptureDevice::Name::Name(const std::string& name, | |
29 const std::string& id, | |
30 const CaptureApiType api_type) | |
31 : device_name_(name), unique_id_(id), capture_api_class_(api_type) {} | |
32 #endif | |
33 | |
34 #if defined(OS_MACOSX) | |
35 VideoCaptureDevice::Name::Name(const std::string& name, | |
36 const std::string& id, | |
37 const CaptureApiType api_type) | |
38 : device_name_(name), | |
39 unique_id_(id), | |
40 capture_api_class_(api_type), | |
41 transport_type_(OTHER_TRANSPORT) {} | |
42 VideoCaptureDevice::Name::Name(const std::string& name, | |
tommi (sloooow) - chröme
2014/07/03 10:28:36
empty line above this one
mcasas
2014/07/03 16:18:36
Done.
| |
43 const std::string& id, | |
44 const CaptureApiType api_type, | |
45 const TransportType transport_type) | |
46 : device_name_(name), | |
47 unique_id_(id), | |
48 capture_api_class_(api_type), | |
49 transport_type_(transport_type) {} | |
50 #endif | |
51 | |
52 VideoCaptureDevice::Name::~Name() {} | |
53 | |
22 VideoCaptureDevice::~VideoCaptureDevice() {} | 54 VideoCaptureDevice::~VideoCaptureDevice() {} |
23 | 55 |
24 int VideoCaptureDevice::GetPowerLineFrequencyForLocation() const { | 56 int VideoCaptureDevice::GetPowerLineFrequencyForLocation() const { |
25 std::string current_country = base::CountryCodeForCurrentTimezone(); | 57 std::string current_country = base::CountryCodeForCurrentTimezone(); |
26 if (current_country.empty()) | 58 if (current_country.empty()) |
27 return 0; | 59 return 0; |
28 // Sorted out list of countries with 60Hz power line frequency, from | 60 // Sorted out list of countries with 60Hz power line frequency, from |
29 // http://en.wikipedia.org/wiki/Mains_electricity_by_country | 61 // http://en.wikipedia.org/wiki/Mains_electricity_by_country |
30 const char* countries_using_60Hz[] = { | 62 const char* countries_using_60Hz[] = { |
31 "AI", "AO", "AS", "AW", "AZ", "BM", "BR", "BS", "BZ", "CA", "CO", | 63 "AI", "AO", "AS", "AW", "AZ", "BM", "BR", "BS", "BZ", "CA", "CO", |
32 "CR", "CU", "DO", "EC", "FM", "GT", "GU", "GY", "HN", "HT", "JP", | 64 "CR", "CU", "DO", "EC", "FM", "GT", "GU", "GY", "HN", "HT", "JP", |
33 "KN", "KR", "KY", "MS", "MX", "NI", "PA", "PE", "PF", "PH", "PR", | 65 "KN", "KR", "KY", "MS", "MX", "NI", "PA", "PE", "PF", "PH", "PR", |
34 "PW", "SA", "SR", "SV", "TT", "TW", "UM", "US", "VG", "VI", "VE"}; | 66 "PW", "SA", "SR", "SV", "TT", "TW", "UM", "US", "VG", "VI", "VE"}; |
35 const char** countries_using_60Hz_end = | 67 const char** countries_using_60Hz_end = |
36 countries_using_60Hz + arraysize(countries_using_60Hz); | 68 countries_using_60Hz + arraysize(countries_using_60Hz); |
37 if (std::find(countries_using_60Hz, countries_using_60Hz_end, | 69 if (std::find(countries_using_60Hz, countries_using_60Hz_end, |
38 current_country) == countries_using_60Hz_end) { | 70 current_country) == countries_using_60Hz_end) { |
39 return kPowerLine50Hz; | 71 return kPowerLine50Hz; |
40 } | 72 } |
41 return kPowerLine60Hz; | 73 return kPowerLine60Hz; |
42 } | 74 } |
43 | 75 |
44 } // namespace media | 76 } // namespace media |
OLD | NEW |