HomeSort by relevance Sort by last modified time
    Searched refs:DecodePlc (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
mock_audio_decoder.h 28 MOCK_METHOD2(DecodePlc, int(int, int16_t*));
mock_external_decoder_pcm16b.h 62 ON_CALL(*this, DecodePlc(_, _))
63 .WillByDefault(Invoke(&real_, &ExternalPcm16B::DecodePlc));
81 MOCK_METHOD2(DecodePlc,
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/interface/
audio_decoder.h 86 // Indicates if the decoder implements the DecodePlc method.
91 virtual int DecodePlc(int num_frames, int16_t* decoded);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_decoder_impl.h 108 virtual int DecodePlc(int num_frames, int16_t* decoded);
126 virtual int DecodePlc(int num_frames, int16_t* decoded);
225 virtual int DecodePlc(int num_frames, int16_t* decoded);
audio_decoder.cc 28 int AudioDecoder::DecodePlc(int num_frames, int16_t* decoded) { return -1; }
audio_decoder_impl.cc 143 int AudioDecoderIlbc::DecodePlc(int num_frames, int16_t* decoded) {
187 int AudioDecoderIsac::DecodePlc(int num_frames, int16_t* decoded) {
421 int AudioDecoderCelt::DecodePlc(int num_frames, int16_t* decoded) {
audio_decoder_unittest.cc 195 // Call DecodePlc and verify that the correct number of samples is produced.
204 // Call DecodePlc and verify that we get one frame of data.
207 dec_len = decoder_->DecodePlc(1, decoded_);
320 // Simply call DecodePlc and verify that we get 0 as return value.
321 EXPECT_EQ(0, decoder_->DecodePlc(1, decoded_));
    [all...]
neteq_impl.cc     [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_isac.h 78 virtual int DecodePlc(int num_frames, int16_t* decoded) OVERRIDE;
acm_isac.cc 743 int ACMISAC::DecodePlc(int num_frames, int16_t* decoded) {

Completed in 277 milliseconds