| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 unsigned int& averageJitterMs, | 64 unsigned int& averageJitterMs, |
| 65 unsigned int& maxJitterMs, | 65 unsigned int& maxJitterMs, |
| 66 unsigned int& discardedPackets) override; | 66 unsigned int& discardedPackets) override; |
| 67 | 67 |
| 68 int GetRTCPStatistics(int channel, CallStatistics& stats) override; | 68 int GetRTCPStatistics(int channel, CallStatistics& stats) override; |
| 69 | 69 |
| 70 int GetRemoteRTCPReportBlocks( | 70 int GetRemoteRTCPReportBlocks( |
| 71 int channel, | 71 int channel, |
| 72 std::vector<ReportBlock>* report_blocks) override; | 72 std::vector<ReportBlock>* report_blocks) override; |
| 73 | 73 |
| 74 // RED | |
| 75 int SetREDStatus(int channel, bool enable, int redPayloadtype = -1) override; | |
| 76 | |
| 77 int GetREDStatus(int channel, bool& enabled, int& redPayloadtype) override; | |
| 78 | |
| 79 // NACK | 74 // NACK |
| 80 int SetNACKStatus(int channel, bool enable, int maxNoPackets) override; | 75 int SetNACKStatus(int channel, bool enable, int maxNoPackets) override; |
| 81 | 76 |
| 82 protected: | 77 protected: |
| 83 VoERTP_RTCPImpl(voe::SharedData* shared); | 78 VoERTP_RTCPImpl(voe::SharedData* shared); |
| 84 ~VoERTP_RTCPImpl() override; | 79 ~VoERTP_RTCPImpl() override; |
| 85 | 80 |
| 86 private: | 81 private: |
| 87 voe::SharedData* _shared; | 82 voe::SharedData* _shared; |
| 88 }; | 83 }; |
| 89 | 84 |
| 90 } // namespace webrtc | 85 } // namespace webrtc |
| 91 | 86 |
| 92 #endif // WEBRTC_VOICE_ENGINE_VOE_RTP_RTCP_IMPL_H | 87 #endif // WEBRTC_VOICE_ENGINE_VOE_RTP_RTCP_IMPL_H |
| OLD | NEW |