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

Side by Side Diff: webrtc/config.h

Issue 2007743003: Add sender controlled playout delay limits (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@cleanup_rtp_hdr_extensions
Patch Set: Rename OnReceivedRtcpReport to OnReceivedRtcpReportBlocks Created 4 years, 6 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) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 // details: 80 // details:
81 // http://www.etsi.org/deliver/etsi_ts/126100_126199/126114/12.07.00_60/ts_126 114v120700p.pdf 81 // http://www.etsi.org/deliver/etsi_ts/126100_126199/126114/12.07.00_60/ts_126 114v120700p.pdf
82 static const char* kVideoRotationUri; 82 static const char* kVideoRotationUri;
83 static const int kVideoRotationDefaultId; 83 static const int kVideoRotationDefaultId;
84 84
85 // Header extension for transport sequence number, see url for details: 85 // Header extension for transport sequence number, see url for details:
86 // http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions 86 // http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions
87 static const char* kTransportSequenceNumberUri; 87 static const char* kTransportSequenceNumberUri;
88 static const int kTransportSequenceNumberDefaultId; 88 static const int kTransportSequenceNumberDefaultId;
89 89
90 static const char* kPlayoutDelayUri;
91 static const int kPlayoutDelayDefaultId;
92
90 std::string uri; 93 std::string uri;
91 int id; 94 int id;
92 }; 95 };
93 96
94 struct VideoStream { 97 struct VideoStream {
95 VideoStream(); 98 VideoStream();
96 ~VideoStream(); 99 ~VideoStream();
97 std::string ToString() const; 100 std::string ToString() const;
98 101
99 size_t width; 102 size_t width;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 struct VoicePacing { 169 struct VoicePacing {
167 VoicePacing() : enabled(false) {} 170 VoicePacing() : enabled(false) {}
168 explicit VoicePacing(bool value) : enabled(value) {} 171 explicit VoicePacing(bool value) : enabled(value) {}
169 static const ConfigOptionID identifier = ConfigOptionID::kVoicePacing; 172 static const ConfigOptionID identifier = ConfigOptionID::kVoicePacing;
170 bool enabled; 173 bool enabled;
171 }; 174 };
172 175
173 } // namespace webrtc 176 } // namespace webrtc
174 177
175 #endif // WEBRTC_CONFIG_H_ 178 #endif // WEBRTC_CONFIG_H_
OLDNEW
« no previous file with comments | « webrtc/common_types.cc ('k') | webrtc/config.cc » ('j') | webrtc/modules/modules.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698