Home
last modified time | relevance | path

Searched refs:kExpand (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/modules/audio_coding/neteq/
Ddecision_logic.cc126 return NetEq::Operation::kExpand; in GetDecision()
161 if ((status.last_mode == NetEq::Mode::kExpand || in GetDecision()
168 return NetEq::Operation::kExpand; in GetDecision()
191 if (operation == NetEq::Operation::kExpand) { in ExpandDecision()
290 return NetEq::Operation::kExpand; in NoPacket()
296 if (!disallow_time_stretching_ && prev_mode != NetEq::Mode::kExpand && in ExpectedPacketAvailable()
333 if ((prev_mode == NetEq::Mode::kExpand || in FuturePacketAvailable()
342 return NetEq::Operation::kExpand; in FuturePacketAvailable()
398 if (prev_mode == NetEq::Mode::kExpand) { in FuturePacketAvailable()
404 return NetEq::Operation::kExpand; in FuturePacketAvailable()
Dnormal_unittest.cc73 EXPECT_EQ(0, normal.Process(input, 0, NetEq::Mode::kExpand, &output)); in TEST()
86 NetEq::Mode::kExpand, &output)); in TEST()
109 EXPECT_EQ(0, normal.Process(input, input_len, NetEq::Mode::kExpand, &output)); in TEST()
137 normal.Process(input, kPacketsizeBytes, NetEq::Mode::kExpand, &output)); in TEST()
Dneteq_impl.cc830 RTC_DCHECK_EQ(last_mode_, Mode::kExpand); in GetAudioInternal()
889 case Operation::kExpand: { in GetAudioInternal()
1022 if (last_mode_ != Mode::kExpand && last_mode_ != Mode::kCodecPlc) { in GetAudioInternal()
1047 last_mode_ == Mode::kCodecInternalCng || last_mode_ == Mode::kExpand || in GetAudioInternal()
1221 case Operation::kExpand: { in GetDecision()
1446 *operation = Operation::kExpand; // Do expansion to get data instead. in Decode()
1657 bool is_new_concealment_event = (last_mode_ != Mode::kExpand); in DoExpand()
1668 last_mode_ = Mode::kExpand; in DoExpand()
2162 } else if (last_mode_ == Mode::kExpand && expand_->MuteFactor(0) == 0) { in LastOutputType()
2165 } else if (last_mode_ == Mode::kExpand) { in LastOutputType()
Dnormal.cc55 if (last_mode == NetEq::Mode::kExpand) { in Process()
Dneteq_impl_unittest.cc1686 .WillOnce(Return(NetEq::Operation::kExpand)); in TEST_F()
1707 EXPECT_EQ(NetEq::Operation::kExpand, neteq_->last_operation_for_test()); in TEST_F()
/external/webrtc/modules/audio_coding/neteq/tools/
Dneteq_test.cc32 case NetEqSimulator::Action::kExpand: in ActionToOperations()
33 return absl::make_optional(NetEq::Operation::kExpand); in ActionToOperations()
210 result.action_times_ms[Action::kExpand] = 0; in RunToNextGetAudio()
218 result.action_times_ms[Action::kExpand] = 10; in RunToNextGetAudio()
/external/webrtc/api/neteq/
Dneteq.h152 kExpand, enumerator
165 kExpand, enumerator
/external/webrtc/api/test/
Dneteq_simulator.h26 enum class Action { kNormal, kExpand, kAccelerate, kPreemptiveExpand }; enumerator