1 /* 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_NETWORK_IMPL_H_ 12 #define WEBRTC_VIDEO_ENGINE_VIE_NETWORK_IMPL_H_ 13 14 #include "webrtc/typedefs.h" 15 #include "webrtc/video_engine/include/vie_network.h" 16 #include "webrtc/video_engine/vie_ref_count.h" 17 18 namespace webrtc { 19 20 class ViESharedData; 21 22 class ViENetworkImpl 23 : public ViENetwork, 24 public ViERefCount { 25 public: 26 // Implements ViENetwork. 27 virtual int Release(); 28 virtual void SetNetworkTransmissionState(const int video_channel, 29 const bool is_transmitting); 30 virtual int RegisterSendTransport(const int video_channel, 31 Transport& transport); 32 virtual int DeregisterSendTransport(const int video_channel); 33 virtual int ReceivedRTPPacket(const int video_channel, 34 const void* data, 35 const int length, 36 const PacketTime& packet_time); 37 virtual int ReceivedRTCPPacket(const int video_channel, 38 const void* data, 39 const int length); 40 virtual int SetMTU(int video_channel, unsigned int mtu); 41 42 virtual int ReceivedBWEPacket(const int video_channel, 43 int64_t arrival_time_ms, int payload_size, const RTPHeader& header); 44 45 virtual bool SetBandwidthEstimationConfig(int video_channel, 46 const webrtc::Config& config); 47 48 protected: 49 explicit ViENetworkImpl(ViESharedData* shared_data); 50 virtual ~ViENetworkImpl(); 51 52 private: 53 ViESharedData* shared_data_; 54 }; 55 56 } // namespace webrtc 57 58 #endif // WEBRTC_VIDEO_ENGINE_VIE_NETWORK_IMPL_H_ 59