Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 int bitrate_bps() const { return bitrate_bps_; } | |
|
kwiberg-webrtc
2015/06/17 14:36:31
Do you really need this anymore? GetTargetBitrate
hlundin-webrtc
2015/06/18 08:52:18
Done.
| |
| 63 | |
| 61 EncodedInfo EncodeInternal(uint32_t rtp_timestamp, | 64 EncodedInfo EncodeInternal(uint32_t rtp_timestamp, |
| 62 const int16_t* audio, | 65 const int16_t* audio, |
| 63 size_t max_encoded_bytes, | 66 size_t max_encoded_bytes, |
| 64 uint8_t* encoded) override; | 67 uint8_t* encoded) override; |
| 65 | 68 |
| 66 private: | 69 private: |
| 67 const int num_10ms_frames_per_packet_; | 70 const int num_10ms_frames_per_packet_; |
| 68 const int num_channels_; | 71 const int num_channels_; |
| 69 const int payload_type_; | 72 const int payload_type_; |
| 70 const ApplicationMode application_; | 73 const ApplicationMode application_; |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 97 return encoder()->application(); | 100 return encoder()->application(); |
| 98 } | 101 } |
| 99 double packet_loss_rate() const { | 102 double packet_loss_rate() const { |
| 100 CriticalSectionScoped cs(encoder_lock_.get()); | 103 CriticalSectionScoped cs(encoder_lock_.get()); |
| 101 return encoder()->packet_loss_rate(); | 104 return encoder()->packet_loss_rate(); |
| 102 } | 105 } |
| 103 bool dtx_enabled() const { | 106 bool dtx_enabled() const { |
| 104 CriticalSectionScoped cs(encoder_lock_.get()); | 107 CriticalSectionScoped cs(encoder_lock_.get()); |
| 105 return encoder()->dtx_enabled(); | 108 return encoder()->dtx_enabled(); |
| 106 } | 109 } |
| 110 int bitrate_bps() const { | |
| 111 CriticalSectionScoped cs(encoder_lock_.get()); | |
| 112 return encoder()->bitrate_bps(); | |
| 113 } | |
| 107 }; | 114 }; |
| 108 | 115 |
| 109 } // namespace webrtc | 116 } // namespace webrtc |
| 110 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_INTERFACE_AUDIO_ENCODER_OPUS_ H_ | 117 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_INTERFACE_AUDIO_ENCODER_OPUS_ H_ |
| OLD | NEW |