OLD | NEW |
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 |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 class FecReceiver; | 26 class FecReceiver; |
27 class RemoteNtpTimeEstimator; | 27 class RemoteNtpTimeEstimator; |
28 class ReceiveStatistics; | 28 class ReceiveStatistics; |
29 class RemoteBitrateEstimator; | 29 class RemoteBitrateEstimator; |
30 class RtpHeaderParser; | 30 class RtpHeaderParser; |
31 class RTPPayloadRegistry; | 31 class RTPPayloadRegistry; |
32 class RtpReceiver; | 32 class RtpReceiver; |
33 class RtpRtcp; | 33 class RtpRtcp; |
34 class VideoCodingModule; | 34 class VideoCodingModule; |
35 struct ReceiveBandwidthEstimatorStats; | |
36 | 35 |
37 class ViEReceiver : public RtpData { | 36 class ViEReceiver : public RtpData { |
38 public: | 37 public: |
39 ViEReceiver(VideoCodingModule* module_vcm, | 38 ViEReceiver(VideoCodingModule* module_vcm, |
40 RemoteBitrateEstimator* remote_bitrate_estimator, | 39 RemoteBitrateEstimator* remote_bitrate_estimator, |
41 RtpFeedback* rtp_feedback); | 40 RtpFeedback* rtp_feedback); |
42 ~ViEReceiver(); | 41 ~ViEReceiver(); |
43 | 42 |
44 bool SetReceiveCodec(const VideoCodec& video_codec); | 43 bool SetReceiveCodec(const VideoCodec& video_codec); |
45 bool RegisterPayload(const VideoCodec& video_codec); | 44 bool RegisterPayload(const VideoCodec& video_codec); |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 bool restored_packet_in_use_; | 119 bool restored_packet_in_use_; |
121 bool receiving_ast_enabled_; | 120 bool receiving_ast_enabled_; |
122 bool receiving_cvo_enabled_; | 121 bool receiving_cvo_enabled_; |
123 bool receiving_tsn_enabled_; | 122 bool receiving_tsn_enabled_; |
124 int64_t last_packet_log_ms_; | 123 int64_t last_packet_log_ms_; |
125 }; | 124 }; |
126 | 125 |
127 } // namespace webrtc | 126 } // namespace webrtc |
128 | 127 |
129 #endif // WEBRTC_VIDEO_VIE_RECEIVER_H_ | 128 #endif // WEBRTC_VIDEO_VIE_RECEIVER_H_ |
OLD | NEW |