HomeSort by relevance Sort by last modified time
    Searched refs:sync_buffer (Results 1 - 19 of 19) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/neteq/
sync_buffer_unittest.cc 11 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
21 SyncBuffer sync_buffer(kChannels, kLen);
22 EXPECT_EQ(kChannels, sync_buffer.Channels());
23 EXPECT_EQ(kLen, sync_buffer.Size());
25 EXPECT_EQ(kLen, sync_buffer.next_index());
29 EXPECT_EQ(0, sync_buffer[channel][i]);
38 SyncBuffer sync_buffer(kChannels, kLen);
39 sync_buffer.set_next_index(0);
40 EXPECT_EQ(0u, sync_buffer.next_index());
41 sync_buffer.set_next_index(kLen / 2)
    [all...]
comfort_noise_unittest.cc 17 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
24 SyncBuffer sync_buffer(1, 1000);
25 ComfortNoise cn(fs, &db, &sync_buffer);
merge_unittest.cc 22 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
30 SyncBuffer sync_buffer(1, 1000);
33 Expand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs, channels);
34 Merge merge(fs, channels, &expand, &sync_buffer);
comfort_noise.h 36 SyncBuffer* sync_buffer)
41 sync_buffer_(sync_buffer),
normal_unittest.cc 27 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
38 SyncBuffer sync_buffer(1, 1000);
41 Expand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs, channels);
52 SyncBuffer sync_buffer(1, 1000);
55 MockExpand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs,
98 SyncBuffer sync_buffer(channels, 1000);
101 MockExpand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs,
decision_logic_fax.h 38 // Returns the operation that should be done next. |sync_buffer| and |expand|
47 Operations GetDecisionSpecialized(const SyncBuffer& sync_buffer,
decision_logic_fax.cc 18 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
23 const SyncBuffer& sync_buffer,
31 uint32_t target_timestamp = sync_buffer.end_timestamp();
decision_logic_normal.h 42 // Returns the operation that should be done next. |sync_buffer| and |expand|
51 Operations GetDecisionSpecialized(const SyncBuffer& sync_buffer,
62 const SyncBuffer& sync_buffer,
decision_logic_normal.cc 22 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
28 const SyncBuffer& sync_buffer,
45 uint32_t target_timestamp = sync_buffer.end_timestamp();
77 return FuturePacketAvailable(sync_buffer, expand, decoder_frame_length,
150 const SyncBuffer& sync_buffer,
176 sync_buffer.FutureLength() - expand.overlap_length();
expand_unittest.cc 21 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
31 SyncBuffer sync_buffer(1, 1000);
34 Expand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs, channels);
41 SyncBuffer sync_buffer(1, 1000);
45 Expand* expand = expand_factory.Create(&bgn, &sync_buffer, &random_vector,
decision_logic.h 65 // Returns the operation that should be done next. |sync_buffer| and |expand|
76 Operations GetDecision(const SyncBuffer& sync_buffer,
125 // Returns the operation that should be done next. |sync_buffer| and |expand|
135 virtual Operations GetDecisionSpecialized(const SyncBuffer& sync_buffer,
expand.h 29 // This class handles extrapolation of audio data from the sync_buffer to
36 SyncBuffer* sync_buffer,
151 SyncBuffer* sync_buffer,
decision_logic.cc 21 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
105 Operations DecisionLogic::GetDecision(const SyncBuffer& sync_buffer,
127 sync_buffer.FutureLength() - expand.overlap_length();
140 return GetDecisionSpecialized(sync_buffer, expand, decoder_frame_length,
merge.h 39 SyncBuffer* sync_buffer);
background_noise.h 40 // |sync_buffer|, and on the latest decision in |vad| if it is running.
41 void Update(const AudioMultiVector& sync_buffer,
merge.cc 23 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
30 SyncBuffer* sync_buffer)
36 sync_buffer_(sync_buffer),
expand.cc 25 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
30 SyncBuffer* sync_buffer,
36 sync_buffer_(sync_buffer),
    [all...]
neteq_impl_unittest.cc 29 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
493 const SyncBuffer* sync_buffer = neteq_->sync_buffer_for_test(); local
494 ASSERT_TRUE(sync_buffer != NULL);
496 sync_buffer->end_timestamp());
501 sync_buffer->FutureLength());
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/mock/
mock_expand.h 23 SyncBuffer* sync_buffer,
29 sync_buffer,
56 SyncBuffer* sync_buffer,

Completed in 932 milliseconds