| Index: voice_engine/voe_rtp_rtcp_impl.h
|
| diff --git a/voice_engine/voe_rtp_rtcp_impl.h b/voice_engine/voe_rtp_rtcp_impl.h
|
| deleted file mode 100644
|
| index b640bdfbd39b65028be26c67ffb12e94d7e9b858..0000000000000000000000000000000000000000
|
| --- a/voice_engine/voe_rtp_rtcp_impl.h
|
| +++ /dev/null
|
| @@ -1,55 +0,0 @@
|
| -/*
|
| - * 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 VOICE_ENGINE_VOE_RTP_RTCP_IMPL_H_
|
| -#define VOICE_ENGINE_VOE_RTP_RTCP_IMPL_H_
|
| -
|
| -#include "voice_engine/include/voe_rtp_rtcp.h"
|
| -
|
| -#include "voice_engine/shared_data.h"
|
| -
|
| -namespace webrtc {
|
| -
|
| -class VoERTP_RTCPImpl : public VoERTP_RTCP {
|
| - public:
|
| - // RTCP
|
| - int SetRTCPStatus(int channel, bool enable) override;
|
| -
|
| - int GetRTCPStatus(int channel, bool& enabled) override;
|
| -
|
| - int SetRTCP_CNAME(int channel, const char cName[256]) override;
|
| -
|
| - int GetRemoteRTCP_CNAME(int channel, char cName[256]) override;
|
| -
|
| - // SSRC
|
| - int SetLocalSSRC(int channel, unsigned int ssrc) override;
|
| -
|
| - int GetLocalSSRC(int channel, unsigned int& ssrc) override;
|
| -
|
| - int GetRemoteSSRC(int channel, unsigned int& ssrc) override;
|
| -
|
| - // RTP Header Extension for Client-to-Mixer Audio Level Indication
|
| - int SetSendAudioLevelIndicationStatus(int channel,
|
| - bool enable,
|
| - unsigned char id) override;
|
| -
|
| - int GetRTCPStatistics(int channel, CallStatistics& stats) override;
|
| -
|
| - protected:
|
| - VoERTP_RTCPImpl(voe::SharedData* shared);
|
| - ~VoERTP_RTCPImpl() override;
|
| -
|
| - private:
|
| - voe::SharedData* _shared;
|
| -};
|
| -
|
| -} // namespace webrtc
|
| -
|
| -#endif // VOICE_ENGINE_VOE_RTP_RTCP_IMPL_H_
|
|
|