OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
58 RtcpMode rtcp_mode = RtcpMode::kCompound; | 58 RtcpMode rtcp_mode = RtcpMode::kCompound; |
59 | 59 |
60 // Transport for outgoing RTCP packets. | 60 // Transport for outgoing RTCP packets. |
61 Transport* rtcp_send_transport = nullptr; | 61 Transport* rtcp_send_transport = nullptr; |
62 | 62 |
63 // |transport_cc| is true whenever the send-side BWE RTCP feedback message | 63 // |transport_cc| is true whenever the send-side BWE RTCP feedback message |
64 // has been negotiated. This is a prerequisite for enabling send-side BWE. | 64 // has been negotiated. This is a prerequisite for enabling send-side BWE. |
65 bool transport_cc = false; | 65 bool transport_cc = false; |
66 | 66 |
67 // RTP header extensions that have been negotiated for this track. | 67 // RTP header extensions that have been negotiated for this track. |
68 std::vector<RtpExtension> extensions; | 68 std::vector<RtpExtension> rtp_header_extensions; |
brandtr
2016/12/12 13:51:07
Prior CLs required that this be named 'extensions'
| |
69 }; | 69 }; |
70 | 70 |
71 // Starts stream activity. | 71 // Starts stream activity. |
72 // When a stream is active, it can receive and process packets. | 72 // When a stream is active, it can receive and process packets. |
73 virtual void Start() = 0; | 73 virtual void Start() = 0; |
74 // Stops stream activity. | 74 // Stops stream activity. |
75 // When a stream is stopped, it can't receive nor process packets. | 75 // When a stream is stopped, it can't receive nor process packets. |
76 virtual void Stop() = 0; | 76 virtual void Stop() = 0; |
77 | 77 |
78 virtual Stats GetStats() const = 0; | 78 virtual Stats GetStats() const = 0; |
79 | 79 |
80 protected: | 80 protected: |
81 virtual ~FlexfecReceiveStream() = default; | 81 virtual ~FlexfecReceiveStream() = default; |
82 }; | 82 }; |
83 | 83 |
84 } // namespace webrtc | 84 } // namespace webrtc |
85 | 85 |
86 #endif // WEBRTC_API_CALL_FLEXFEC_RECEIVE_STREAM_H_ | 86 #endif // WEBRTC_API_CALL_FLEXFEC_RECEIVE_STREAM_H_ |
OLD | NEW |