Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Side by Side Diff: webrtc/voice_engine/voe_rtp_rtcp_impl.h

Issue 2055753002: VoERTP_RTCP: Remove GetREDStatus and SetREDStatus (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@remove-red
Patch Set: rebase Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc ('k') | webrtc/voice_engine/voe_rtp_rtcp_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698