Home
last modified time | relevance | path

Searched refs:AudioDecoderPcmA (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/modules/audio_coding/codecs/g711/
Daudio_decoder_pcm.cc55 void AudioDecoderPcmA::Reset() {} in Reset()
57 std::vector<AudioDecoder::ParseResult> AudioDecoderPcmA::ParsePayload( in ParsePayload()
64 int AudioDecoderPcmA::SampleRateHz() const { in SampleRateHz()
68 size_t AudioDecoderPcmA::Channels() const { in Channels()
72 int AudioDecoderPcmA::DecodeInternal(const uint8_t* encoded, in DecodeInternal()
84 int AudioDecoderPcmA::PacketDuration(const uint8_t* encoded, in PacketDuration()
Daudio_decoder_pcm.h50 class AudioDecoderPcmA final : public AudioDecoder {
52 explicit AudioDecoderPcmA(size_t num_channels) : num_channels_(num_channels) { in AudioDecoderPcmA() function
71 RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoderPcmA);
/external/webrtc/api/audio_codecs/g711/
Daudio_decoder_g711.cc53 return std::make_unique<AudioDecoderPcmA>(config.num_channels); in MakeAudioDecoder()
/external/webrtc/modules/audio_coding/neteq/
Daudio_decoder_unittest.cc288 decoder_ = new AudioDecoderPcmA(1); in AudioDecoderPcmATest()