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

Side by Side Diff: webrtc/modules/video_coding/main/source/qm_select.cc

Issue 1413333002: system_wrappers: rename interface -> include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased again! Created 5 years, 1 month 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 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 #include "webrtc/modules/video_coding/main/source/qm_select.h" 11 #include "webrtc/modules/video_coding/main/source/qm_select.h"
12 12
13 #include <math.h> 13 #include <math.h>
14 14
15 #include "webrtc/modules/interface/module_common_types.h" 15 #include "webrtc/modules/interface/module_common_types.h"
16 #include "webrtc/modules/video_coding/main/interface/video_coding_defines.h" 16 #include "webrtc/modules/video_coding/main/interface/video_coding_defines.h"
17 #include "webrtc/modules/video_coding/main/source/internal_defines.h" 17 #include "webrtc/modules/video_coding/main/source/internal_defines.h"
18 #include "webrtc/modules/video_coding/main/source/qm_select_data.h" 18 #include "webrtc/modules/video_coding/main/source/qm_select_data.h"
19 #include "webrtc/system_wrappers/interface/trace.h" 19 #include "webrtc/system_wrappers/include/trace.h"
20 20
21 namespace webrtc { 21 namespace webrtc {
22 22
23 // QM-METHOD class 23 // QM-METHOD class
24 24
25 VCMQmMethod::VCMQmMethod() 25 VCMQmMethod::VCMQmMethod()
26 : content_metrics_(NULL), 26 : content_metrics_(NULL),
27 width_(0), 27 width_(0),
28 height_(0), 28 height_(0),
29 user_frame_rate_(0.0f), 29 user_frame_rate_(0.0f),
(...skipping 919 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 949
950 // Set the UEP (unequal-protection across packets) on/off for the FEC. 950 // Set the UEP (unequal-protection across packets) on/off for the FEC.
951 bool VCMQmRobustness::SetUepProtection(uint8_t code_rate_delta, 951 bool VCMQmRobustness::SetUepProtection(uint8_t code_rate_delta,
952 float total_rate, 952 float total_rate,
953 uint8_t packet_loss, 953 uint8_t packet_loss,
954 bool frame_type) { 954 bool frame_type) {
955 // Default. 955 // Default.
956 return false; 956 return false;
957 } 957 }
958 } // namespace 958 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698