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

Side by Side Diff: webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h

Issue 2415543002: Set min BWE bitrate form 10kbps to 5kbps and centralize minimum bitrate. (Closed)
Patch Set: rebased. Created 4 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 #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_ 11 #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_
12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_ 12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_
13 13
14 #include "webrtc/base/optional.h" 14 #include "webrtc/base/optional.h"
15 #include "webrtc/typedefs.h" 15 #include "webrtc/typedefs.h"
16 16
17 #define BWE_MAX(a, b) ((a) > (b) ? (a) : (b)) 17 #define BWE_MAX(a, b) ((a) > (b) ? (a) : (b))
18 #define BWE_MIN(a, b) ((a) < (b) ? (a) : (b)) 18 #define BWE_MIN(a, b) ((a) < (b) ? (a) : (b))
19 19
20 namespace webrtc { 20 namespace webrtc {
21 21
22 namespace congestion_controller {
23 int GetMinBitrateBps();
24 } // namespace congestion_controller
25
22 static const int64_t kBitrateWindowMs = 1000; 26 static const int64_t kBitrateWindowMs = 1000;
23 27
24 extern const char* kBweTypeHistogram; 28 extern const char* kBweTypeHistogram;
25 29
26 enum BweNames { 30 enum BweNames {
27 kReceiverNoExtension = 0, 31 kReceiverNoExtension = 0,
28 kReceiverTOffset = 1, 32 kReceiverTOffset = 1,
29 kReceiverAbsSendTime = 2, 33 kReceiverAbsSendTime = 2,
30 kSendSideTransportSeqNum = 3, 34 kSendSideTransportSeqNum = 3,
31 kBweNamesMax = 4 35 kBweNamesMax = 4
(...skipping 17 matching lines...) Expand all
49 incoming_bitrate(incoming_bitrate), 53 incoming_bitrate(incoming_bitrate),
50 noise_var(noise_var) {} 54 noise_var(noise_var) {}
51 55
52 BandwidthUsage bw_state; 56 BandwidthUsage bw_state;
53 rtc::Optional<uint32_t> incoming_bitrate; 57 rtc::Optional<uint32_t> incoming_bitrate;
54 double noise_var; 58 double noise_var;
55 }; 59 };
56 } // namespace webrtc 60 } // namespace webrtc
57 61
58 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_ 62 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698