blob: 817caddbc4917ebbfe94c129c09ad8eb9a7a2f19 [file] [log] [blame]
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +00001/*
2 * Copyright (c) 2012 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
11#ifndef WEBRTC_VIDEO_ENGINE_VIE_RECEIVER_H_
12#define WEBRTC_VIDEO_ENGINE_VIE_RECEIVER_H_
13
14#include <list>
15
pwestin@webrtc.org065b64d2013-04-02 20:37:14 +000016#include "webrtc/engine_configurations.h"
wu@webrtc.org7fc75bb2013-08-15 23:38:54 +000017#include "webrtc/modules/rtp_rtcp/interface/receive_statistics.h"
pwestin@webrtc.org065b64d2013-04-02 20:37:14 +000018#include "webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h"
19#include "webrtc/system_wrappers/interface/scoped_ptr.h"
20#include "webrtc/typedefs.h"
wu@webrtc.orgefeb8ce2013-12-13 00:21:03 +000021#include "webrtc/video_engine/include/vie_network.h"
pwestin@webrtc.org065b64d2013-04-02 20:37:14 +000022#include "webrtc/video_engine/vie_defines.h"
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000023
24namespace webrtc {
25
26class CriticalSectionWrapper;
stefan@webrtc.orgdb74c612013-09-06 13:40:11 +000027class FecReceiver;
wu@webrtc.org2fae0d12014-05-14 16:53:51 +000028class RemoteNtpTimeEstimator;
wu@webrtc.org7fc75bb2013-08-15 23:38:54 +000029class ReceiveStatistics;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000030class RemoteBitrateEstimator;
31class RtpDump;
stefan@webrtc.org6696fba2013-05-29 12:12:51 +000032class RtpHeaderParser;
wu@webrtc.org7fc75bb2013-08-15 23:38:54 +000033class RTPPayloadRegistry;
34class RtpReceiver;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000035class RtpRtcp;
36class VideoCodingModule;
jiayl@webrtc.orgd1e7fac2014-02-10 19:12:14 +000037struct ReceiveBandwidthEstimatorStats;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000038
pwestin@webrtc.org065b64d2013-04-02 20:37:14 +000039class ViEReceiver : public RtpData {
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000040 public:
41 ViEReceiver(const int32_t channel_id, VideoCodingModule* module_vcm,
wu@webrtc.org7fc75bb2013-08-15 23:38:54 +000042 RemoteBitrateEstimator* remote_bitrate_estimator,
43 RtpFeedback* rtp_feedback);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000044 ~ViEReceiver();
45
wu@webrtc.org7fc75bb2013-08-15 23:38:54 +000046 bool SetReceiveCodec(const VideoCodec& video_codec);
47 bool RegisterPayload(const VideoCodec& video_codec);
48
stefan@webrtc.orgdb74c612013-09-06 13:40:11 +000049 void SetNackStatus(bool enable, int max_nack_reordering_threshold);
stefan@webrtc.org903e7462014-06-05 08:25:29 +000050 void SetRtxPayloadType(int payload_type);
51 void SetRtxSsrc(uint32_t ssrc);
wu@webrtc.org7fc75bb2013-08-15 23:38:54 +000052
53 uint32_t GetRemoteSsrc() const;
54 int GetCsrcs(uint32_t* csrcs) const;
55
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000056 void SetRtpRtcpModule(RtpRtcp* module);
57
wu@webrtc.org7fc75bb2013-08-15 23:38:54 +000058 RtpReceiver* GetRtpReceiver() const;
59
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000060 void RegisterSimulcastRtpRtcpModules(const std::list<RtpRtcp*>& rtp_modules);
61
stefan@webrtc.org4e5f9832013-05-29 13:28:21 +000062 bool SetReceiveTimestampOffsetStatus(bool enable, int id);
63 bool SetReceiveAbsoluteSendTimeStatus(bool enable, int id);
stefan@webrtc.org6696fba2013-05-29 12:12:51 +000064
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000065 void StartReceive();
66 void StopReceive();
67
68 int StartRTPDump(const char file_nameUTF8[1024]);
69 int StopRTPDump();
70
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000071 // Receives packets from external transport.
wu@webrtc.orgefeb8ce2013-12-13 00:21:03 +000072 int ReceivedRTPPacket(const void* rtp_packet, int rtp_packet_length,
73 const PacketTime& packet_time);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000074 int ReceivedRTCPPacket(const void* rtcp_packet, int rtcp_packet_length);
wu@webrtc.org7fc75bb2013-08-15 23:38:54 +000075 virtual bool OnRecoveredPacket(const uint8_t* packet,
76 int packet_length) OVERRIDE;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000077
78 // Implements RtpData.
pbos@webrtc.org67879bc2013-04-09 13:41:51 +000079 virtual int32_t OnReceivedPayloadData(
80 const uint8_t* payload_data,
81 const uint16_t payload_size,
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000082 const WebRtcRTPHeader* rtp_header);
83
jiayl@webrtc.orgd1e7fac2014-02-10 19:12:14 +000084 void GetReceiveBandwidthEstimatorStats(
85 ReceiveBandwidthEstimatorStats* output) const;
86
wu@webrtc.org7fc75bb2013-08-15 23:38:54 +000087 ReceiveStatistics* GetReceiveStatistics() const;
88
solenberg@webrtc.org2d3624c2014-03-24 20:28:11 +000089 void ReceivedBWEPacket(int64_t arrival_time_ms, int payload_size,
90 const RTPHeader& header);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000091 private:
solenberg@webrtc.org800136d2014-02-11 15:27:49 +000092 int InsertRTPPacket(const uint8_t* rtp_packet, int rtp_packet_length,
wu@webrtc.orgefeb8ce2013-12-13 00:21:03 +000093 const PacketTime& packet_time);
sprang@webrtc.org7d99cd42014-01-23 10:00:39 +000094 bool ReceivePacket(const uint8_t* packet,
95 int packet_length,
96 const RTPHeader& header,
97 bool in_order);
stefan@webrtc.orgdb74c612013-09-06 13:40:11 +000098 // Parses and handles for instance RTX and RED headers.
99 // This function assumes that it's being called from only one thread.
100 bool ParseAndHandleEncapsulatingHeader(const uint8_t* packet,
101 int packet_length,
102 const RTPHeader& header);
solenberg@webrtc.org800136d2014-02-11 15:27:49 +0000103 int InsertRTCPPacket(const uint8_t* rtcp_packet, int rtcp_packet_length);
stefan@webrtc.orgdb74c612013-09-06 13:40:11 +0000104 bool IsPacketInOrder(const RTPHeader& header) const;
stefan@webrtc.org7e97e4c2013-11-08 15:18:52 +0000105 bool IsPacketRetransmitted(const RTPHeader& header, bool in_order) const;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +0000106
107 scoped_ptr<CriticalSectionWrapper> receive_cs_;
stefan@webrtc.org6696fba2013-05-29 12:12:51 +0000108 scoped_ptr<RtpHeaderParser> rtp_header_parser_;
wu@webrtc.org7fc75bb2013-08-15 23:38:54 +0000109 scoped_ptr<RTPPayloadRegistry> rtp_payload_registry_;
110 scoped_ptr<RtpReceiver> rtp_receiver_;
111 scoped_ptr<ReceiveStatistics> rtp_receive_statistics_;
stefan@webrtc.orgdb74c612013-09-06 13:40:11 +0000112 scoped_ptr<FecReceiver> fec_receiver_;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +0000113 RtpRtcp* rtp_rtcp_;
114 std::list<RtpRtcp*> rtp_rtcp_simulcast_;
115 VideoCodingModule* vcm_;
116 RemoteBitrateEstimator* remote_bitrate_estimator_;
117
wu@webrtc.org2fae0d12014-05-14 16:53:51 +0000118 scoped_ptr<RemoteNtpTimeEstimator> ntp_estimator_;
wu@webrtc.org093fc0b2014-04-24 22:10:24 +0000119
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +0000120 RtpDump* rtp_dump_;
121 bool receiving_;
stefan@webrtc.orgdb74c612013-09-06 13:40:11 +0000122 uint8_t restored_packet_[kViEMaxMtu];
123 bool restored_packet_in_use_;
solenberg@webrtc.org2d3624c2014-03-24 20:28:11 +0000124 bool receiving_ast_enabled_;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +0000125};
126
127} // namespace webrt
128
129#endif // WEBRTC_VIDEO_ENGINE_VIE_RECEIVER_H_