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

Side by Side Diff: webrtc/config.h

Issue 1247293002: Add support for transport wide sequence numbers (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase, again Created 5 years, 4 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
« no previous file with comments | « no previous file | webrtc/config.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) 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 struct RtpExtension { 53 struct RtpExtension {
54 RtpExtension(const std::string& name, int id) : name(name), id(id) {} 54 RtpExtension(const std::string& name, int id) : name(name), id(id) {}
55 std::string ToString() const; 55 std::string ToString() const;
56 static bool IsSupportedForAudio(const std::string& name); 56 static bool IsSupportedForAudio(const std::string& name);
57 static bool IsSupportedForVideo(const std::string& name); 57 static bool IsSupportedForVideo(const std::string& name);
58 58
59 static const char* kTOffset; 59 static const char* kTOffset;
60 static const char* kAbsSendTime; 60 static const char* kAbsSendTime;
61 static const char* kVideoRotation; 61 static const char* kVideoRotation;
62 static const char* kAudioLevel; 62 static const char* kAudioLevel;
63 static const char* kTransportSequenceNumber;
63 std::string name; 64 std::string name;
64 int id; 65 int id;
65 }; 66 };
66 67
67 struct VideoStream { 68 struct VideoStream {
68 VideoStream(); 69 VideoStream();
69 ~VideoStream(); 70 ~VideoStream();
70 std::string ToString() const; 71 std::string ToString() const;
71 72
72 size_t width; 73 size_t width;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 130
130 struct NetEqFastAccelerate { 131 struct NetEqFastAccelerate {
131 NetEqFastAccelerate() : enabled(false) {} 132 NetEqFastAccelerate() : enabled(false) {}
132 explicit NetEqFastAccelerate(bool value) : enabled(value) {} 133 explicit NetEqFastAccelerate(bool value) : enabled(value) {}
133 bool enabled; 134 bool enabled;
134 }; 135 };
135 136
136 } // namespace webrtc 137 } // namespace webrtc
137 138
138 #endif // WEBRTC_CONFIG_H_ 139 #endif // WEBRTC_CONFIG_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698