blob: c71467b833647c287949aad477c7529e4bc24397 [file] [log] [blame]
andrew@webrtc.orga7b57da2012-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.orge561f8c2013-04-02 20:37:14 +000016#include "webrtc/engine_configurations.h"
wu@webrtc.org55055d22013-08-15 23:38:54 +000017#include "webrtc/modules/rtp_rtcp/interface/receive_statistics.h"
pwestin@webrtc.orge561f8c2013-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"
21#include "webrtc/video_engine/vie_defines.h"
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000022
23namespace webrtc {
24
25class CriticalSectionWrapper;
26class Encryption;
stefan@webrtc.org5632a642013-09-06 13:40:11 +000027class FecReceiver;
wu@webrtc.org55055d22013-08-15 23:38:54 +000028class ReceiveStatistics;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000029class RemoteBitrateEstimator;
30class RtpDump;
stefan@webrtc.org028ec722013-05-29 12:12:51 +000031class RtpHeaderParser;
wu@webrtc.org55055d22013-08-15 23:38:54 +000032class RTPPayloadRegistry;
33class RtpReceiver;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000034class RtpRtcp;
35class VideoCodingModule;
36
pwestin@webrtc.orge561f8c2013-04-02 20:37:14 +000037class ViEReceiver : public RtpData {
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000038 public:
39 ViEReceiver(const int32_t channel_id, VideoCodingModule* module_vcm,
wu@webrtc.org55055d22013-08-15 23:38:54 +000040 RemoteBitrateEstimator* remote_bitrate_estimator,
41 RtpFeedback* rtp_feedback);
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000042 ~ViEReceiver();
43
wu@webrtc.org55055d22013-08-15 23:38:54 +000044 bool SetReceiveCodec(const VideoCodec& video_codec);
45 bool RegisterPayload(const VideoCodec& video_codec);
46
stefan@webrtc.org5632a642013-09-06 13:40:11 +000047 void SetNackStatus(bool enable, int max_nack_reordering_threshold);
wu@webrtc.org55055d22013-08-15 23:38:54 +000048 void SetRtxStatus(bool enable, uint32_t ssrc);
49 void SetRtxPayloadType(uint32_t payload_type);
50
51 uint32_t GetRemoteSsrc() const;
52 int GetCsrcs(uint32_t* csrcs) const;
53
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000054 int RegisterExternalDecryption(Encryption* decryption);
55 int DeregisterExternalDecryption();
56
57 void SetRtpRtcpModule(RtpRtcp* module);
58
wu@webrtc.org55055d22013-08-15 23:38:54 +000059 RtpReceiver* GetRtpReceiver() const;
60
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000061 void RegisterSimulcastRtpRtcpModules(const std::list<RtpRtcp*>& rtp_modules);
62
stefan@webrtc.org86874532013-05-29 13:28:21 +000063 bool SetReceiveTimestampOffsetStatus(bool enable, int id);
64 bool SetReceiveAbsoluteSendTimeStatus(bool enable, int id);
stefan@webrtc.org028ec722013-05-29 12:12:51 +000065
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000066 void StartReceive();
67 void StopReceive();
68
69 int StartRTPDump(const char file_nameUTF8[1024]);
70 int StopRTPDump();
71
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000072 // Receives packets from external transport.
73 int ReceivedRTPPacket(const void* rtp_packet, int rtp_packet_length);
74 int ReceivedRTCPPacket(const void* rtcp_packet, int rtcp_packet_length);
wu@webrtc.org55055d22013-08-15 23:38:54 +000075 virtual bool OnRecoveredPacket(const uint8_t* packet,
76 int packet_length) OVERRIDE;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000077
78 // Implements RtpData.
pbos@webrtc.org2a5d2292013-04-09 13:41:51 +000079 virtual int32_t OnReceivedPayloadData(
80 const uint8_t* payload_data,
81 const uint16_t payload_size,
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000082 const WebRtcRTPHeader* rtp_header);
83
mflodman@webrtc.org89c3de32013-02-06 17:46:39 +000084 void EstimatedReceiveBandwidth(unsigned int* available_bandwidth) const;
stefan@webrtc.org34421582013-02-01 14:33:42 +000085
wu@webrtc.org55055d22013-08-15 23:38:54 +000086 ReceiveStatistics* GetReceiveStatistics() const;
87
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000088 private:
pbos@webrtc.org2a5d2292013-04-09 13:41:51 +000089 int InsertRTPPacket(const int8_t* rtp_packet, int rtp_packet_length);
stefan@webrtc.org5632a642013-09-06 13:40:11 +000090 bool ReceivePacket(const uint8_t* packet, int packet_length,
91 const RTPHeader& header, bool in_order);
92 // Parses and handles for instance RTX and RED headers.
93 // This function assumes that it's being called from only one thread.
94 bool ParseAndHandleEncapsulatingHeader(const uint8_t* packet,
95 int packet_length,
96 const RTPHeader& header);
pbos@webrtc.org2a5d2292013-04-09 13:41:51 +000097 int InsertRTCPPacket(const int8_t* rtcp_packet, int rtcp_packet_length);
stefan@webrtc.org5632a642013-09-06 13:40:11 +000098 bool IsPacketInOrder(const RTPHeader& header) const;
stefan@webrtc.orge9274ae2013-11-08 15:18:52 +000099 bool IsPacketRetransmitted(const RTPHeader& header, bool in_order) const;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +0000100
101 scoped_ptr<CriticalSectionWrapper> receive_cs_;
102 const int32_t channel_id_;
stefan@webrtc.org028ec722013-05-29 12:12:51 +0000103 scoped_ptr<RtpHeaderParser> rtp_header_parser_;
wu@webrtc.org55055d22013-08-15 23:38:54 +0000104 scoped_ptr<RTPPayloadRegistry> rtp_payload_registry_;
105 scoped_ptr<RtpReceiver> rtp_receiver_;
106 scoped_ptr<ReceiveStatistics> rtp_receive_statistics_;
stefan@webrtc.org5632a642013-09-06 13:40:11 +0000107 scoped_ptr<FecReceiver> fec_receiver_;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +0000108 RtpRtcp* rtp_rtcp_;
109 std::list<RtpRtcp*> rtp_rtcp_simulcast_;
110 VideoCodingModule* vcm_;
111 RemoteBitrateEstimator* remote_bitrate_estimator_;
112
113 Encryption* external_decryption_;
pbos@webrtc.org2a5d2292013-04-09 13:41:51 +0000114 uint8_t* decryption_buffer_;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +0000115 RtpDump* rtp_dump_;
116 bool receiving_;
stefan@webrtc.org5632a642013-09-06 13:40:11 +0000117 uint8_t restored_packet_[kViEMaxMtu];
118 bool restored_packet_in_use_;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +0000119};
120
121} // namespace webrt
122
123#endif // WEBRTC_VIDEO_ENGINE_VIE_RECEIVER_H_