Searched refs:out_frame_ (Results 1 – 5 of 5) sorted by relevance
/external/webrtc/modules/audio_coding/neteq/test/ |
D | neteq_decoding_test.cc | 120 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 …]
|
D | neteq_decoding_test.h | 76 AudioFrame out_frame_; variable
|
/external/webrtc/modules/audio_coding/neteq/ |
D | neteq_unittest.cc | 182 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/ |
D | neteq_quality_test.cc | 424 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()
|
D | neteq_quality_test.h | 167 AudioFrame out_frame_; variable
|