Home
last modified time | relevance | path

Searched refs:out_frame_ (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/modules/audio_coding/neteq/test/
Dneteq_decoding_test.cc120 ASSERT_EQ(0, neteq_->GetAudio(&out_frame_, &muted)); in Process()
122 ASSERT_TRUE((out_frame_.samples_per_channel_ == kBlockSize8kHz) || in Process()
123 (out_frame_.samples_per_channel_ == kBlockSize16kHz) || in Process()
124 (out_frame_.samples_per_channel_ == kBlockSize32kHz) || in Process()
125 (out_frame_.samples_per_channel_ == kBlockSize48kHz)); in Process()
126 output_sample_rate_ = out_frame_.sample_rate_hz_; in Process()
158 output.AddResult(out_frame_.data(), out_frame_.samples_per_channel_)); in DecodeAndCompare()
316 ASSERT_EQ(0, neteq_->GetAudio(&out_frame_, &muted)); in LongCngWithClockDrift()
317 ASSERT_EQ(kBlockSize16kHz, out_frame_.samples_per_channel_); in LongCngWithClockDrift()
320 EXPECT_EQ(AudioFrame::kNormalSpeech, out_frame_.speech_type_); in LongCngWithClockDrift()
[all …]
Dneteq_decoding_test.h76 AudioFrame out_frame_; variable
/external/webrtc/modules/audio_coding/neteq/
Dneteq_unittest.cc182 ASSERT_EQ(0, neteq_->GetAudio(&out_frame_, &muted)); in TEST_F()
183 ASSERT_EQ(kBlockSize16kHz, out_frame_.samples_per_channel_); in TEST_F()
301 int16_t* out_frame_data = out_frame_.mutable_data(); in TEST_F()
306 EXPECT_EQ(NetEq::kFail, neteq_->GetAudio(&out_frame_, &muted)); in TEST_F()
311 const int16_t* const_out_frame_data = out_frame_.data(); in TEST_F()
323 int16_t* out_frame_data = out_frame_.mutable_data(); in TEST_F()
328 EXPECT_EQ(0, neteq_->GetAudio(&out_frame_, &muted)); in TEST_F()
333 const int16_t* const_out_frame_data = out_frame_.data(); in TEST_F()
499 ASSERT_EQ(0, neteq_->GetAudio(&out_frame_, &muted)); in TEST_F()
500 ASSERT_EQ(kBlockSize16kHz, out_frame_.samples_per_channel_); in TEST_F()
[all …]
/external/webrtc/modules/audio_coding/neteq/tools/
Dneteq_quality_test.cc424 int ret = neteq_->GetAudio(&out_frame_, &muted); in DecodeBlock()
430 RTC_DCHECK_EQ(out_frame_.num_channels_, channels_); in DecodeBlock()
431 RTC_DCHECK_EQ(out_frame_.samples_per_channel_, in DecodeBlock()
434 out_frame_.data(), in DecodeBlock()
435 out_frame_.samples_per_channel_ * out_frame_.num_channels_)); in DecodeBlock()
436 return static_cast<int>(out_frame_.samples_per_channel_); in DecodeBlock()
Dneteq_quality_test.h167 AudioFrame out_frame_; variable