| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |