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

Side by Side Diff: webrtc/media/base/videocapturer.cc

Issue 2578323005: Delete unused code from systeminfo. (Closed)
Patch Set: Delete systeminfo entirely 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
« no previous file with comments | « webrtc/base/systeminfo_unittest.cc ('k') | webrtc/system_wrappers/source/cpu_info.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2010 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2010 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 // Implementation file of class VideoCapturer. 11 // Implementation file of class VideoCapturer.
12 12
13 #include "webrtc/media/base/videocapturer.h" 13 #include "webrtc/media/base/videocapturer.h"
14 14
15 #include <algorithm> 15 #include <algorithm>
16 16
17 #include "webrtc/base/common.h" 17 #include "webrtc/base/common.h"
18 #include "webrtc/base/logging.h" 18 #include "webrtc/base/logging.h"
19 #include "webrtc/base/systeminfo.h"
20 #include "webrtc/video_frame.h" 19 #include "webrtc/video_frame.h"
21 20
22 namespace cricket { 21 namespace cricket {
23 22
24 namespace { 23 namespace {
25 24
26 static const int64_t kMaxDistance = ~(static_cast<int64_t>(1) << 63); 25 static const int64_t kMaxDistance = ~(static_cast<int64_t>(1) << 63);
27 #ifdef WEBRTC_LINUX 26 #ifdef WEBRTC_LINUX
28 static const int kYU12Penalty = 16; // Needs to be higher than MJPG index. 27 static const int kYU12Penalty = 16; // Needs to be higher than MJPG index.
29 #endif 28 #endif
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 void VideoCapturer::UpdateInputSize(int width, int height) { 363 void VideoCapturer::UpdateInputSize(int width, int height) {
365 // Update stats protected from fetches from different thread. 364 // Update stats protected from fetches from different thread.
366 rtc::CritScope cs(&frame_stats_crit_); 365 rtc::CritScope cs(&frame_stats_crit_);
367 366
368 input_size_valid_ = true; 367 input_size_valid_ = true;
369 input_width_ = width; 368 input_width_ = width;
370 input_height_ = height; 369 input_height_ = height;
371 } 370 }
372 371
373 } // namespace cricket 372 } // namespace cricket
OLDNEW
« no previous file with comments | « webrtc/base/systeminfo_unittest.cc ('k') | webrtc/system_wrappers/source/cpu_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698