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

Side by Side Diff: call/flexfec_receive_stream.h

Issue 2826263004: Move responsibility for RTP header extensions on video receive. (Closed)
Patch Set: Crude rebase. Created 3 years, 2 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 | « call/call.cc ('k') | call/flexfec_receive_stream_impl.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) 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 65
66 // What RTCP mode to use in the reports. 66 // What RTCP mode to use in the reports.
67 RtcpMode rtcp_mode = RtcpMode::kCompound; 67 RtcpMode rtcp_mode = RtcpMode::kCompound;
68 68
69 // Transport for outgoing RTCP packets. 69 // Transport for outgoing RTCP packets.
70 Transport* rtcp_send_transport = nullptr; 70 Transport* rtcp_send_transport = nullptr;
71 71
72 // |transport_cc| is true whenever the send-side BWE RTCP feedback message 72 // |transport_cc| is true whenever the send-side BWE RTCP feedback message
73 // has been negotiated. This is a prerequisite for enabling send-side BWE. 73 // has been negotiated. This is a prerequisite for enabling send-side BWE.
74 bool transport_cc = false; 74 bool transport_cc = false;
75
76 // RTP header extensions that have been negotiated for this track.
77 std::vector<RtpExtension> rtp_header_extensions;
78 }; 75 };
79 76
80 virtual Stats GetStats() const = 0; 77 virtual Stats GetStats() const = 0;
81 78
82 virtual const Config& GetConfig() const = 0; 79 virtual const Config& GetConfig() const = 0;
83 }; 80 };
84 81
85 } // namespace webrtc 82 } // namespace webrtc
86 83
87 #endif // CALL_FLEXFEC_RECEIVE_STREAM_H_ 84 #endif // CALL_FLEXFEC_RECEIVE_STREAM_H_
OLDNEW
« no previous file with comments | « call/call.cc ('k') | call/flexfec_receive_stream_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698