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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 int width = 0; | 80 int width = 0; |
81 int height = 0; | 81 int height = 0; |
82 | 82 |
83 int sync_offset_ms = std::numeric_limits<int>::max(); | 83 int sync_offset_ms = std::numeric_limits<int>::max(); |
84 | 84 |
85 uint32_t ssrc = 0; | 85 uint32_t ssrc = 0; |
86 std::string c_name; | 86 std::string c_name; |
87 StreamDataCounters rtp_stats; | 87 StreamDataCounters rtp_stats; |
88 RtcpPacketTypeCounter rtcp_packet_type_counts; | 88 RtcpPacketTypeCounter rtcp_packet_type_counts; |
89 RtcpStatistics rtcp_stats; | 89 RtcpStatistics rtcp_stats; |
| 90 |
| 91 TimingFrameInfo timing_frame_info; |
90 }; | 92 }; |
91 | 93 |
92 struct Config { | 94 struct Config { |
93 private: | 95 private: |
94 // Access to the copy constructor is private to force use of the Copy() | 96 // Access to the copy constructor is private to force use of the Copy() |
95 // method for those exceptional cases where we do use it. | 97 // method for those exceptional cases where we do use it. |
96 Config(const Config&) = default; | 98 Config(const Config&) = default; |
97 | 99 |
98 public: | 100 public: |
99 Config() = delete; | 101 Config() = delete; |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 EnableEncodedFrameRecording(rtc::kInvalidPlatformFileValue, 0); | 220 EnableEncodedFrameRecording(rtc::kInvalidPlatformFileValue, 0); |
219 } | 221 } |
220 | 222 |
221 protected: | 223 protected: |
222 virtual ~VideoReceiveStream() {} | 224 virtual ~VideoReceiveStream() {} |
223 }; | 225 }; |
224 | 226 |
225 } // namespace webrtc | 227 } // namespace webrtc |
226 | 228 |
227 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ | 229 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ |
OLD | NEW |