Searched refs:AudioDecoderPcmU (Results 1 – 5 of 5) sorted by relevance
20 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()
26 class AudioDecoderPcmU final : public AudioDecoder {28 explicit AudioDecoderPcmU(size_t num_channels) : num_channels_(num_channels) { in AudioDecoderPcmU() function47 RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoderPcmU);
51 return std::make_unique<AudioDecoderPcmU>(config.num_channels); in MakeAudioDecoder()
984 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_;
275 decoder_ = new AudioDecoderPcmU(1); in AudioDecoderPcmUTest()