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

Side by Side Diff: webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t.h

Issue 2845603002: Normalize codec names to those used by AcmCodecDatabase. (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « webrtc/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 bool enforce_frame_size = false; 52 bool enforce_frame_size = false;
53 }; 53 };
54 54
55 explicit AudioEncoderIsacT(const Config& config); 55 explicit AudioEncoderIsacT(const Config& config);
56 explicit AudioEncoderIsacT( 56 explicit AudioEncoderIsacT(
57 const CodecInst& codec_inst, 57 const CodecInst& codec_inst,
58 const rtc::scoped_refptr<LockedIsacBandwidthInfo>& bwinfo); 58 const rtc::scoped_refptr<LockedIsacBandwidthInfo>& bwinfo);
59 AudioEncoderIsacT(int payload_type, const SdpAudioFormat& format); 59 AudioEncoderIsacT(int payload_type, const SdpAudioFormat& format);
60 ~AudioEncoderIsacT() override; 60 ~AudioEncoderIsacT() override;
61 61
62 static constexpr const char* GetPayloadName() { return "isac"; } 62 static constexpr const char* GetPayloadName() { return "ISAC"; }
63 static rtc::Optional<AudioCodecInfo> QueryAudioEncoder( 63 static rtc::Optional<AudioCodecInfo> QueryAudioEncoder(
64 const SdpAudioFormat& format); 64 const SdpAudioFormat& format);
65 65
66 int SampleRateHz() const override; 66 int SampleRateHz() const override;
67 size_t NumChannels() const override; 67 size_t NumChannels() const override;
68 size_t Num10MsFramesInNextPacket() const override; 68 size_t Num10MsFramesInNextPacket() const override;
69 size_t Max10MsFramesInAPacket() const override; 69 size_t Max10MsFramesInAPacket() const override;
70 int GetTargetBitrate() const override; 70 int GetTargetBitrate() const override;
71 EncodedInfo EncodeImpl(uint32_t rtp_timestamp, 71 EncodedInfo EncodeImpl(uint32_t rtp_timestamp,
72 rtc::ArrayView<const int16_t> audio, 72 rtc::ArrayView<const int16_t> audio,
(...skipping 22 matching lines...) Expand all
95 95
96 // Timestamp of the previously encoded packet. 96 // Timestamp of the previously encoded packet.
97 uint32_t last_encoded_timestamp_; 97 uint32_t last_encoded_timestamp_;
98 98
99 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderIsacT); 99 RTC_DISALLOW_COPY_AND_ASSIGN(AudioEncoderIsacT);
100 }; 100 };
101 101
102 } // namespace webrtc 102 } // namespace webrtc
103 103
104 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_AUDIO_ENCODER_ISAC_T_H_ 104 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_AUDIO_ENCODER_ISAC_T_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698