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

Side by Side Diff: webrtc/modules/audio_coding/codecs/opus/interface/audio_encoder_opus.h

Issue 1184313002: Add AudioEncoder::GetTargetBitrate (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixing GN compile Created 5 years, 6 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) 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 }; 45 };
46 46
47 explicit AudioEncoderOpus(const Config& config); 47 explicit AudioEncoderOpus(const Config& config);
48 ~AudioEncoderOpus() override; 48 ~AudioEncoderOpus() override;
49 49
50 int SampleRateHz() const override; 50 int SampleRateHz() const override;
51 int NumChannels() const override; 51 int NumChannels() const override;
52 size_t MaxEncodedBytes() const override; 52 size_t MaxEncodedBytes() const override;
53 int Num10MsFramesInNextPacket() const override; 53 int Num10MsFramesInNextPacket() const override;
54 int Max10MsFramesInAPacket() const override; 54 int Max10MsFramesInAPacket() const override;
55 int GetTargetBitrate() const override;
55 void SetTargetBitrate(int bits_per_second) override; 56 void SetTargetBitrate(int bits_per_second) override;
56 void SetProjectedPacketLossRate(double fraction) override; 57 void SetProjectedPacketLossRate(double fraction) override;
57 58
58 double packet_loss_rate() const { return packet_loss_rate_; } 59 double packet_loss_rate() const { return packet_loss_rate_; }
59 ApplicationMode application() const { return application_; } 60 ApplicationMode application() const { return application_; }
60 bool dtx_enabled() const { return dtx_enabled_; } 61 bool dtx_enabled() const { return dtx_enabled_; }
62
61 EncodedInfo EncodeInternal(uint32_t rtp_timestamp, 63 EncodedInfo EncodeInternal(uint32_t rtp_timestamp,
62 const int16_t* audio, 64 const int16_t* audio,
63 size_t max_encoded_bytes, 65 size_t max_encoded_bytes,
64 uint8_t* encoded) override; 66 uint8_t* encoded) override;
65 67
66 private: 68 private:
67 const int num_10ms_frames_per_packet_; 69 const int num_10ms_frames_per_packet_;
68 const int num_channels_; 70 const int num_channels_;
69 const int payload_type_; 71 const int payload_type_;
70 const ApplicationMode application_; 72 const ApplicationMode application_;
(...skipping 30 matching lines...) Expand all
101 return encoder()->packet_loss_rate(); 103 return encoder()->packet_loss_rate();
102 } 104 }
103 bool dtx_enabled() const { 105 bool dtx_enabled() const {
104 CriticalSectionScoped cs(encoder_lock_.get()); 106 CriticalSectionScoped cs(encoder_lock_.get());
105 return encoder()->dtx_enabled(); 107 return encoder()->dtx_enabled();
106 } 108 }
107 }; 109 };
108 110
109 } // namespace webrtc 111 } // namespace webrtc
110 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_INTERFACE_AUDIO_ENCODER_OPUS_ H_ 112 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_INTERFACE_AUDIO_ENCODER_OPUS_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698