
- In real-time mode encoding will be paused until the network is back up. - In buffering mode the encoder will keep encoding, and packets will be buffered at the sender. When the buffer grows above the target delay encoding will be paused. - Fixes a couple of issues related to pacing which was found with the new test. - Introduces different max bitrates for pacing and for encoding. This allows the pacer to faster get rid of the queue after a network down event. (Work based on issue 1237004) BUG=1524 TESTS=trybots,vie_auto_test Review URL: https://webrtc-codereview.appspot.com/1258004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3730 4adac7df-926f-26a2-2b94-8c16560cd09d
117 lines
5.0 KiB
C++
117 lines
5.0 KiB
C++
/*
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef WEBRTC_VIDEO_ENGINE_VIE_NETWORK_IMPL_H_
|
|
#define WEBRTC_VIDEO_ENGINE_VIE_NETWORK_IMPL_H_
|
|
|
|
#include "typedefs.h" // NOLINT
|
|
#include "video_engine/include/vie_network.h"
|
|
#include "video_engine/vie_ref_count.h"
|
|
|
|
namespace webrtc {
|
|
|
|
class ViESharedData;
|
|
|
|
class ViENetworkImpl
|
|
: public ViENetwork,
|
|
public ViERefCount {
|
|
public:
|
|
// Implements ViENetwork.
|
|
virtual int Release();
|
|
virtual void SetNetworkTransmissionState(const int video_channel,
|
|
const bool is_transmitting);
|
|
virtual int SetLocalReceiver(const int video_channel,
|
|
const uint16_t rtp_port,
|
|
const uint16_t rtcp_port,
|
|
const char* ip_address);
|
|
virtual int GetLocalReceiver(const int video_channel,
|
|
uint16_t& rtp_port,
|
|
uint16_t& rtcp_port,
|
|
char* ip_address);
|
|
virtual int SetSendDestination(const int video_channel,
|
|
const char* ip_address,
|
|
const uint16_t rtp_port,
|
|
const uint16_t rtcp_port,
|
|
const uint16_t source_rtp_port,
|
|
const uint16_t source_rtcp_port);
|
|
virtual int GetSendDestination(const int video_channel,
|
|
char* ip_address,
|
|
uint16_t& rtp_port,
|
|
uint16_t& rtcp_port,
|
|
uint16_t& source_rtp_port,
|
|
uint16_t& source_rtcp_port);
|
|
virtual int RegisterSendTransport(const int video_channel,
|
|
Transport& transport);
|
|
virtual int DeregisterSendTransport(const int video_channel);
|
|
virtual int ReceivedRTPPacket(const int video_channel,
|
|
const void* data,
|
|
const int length);
|
|
virtual int ReceivedRTCPPacket(const int video_channel,
|
|
const void* data,
|
|
const int length);
|
|
virtual int GetSourceInfo(const int video_channel,
|
|
uint16_t& rtp_port,
|
|
uint16_t& rtcp_port,
|
|
char* ip_address,
|
|
unsigned int ip_address_length);
|
|
virtual int GetLocalIP(char ip_address[64], bool ipv6);
|
|
virtual int EnableIPv6(int video_channel);
|
|
virtual bool IsIPv6Enabled(int video_channel);
|
|
virtual int SetSourceFilter(const int video_channel,
|
|
const uint16_t rtp_port,
|
|
const uint16_t rtcp_port,
|
|
const char* ip_address);
|
|
virtual int GetSourceFilter(const int video_channel,
|
|
uint16_t& rtp_port,
|
|
uint16_t& rtcp_port,
|
|
char* ip_address);
|
|
virtual int SetSendToS(const int video_channel,
|
|
const int DSCP,
|
|
const bool use_set_sockOpt);
|
|
virtual int GetSendToS(const int video_channel,
|
|
int& DSCP,
|
|
bool& use_set_sockOpt);
|
|
virtual int SetSendGQoS(const int video_channel,
|
|
const bool enable,
|
|
const int service_type,
|
|
const int overrideDSCP);
|
|
virtual int GetSendGQoS(const int video_channel,
|
|
bool& enabled,
|
|
int& service_type,
|
|
int& overrideDSCP);
|
|
virtual int SetMTU(int video_channel, unsigned int mtu);
|
|
virtual int SetPacketTimeoutNotification(const int video_channel,
|
|
bool enable,
|
|
int timeout_seconds);
|
|
virtual int RegisterObserver(const int video_channel,
|
|
ViENetworkObserver& observer);
|
|
virtual int DeregisterObserver(const int video_channel);
|
|
virtual int SetPeriodicDeadOrAliveStatus(
|
|
const int video_channel,
|
|
const bool enable,
|
|
const unsigned int sample_time_seconds);
|
|
virtual int SendUDPPacket(const int video_channel,
|
|
const void* data,
|
|
const unsigned int length,
|
|
int& transmitted_bytes,
|
|
bool use_rtcp_socket);
|
|
|
|
protected:
|
|
explicit ViENetworkImpl(ViESharedData* shared_data);
|
|
virtual ~ViENetworkImpl();
|
|
|
|
private:
|
|
ViESharedData* shared_data_;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // WEBRTC_VIDEO_ENGINE_VIE_NETWORK_IMPL_H_
|