Home
last modified time | relevance | path

Searched refs:DecodeInternal (Results 1 – 25 of 25) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/neteq/mock/
Dmock_external_decoder_pcm16b.h33 int DecodeInternal(const uint8_t* encoded, in DecodeInternal() function
54 ON_CALL(*this, DecodeInternal(_, _, _, _, _)) in MockExternalPcm16B()
55 .WillByDefault(Invoke(&real_, &ExternalPcm16B::DecodeInternal)); in MockExternalPcm16B()
70 MOCK_METHOD5(DecodeInternal,
Dmock_audio_decoder.h25 MOCK_METHOD5(DecodeInternal,
/external/webrtc/webrtc/modules/audio_coding/neteq/
Dneteq_impl_unittest.cc435 int DecodeInternal(const uint8_t* encoded, in TEST_F() function in webrtc::TEST_F::CountingSamplesDecoder
530 EXPECT_CALL(mock_decoder, DecodeInternal(Pointee(0), kPayloadLengthBytes, in TEST_F()
573 EXPECT_CALL(mock_decoder, DecodeInternal(Pointee(2), kPayloadLengthBytes, in TEST_F()
691 EXPECT_CALL(mock_decoder, DecodeInternal(Pointee(0), kPayloadLengthBytes, in TEST_F()
698 EXPECT_CALL(mock_decoder, DecodeInternal(Pointee(1), kPayloadLengthBytes, in TEST_F()
706 DecodeInternal(IsNull(), 0, kSampleRateKhz * 1000, _, _)) in TEST_F()
712 EXPECT_CALL(mock_decoder, DecodeInternal(Pointee(2), kPayloadLengthBytes, in TEST_F()
823 MOCK_METHOD5(DecodeInternal, int(const uint8_t*, size_t, int, int16_t*, in TEST_F()
837 DecodeInternal(Pointee(kFirstPayloadValue), _, _, _, _)) in TEST_F()
840 EXPECT_CALL(decoder_, DecodeInternal(Pointee(kSecondPayloadValue), in TEST_F()
[all …]
Daudio_decoder_impl.h49 int DecodeInternal(const uint8_t* encoded,
Dneteq_network_stats_unittest.cc57 int DecodeInternal(const uint8_t* encoded, in DecodeInternal() function in webrtc::test::MockAudioDecoder
72 return DecodeInternal(encoded, encoded_len, sample_rate_hz, decoded, in DecodeRedundantInternal()
Daudio_decoder_impl.cc68 int AudioDecoderCng::DecodeInternal(const uint8_t* encoded, in DecodeInternal() function in webrtc::AudioDecoderCng
Dneteq_external_decoder_unittest.cc103 DecodeInternal(_, payload_size_bytes_, 1000 * samples_per_ms_, _, _)) in RunTest()
/external/webrtc/webrtc/modules/audio_coding/codecs/g711/
Daudio_decoder_pcm.cc23 int AudioDecoderPcmU::DecodeInternal(const uint8_t* encoded, in DecodeInternal() function in webrtc::AudioDecoderPcmU
47 int AudioDecoderPcmA::DecodeInternal(const uint8_t* encoded, in DecodeInternal() function in webrtc::AudioDecoderPcmA
Daudio_decoder_pcm.h29 int DecodeInternal(const uint8_t* encoded,
50 int DecodeInternal(const uint8_t* encoded,
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/
Daudio_decoder_g722.h30 int DecodeInternal(const uint8_t* encoded,
48 int DecodeInternal(const uint8_t* encoded,
Daudio_decoder_g722.cc33 int AudioDecoderG722::DecodeInternal(const uint8_t* encoded, in DecodeInternal() function in webrtc::AudioDecoderG722
72 int AudioDecoderG722Stereo::DecodeInternal(const uint8_t* encoded, in DecodeInternal() function in webrtc::AudioDecoderG722Stereo
/external/webrtc/webrtc/modules/audio_coding/codecs/
Daudio_decoder.cc29 return DecodeInternal(encoded, encoded_len, sample_rate_hz, decoded, in Decode()
50 return DecodeInternal(encoded, encoded_len, sample_rate_hz, decoded, in DecodeRedundantInternal()
Daudio_decoder.h106 virtual int DecodeInternal(const uint8_t* encoded,
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/
Daudio_decoder_opus.cc28 int AudioDecoderOpus::DecodeInternal(const uint8_t* encoded, in DecodeInternal() function in webrtc::AudioDecoderOpus
50 return DecodeInternal(encoded, encoded_len, sample_rate_hz, decoded, in DecodeRedundantInternal()
Daudio_decoder_opus.h32 int DecodeInternal(const uint8_t* encoded,
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/
Daudio_decoder_isac_t_impl.h42 int AudioDecoderIsacT<T>::DecodeInternal(const uint8_t* encoded, in DecodeInternal() function
55 T::DecodeInternal(isac_state_, encoded, encoded_len, decoded, &temp_type); in DecodeInternal()
Daudio_decoder_isac_t.h38 int DecodeInternal(const uint8_t* encoded,
Dunittest.cc70 int nsamples = T::DecodeInternal(inst, encoded.data(), encoded.size(), in DecodePacket()
/external/webrtc/webrtc/modules/audio_coding/codecs/pcm16b/
Daudio_decoder_pcm16b.h27 int DecodeInternal(const uint8_t* encoded,
Daudio_decoder_pcm16b.cc29 int AudioDecoderPcm16B::DecodeInternal(const uint8_t* encoded, in DecodeInternal() function in webrtc::AudioDecoderPcm16B
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
Daudio_decoder_ilbc.h30 int DecodeInternal(const uint8_t* encoded,
Daudio_decoder_ilbc.cc31 int AudioDecoderIlbc::DecodeInternal(const uint8_t* encoded, in DecodeInternal() function in webrtc::AudioDecoderIlbc
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Disac_fix_type.h38 static inline int DecodeInternal(instance_type* inst, in DecodeInternal() function
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Disac_float_type.h36 static inline int DecodeInternal(instance_type* inst, in DecodeInternal() function
/external/webrtc/webrtc/modules/audio_coding/acm2/
Daudio_coding_module_unittest_oldapi.cc1010 EXPECT_CALL(mock_decoder, DecodeInternal(_, _, _, _, _))