Home
last modified time | relevance | path

Searched refs:AudioDecoderPcmU (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/modules/audio_coding/codecs/g711/
Daudio_decoder_pcm.cc20 void AudioDecoderPcmU::Reset() {} in Reset()
22 std::vector<AudioDecoder::ParseResult> AudioDecoderPcmU::ParsePayload( in ParsePayload()
29 int AudioDecoderPcmU::SampleRateHz() const { in SampleRateHz()
33 size_t AudioDecoderPcmU::Channels() const { in Channels()
37 int AudioDecoderPcmU::DecodeInternal(const uint8_t* encoded, in DecodeInternal()
49 int AudioDecoderPcmU::PacketDuration(const uint8_t* encoded, in PacketDuration()
Daudio_decoder_pcm.h26 class AudioDecoderPcmU final : public AudioDecoder {
28 explicit AudioDecoderPcmU(size_t num_channels) : num_channels_(num_channels) { in AudioDecoderPcmU() function
47 RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoderPcmU);
/external/webrtc/api/audio_codecs/g711/
Daudio_decoder_g711.cc51 return std::make_unique<AudioDecoderPcmU>(config.num_channels); in MakeAudioDecoder()
/external/webrtc/modules/audio_coding/acm2/
Daudio_coding_module_unittest.cc984 Invoke(&pcmu_decoder_, &AudioDecoderPcmU::SampleRateHz)); in ADFactory()
987 .WillRepeatedly(Invoke(&pcmu_decoder_, &AudioDecoderPcmU::Channels)); in ADFactory()
994 Invoke(&pcmu_decoder_, &AudioDecoderPcmU::HasDecodePlc)); in ADFactory()
998 Invoke(&pcmu_decoder_, &AudioDecoderPcmU::PacketDuration)); in ADFactory()
1039 AudioDecoderPcmU pcmu_decoder_;
/external/webrtc/modules/audio_coding/neteq/
Daudio_decoder_unittest.cc275 decoder_ = new AudioDecoderPcmU(1); in AudioDecoderPcmUTest()