Home
last modified time | relevance | path

Searched refs:Num10MsFramesInNextPacket (Results 1 – 22 of 22) sorted by relevance

/external/webrtc/modules/audio_coding/codecs/cng/
Daudio_encoder_cng_unittest.cc114 EXPECT_CALL(*mock_encoder_, Num10MsFramesInNextPacket()) in CheckBlockGrouping()
147 EXPECT_CALL(*mock_encoder_, Num10MsFramesInNextPacket()) in CheckVadInputSize()
184 EXPECT_CALL(*mock_encoder_, Num10MsFramesInNextPacket()) in CheckMixedActivePassive()
221 EXPECT_CALL(*mock_encoder_, Num10MsFramesInNextPacket()) in TEST_F()
223 EXPECT_EQ(17U, cng_->Num10MsFramesInNextPacket()); in TEST_F()
249 EXPECT_CALL(*mock_encoder_, Num10MsFramesInNextPacket()) in TEST_F()
283 EXPECT_CALL(*mock_encoder_, Num10MsFramesInNextPacket()) in TEST_F()
376 EXPECT_CALL(*mock_encoder_, Num10MsFramesInNextPacket()).WillOnce(Return(1U)); in TEST_F()
390 EXPECT_CALL(*mock_encoder_, Num10MsFramesInNextPacket()) in TEST_F()
510 EXPECT_CALL(*mock_encoder_, Num10MsFramesInNextPacket()) in TEST_F()
Daudio_encoder_cng.cc42 size_t Num10MsFramesInNextPacket() const override;
108 size_t AudioEncoderCng::Num10MsFramesInNextPacket() const { in Num10MsFramesInNextPacket() function in webrtc::__anonc964e42d0111::AudioEncoderCng
109 return speech_encoder_->Num10MsFramesInNextPacket(); in Num10MsFramesInNextPacket()
130 const size_t frames_to_encode = speech_encoder_->Num10MsFramesInNextPacket(); in EncodeImpl()
/external/webrtc/modules/audio_coding/codecs/red/
Daudio_encoder_copy_red.cc48 size_t AudioEncoderCopyRed::Num10MsFramesInNextPacket() const { in Num10MsFramesInNextPacket() function in webrtc::AudioEncoderCopyRed
49 return speech_encoder_->Num10MsFramesInNextPacket(); in Num10MsFramesInNextPacket()
Daudio_encoder_copy_red.h50 size_t Num10MsFramesInNextPacket() const override;
Daudio_encoder_copy_red_unittest.cc92 EXPECT_CALL(*mock_encoder_, Num10MsFramesInNextPacket()) in TEST_F()
94 EXPECT_EQ(17U, red_->Num10MsFramesInNextPacket()); in TEST_F()
/external/webrtc/modules/audio_coding/codecs/ilbc/
Daudio_encoder_ilbc.h32 size_t Num10MsFramesInNextPacket() const override;
Daudio_encoder_ilbc.cc66 size_t AudioEncoderIlbcImpl::Num10MsFramesInNextPacket() const { in Num10MsFramesInNextPacket() function in webrtc::AudioEncoderIlbcImpl
/external/webrtc/modules/audio_coding/codecs/g722/
Daudio_encoder_g722.h35 size_t Num10MsFramesInNextPacket() const override;
Daudio_encoder_g722.cc63 size_t AudioEncoderG722Impl::Num10MsFramesInNextPacket() const { in Num10MsFramesInNextPacket() function in webrtc::AudioEncoderG722Impl
/external/webrtc/modules/audio_coding/codecs/opus/
Daudio_encoder_multi_channel_opus_impl.h44 size_t Num10MsFramesInNextPacket() const override;
Daudio_encoder_opus.h67 size_t Num10MsFramesInNextPacket() const override;
Daudio_encoder_opus.cc401 size_t AudioEncoderOpusImpl::Num10MsFramesInNextPacket() const { in Num10MsFramesInNextPacket() function in webrtc::AudioEncoderOpusImpl
524 *overhead_bytes_per_packet_ * 8 * 100 / Num10MsFramesInNextPacket()); in OnReceivedUplinkBandwidth()
Daudio_encoder_multi_channel_opus_impl.cc309 size_t AudioEncoderMultiChannelOpusImpl::Num10MsFramesInNextPacket() const { in Num10MsFramesInNextPacket() function in webrtc::AudioEncoderMultiChannelOpusImpl
/external/webrtc/modules/audio_coding/codecs/isac/
Daudio_encoder_isac_t.h49 size_t Num10MsFramesInNextPacket() const override;
Daudio_encoder_isac_t_impl.h68 size_t AudioEncoderIsacT<T>::Num10MsFramesInNextPacket() const { in Num10MsFramesInNextPacket() function
/external/webrtc/api/audio_codecs/test/
Daudio_encoder_factory_template_unittest.cc194 EXPECT_EQ(3u, enc1->Num10MsFramesInNextPacket()); in TEST()
198 EXPECT_EQ(6u, enc2->Num10MsFramesInNextPacket()); in TEST()
/external/webrtc/test/
Dmock_audio_encoder.h29 MOCK_METHOD(size_t, Num10MsFramesInNextPacket, (), (const, override));
/external/webrtc/modules/audio_coding/codecs/g711/
Daudio_encoder_pcm.h43 size_t Num10MsFramesInNextPacket() const override;
Daudio_encoder_pcm.cc49 size_t AudioEncoderPcm::Num10MsFramesInNextPacket() const { in Num10MsFramesInNextPacket() function in webrtc::AudioEncoderPcm
/external/webrtc/api/audio_codecs/
Daudio_encoder.h133 virtual size_t Num10MsFramesInNextPacket() const = 0;
/external/webrtc/modules/audio_coding/neteq/
Daudio_decoder_unittest.cc127 RTC_CHECK_EQ(samples_per_10ms * audio_encoder_->Num10MsFramesInNextPacket(), in EncodeFrame()
131 for (size_t i = 0; i < audio_encoder_->Num10MsFramesInNextPacket(); ++i) { in EncodeFrame()
/external/webrtc/modules/audio_coding/acm2/
Daudio_coding_module_unittest.cc1123 external_speech_encoder->Num10MsFramesInNextPacket() * in RegisterExternalSendCodec()
1767 EXPECT_CALL(*mock_encoder, Num10MsFramesInNextPacket()) in TEST_F()
1770 Invoke(&encoder, &AudioEncoderPcmU::Num10MsFramesInNextPacket)); in TEST_F()