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

Side by Side Diff: webrtc/modules/audio_coding/audio_network_adaptor/util/threshold_curve.h

Issue 2964773002: Revert "Update includes for webrtc/{base => rtc_base} rename (1/3)" (Closed)
Patch Set: Created 3 years, 5 months 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) 2017 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2017 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 #ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_UTIL_THRESHOLD_CURVE_H _ 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_UTIL_THRESHOLD_CURVE_H _
12 #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_UTIL_THRESHOLD_CURVE_H _ 12 #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_UTIL_THRESHOLD_CURVE_H _
13 13
14 #include "webrtc/rtc_base/checks.h" 14 #include "webrtc/base/checks.h"
15 15
16 namespace webrtc { 16 namespace webrtc {
17 17
18 class ThresholdCurve { 18 class ThresholdCurve {
19 public: 19 public:
20 struct Point { 20 struct Point {
21 constexpr Point(float x, float y) : x(x), y(y) {} 21 constexpr Point(float x, float y) : x(x), y(y) {}
22 float x; 22 float x;
23 float y; 23 float y;
24 }; 24 };
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 109
110 const Point a; 110 const Point a;
111 const Point b; 111 const Point b;
112 const float slope; 112 const float slope;
113 const float offset; 113 const float offset;
114 }; 114 };
115 115
116 } // namespace webrtc 116 } // namespace webrtc
117 117
118 #endif // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_UTIL_THRESHOLD_CURV E_H_ 118 #endif // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_UTIL_THRESHOLD_CURV E_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698