Home
last modified time | relevance | path

Searched refs:DecodePlc (Results 1 – 12 of 12) sorted by relevance

/external/webrtc/modules/audio_coding/codecs/isac/
Daudio_decoder_isac_t_impl.h58 size_t AudioDecoderIsacT<T>::DecodePlc(size_t num_frames, int16_t* decoded) { in DecodePlc() function
59 return T::DecodePlc(isac_state_, decoded, num_frames); in DecodePlc()
Daudio_decoder_isac_t.h34 size_t DecodePlc(size_t num_frames, int16_t* decoded) override;
/external/webrtc/test/
Dmock_audio_decoder.h29 MOCK_METHOD(size_t, DecodePlc, (size_t, int16_t*), (override));
/external/webrtc/modules/audio_coding/codecs/ilbc/
Daudio_decoder_ilbc.h31 size_t DecodePlc(size_t num_frames, int16_t* decoded) override;
Daudio_decoder_ilbc.cc49 size_t AudioDecoderIlbcImpl::DecodePlc(size_t num_frames, int16_t* decoded) { in DecodePlc() function in webrtc::AudioDecoderIlbcImpl
/external/webrtc/api/audio_codecs/
Daudio_decoder.h127 virtual size_t DecodePlc(size_t num_frames, int16_t* decoded);
Daudio_decoder.cc130 size_t AudioDecoder::DecodePlc(size_t num_frames, int16_t* decoded) { in DecodePlc() function in webrtc::AudioDecoder
/external/webrtc/modules/audio_coding/codecs/isac/main/source/
Disac_float_type.h43 static inline size_t DecodePlc(instance_type* inst, in DecodePlc() function
/external/webrtc/modules/audio_coding/codecs/isac/fix/source/
Disac_fix_type.h45 static inline size_t DecodePlc(instance_type* inst, in DecodePlc() function
/external/webrtc/modules/audio_coding/codecs/opus/
Dopus_interface.cc549 static int DecodePlc(OpusDecInst* inst, int16_t* decoded) { in DecodePlc() function
584 decoded_samples = DecodePlc(inst, decoded); in WebRtcOpus_Decode()
/external/webrtc/modules/audio_coding/neteq/
Daudio_decoder_unittest.cc256 decoder_->DecodePlc(/*num_frames=*/1, /*decoded=*/output.data()); in DecodePlcTest()
343 EXPECT_EQ(0U, decoder_->DecodePlc(1, output.get())); in DecodePlcTest()
Dneteq_impl.cc1417 decoder->DecodePlc(1, &decoded_buffer_[*decoded_length]); in Decode()