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

Side by Side Diff: webrtc/modules/audio_coding/codecs/audio_encoder.cc

Issue 2538493006: Reland "Renaming AudioEncoder::SetTargetBitrate and SetProjectedPacketLossRate." (Closed)
Patch Set: fixing Created 4 years 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) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 bool AudioEncoder::GetDtx() const { 53 bool AudioEncoder::GetDtx() const {
54 return false; 54 return false;
55 } 55 }
56 56
57 bool AudioEncoder::SetApplication(Application application) { 57 bool AudioEncoder::SetApplication(Application application) {
58 return false; 58 return false;
59 } 59 }
60 60
61 void AudioEncoder::SetMaxPlaybackRate(int frequency_hz) {} 61 void AudioEncoder::SetMaxPlaybackRate(int frequency_hz) {}
62 62
63 void AudioEncoder::SetProjectedPacketLossRate(double fraction) {}
64
65 void AudioEncoder::SetTargetBitrate(int target_bps) {} 63 void AudioEncoder::SetTargetBitrate(int target_bps) {}
66 64
67 rtc::ArrayView<std::unique_ptr<AudioEncoder>> 65 rtc::ArrayView<std::unique_ptr<AudioEncoder>>
68 AudioEncoder::ReclaimContainedEncoders() { return nullptr; } 66 AudioEncoder::ReclaimContainedEncoders() { return nullptr; }
69 67
70 bool AudioEncoder::EnableAudioNetworkAdaptor(const std::string& config_string, 68 bool AudioEncoder::EnableAudioNetworkAdaptor(const std::string& config_string,
71 const Clock* clock) { 69 const Clock* clock) {
72 return false; 70 return false;
73 } 71 }
74 72
75 void AudioEncoder::DisableAudioNetworkAdaptor() {} 73 void AudioEncoder::DisableAudioNetworkAdaptor() {}
76 74
77 void AudioEncoder::OnReceivedUplinkBandwidth(int uplink_bandwidth_bps) {} 75 void AudioEncoder::OnReceivedUplinkBandwidth(int uplink_bandwidth_bps) {}
78 76
79 void AudioEncoder::OnReceivedUplinkPacketLossFraction( 77 void AudioEncoder::OnReceivedUplinkPacketLossFraction(
80 float uplink_packet_loss_fraction) { 78 float uplink_packet_loss_fraction) {}
81 SetProjectedPacketLossRate(uplink_packet_loss_fraction);
82 }
83 79
84 void AudioEncoder::OnReceivedTargetAudioBitrate(int target_audio_bitrate_bps) { 80 void AudioEncoder::OnReceivedTargetAudioBitrate(int target_audio_bitrate_bps) {}
85 SetTargetBitrate(target_audio_bitrate_bps);
86 }
87 81
88 void AudioEncoder::OnReceivedRtt(int rtt_ms) {} 82 void AudioEncoder::OnReceivedRtt(int rtt_ms) {}
89 83
90 void AudioEncoder::SetReceiverFrameLengthRange(int min_frame_length_ms, 84 void AudioEncoder::SetReceiverFrameLengthRange(int min_frame_length_ms,
91 int max_frame_length_ms) {} 85 int max_frame_length_ms) {}
92 86
93 } // namespace webrtc 87 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/codecs/audio_encoder.h ('k') | webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698