Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / webrtc / video_engine / vie_network_impl.h
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() OVERRIDE;
28   virtual void SetNetworkTransmissionState(const int video_channel,
29                                            const bool is_transmitting) OVERRIDE;
30   virtual int RegisterSendTransport(const int video_channel,
31                                     Transport& transport) OVERRIDE;
32   virtual int DeregisterSendTransport(const int video_channel) OVERRIDE;
33   virtual int ReceivedRTPPacket(const int video_channel,
34                                 const void* data,
35                                 const int length,
36                                 const PacketTime& packet_time) OVERRIDE;
37   virtual int ReceivedRTCPPacket(const int video_channel,
38                                  const void* data,
39                                  const int length) OVERRIDE;
40   virtual int SetMTU(int video_channel, unsigned int mtu) OVERRIDE;
41
42   virtual int ReceivedBWEPacket(const int video_channel,
43                                 int64_t arrival_time_ms,
44                                 int payload_size,
45                                 const RTPHeader& header) OVERRIDE;
46
47   virtual bool SetBandwidthEstimationConfig(
48       int video_channel,
49       const webrtc::Config& config) OVERRIDE;
50
51  protected:
52   explicit ViENetworkImpl(ViESharedData* shared_data);
53   virtual ~ViENetworkImpl();
54
55  private:
56   ViESharedData* shared_data_;
57 };
58
59 }  // namespace webrtc
60
61 #endif  // WEBRTC_VIDEO_ENGINE_VIE_NETWORK_IMPL_H_