nisse | eed52bf | 2017-05-19 13:15:19 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 11 | #ifndef CALL_RTX_RECEIVE_STREAM_H_ |
| 12 | #define CALL_RTX_RECEIVE_STREAM_H_ |
nisse | eed52bf | 2017-05-19 13:15:19 | [diff] [blame] | 13 | |
| 14 | #include <map> |
| 15 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 16 | #include "call/rtp_packet_sink_interface.h" |
nisse | eed52bf | 2017-05-19 13:15:19 | [diff] [blame] | 17 | |
| 18 | namespace webrtc { |
| 19 | |
nisse | ca5706d | 2017-09-11 09:32:16 | [diff] [blame] | 20 | class ReceiveStatistics; |
| 21 | |
nisse | 3864499 | 2017-08-30 11:16:40 | [diff] [blame] | 22 | // This class is responsible for RTX decapsulation. The resulting media packets |
| 23 | // are passed on to a sink representing the associated media stream. |
nisse | eed52bf | 2017-05-19 13:15:19 | [diff] [blame] | 24 | class RtxReceiveStream : public RtpPacketSinkInterface { |
| 25 | public: |
| 26 | RtxReceiveStream(RtpPacketSinkInterface* media_sink, |
nisse | 3864499 | 2017-08-30 11:16:40 | [diff] [blame] | 27 | std::map<int, int> associated_payload_types, |
nisse | ca5706d | 2017-09-11 09:32:16 | [diff] [blame] | 28 | uint32_t media_ssrc, |
| 29 | // TODO(nisse): Delete this argument, and |
| 30 | // corresponding member variable, by moving the |
| 31 | // responsibility for rtcp feedback to |
| 32 | // RtpStreamReceiverController. |
| 33 | ReceiveStatistics* rtp_receive_statistics = nullptr); |
nisse | 76e62b0 | 2017-05-31 09:24:52 | [diff] [blame] | 34 | ~RtxReceiveStream() override; |
nisse | eed52bf | 2017-05-19 13:15:19 | [diff] [blame] | 35 | // RtpPacketSinkInterface. |
| 36 | void OnRtpPacket(const RtpPacketReceived& packet) override; |
| 37 | |
| 38 | private: |
| 39 | RtpPacketSinkInterface* const media_sink_; |
nisse | 3864499 | 2017-08-30 11:16:40 | [diff] [blame] | 40 | // Map from rtx payload type -> media payload type. |
| 41 | const std::map<int, int> associated_payload_types_; |
nisse | eed52bf | 2017-05-19 13:15:19 | [diff] [blame] | 42 | // TODO(nisse): Ultimately, the media receive stream shouldn't care about the |
| 43 | // ssrc, and we should delete this. |
| 44 | const uint32_t media_ssrc_; |
nisse | ca5706d | 2017-09-11 09:32:16 | [diff] [blame] | 45 | ReceiveStatistics* const rtp_receive_statistics_; |
nisse | eed52bf | 2017-05-19 13:15:19 | [diff] [blame] | 46 | }; |
| 47 | |
| 48 | } // namespace webrtc |
| 49 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 50 | #endif // CALL_RTX_RECEIVE_STREAM_H_ |