Home
last modified time | relevance | path

Searched refs:mock_decoder (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/neteq/
Dneteq_impl_unittest.cc274 MockAudioDecoder mock_decoder; in TEST_F() local
275 EXPECT_CALL(mock_decoder, Channels()).WillRepeatedly(Return(1)); in TEST_F()
277 EXPECT_CALL(mock_decoder, IncomingPacket(_, in TEST_F()
283 EXPECT_CALL(mock_decoder, IncomingPacket(_, in TEST_F()
288 EXPECT_CALL(mock_decoder, Die()).Times(1); // Called when deleted. in TEST_F()
300 .WillRepeatedly(Return(&mock_decoder)); in TEST_F()
522 MockAudioDecoder mock_decoder; in TEST_F() local
523 EXPECT_CALL(mock_decoder, Reset()).WillRepeatedly(Return()); in TEST_F()
524 EXPECT_CALL(mock_decoder, Channels()).WillRepeatedly(Return(1)); in TEST_F()
525 EXPECT_CALL(mock_decoder, IncomingPacket(_, kPayloadLengthBytes, _, _, _)) in TEST_F()
[all …]
/external/webrtc/webrtc/modules/audio_coding/acm2/
Daudio_coding_module_unittest_oldapi.cc1001 MockAudioDecoder mock_decoder; variable
1004 EXPECT_CALL(mock_decoder, IncomingPacket(_, _, _, _, _))
1007 EXPECT_CALL(mock_decoder, Channels())
1010 EXPECT_CALL(mock_decoder, DecodeInternal(_, _, _, _, _))
1013 EXPECT_CALL(mock_decoder, HasDecodePlc())
1016 EXPECT_CALL(mock_decoder, PacketDuration(_, _))
1021 ed.external_decoder = &mock_decoder;
1034 EXPECT_CALL(mock_decoder, Die());