Searched refs:append_this (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Daudio_multi_vector.cc68 void AudioMultiVector::PushBackInterleaved(const int16_t* append_this, argument
73 channels_[0]->PushBack(append_this, length);
81 const int16_t* source_ptr = &append_this[channel];
91 void AudioMultiVector::PushBack(const AudioMultiVector& append_this) { argument
92 assert(num_channels_ == append_this.num_channels_);
93 if (num_channels_ == append_this.num_channels_) {
95 channels_[i]->PushBack(append_this[i]);
100 void AudioMultiVector::PushBackFromIndex(const AudioMultiVector& append_this, argument
102 assert(index < append_this.Size());
103 index = std::min(index, append_this
[all...]
H A Daudio_multi_vector.h48 // Appends the contents of array |append_this| to the end of this
53 virtual void PushBackInterleaved(const int16_t* append_this, size_t length);
55 // Appends the contents of AudioMultiVector |append_this| to this object. The
56 // length of this object is increased with the length of |append_this|.
57 virtual void PushBack(const AudioMultiVector& append_this);
59 // Appends the contents of AudioMultiVector |append_this| to this object,
60 // taken from |index| up until the end of |append_this|. The length of this
62 virtual void PushBackFromIndex(const AudioMultiVector& append_this,
102 // Appends |append_this| to the end of the current vector. Lets the two
105 virtual void CrossFade(const AudioMultiVector& append_this,
[all...]
H A Daudio_vector.cc47 void AudioVector::PushBack(const AudioVector& append_this) { argument
48 PushBack(append_this.array_.get(), append_this.Size());
51 void AudioVector::PushBack(const int16_t* append_this, size_t length) { argument
53 memcpy(&array_[first_free_ix_], append_this, length * sizeof(int16_t));
122 void AudioVector::CrossFade(const AudioVector& append_this, argument
124 // Fade length cannot be longer than the current vector or |append_this|.
126 assert(fade_length <= append_this.Size());
128 fade_length = std::min(fade_length, append_this.Size());
139 (16384 - alpha) * append_this[
[all...]
H A Daudio_vector.h57 virtual void PushBack(const AudioVector& append_this);
60 virtual void PushBack(const int16_t* append_this, size_t length);
91 // Appends |append_this| to the end of the current vector. Lets the two
94 virtual void CrossFade(const AudioVector& append_this, size_t fade_length);
H A Dsync_buffer.cc23 void SyncBuffer::PushBack(const AudioMultiVector& append_this) { argument
24 size_t samples_added = append_this.Size();
25 AudioMultiVector::PushBack(append_this);
H A Dsync_buffer.h33 // Adds the contents of |append_this| to the back of the SyncBuffer. Removes
37 void PushBack(const AudioMultiVector& append_this);
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
H A Dmock_audio_vector.h31 void(const AudioVector<T>& append_this));
33 void(const T* append_this, size_t length));

Completed in 2560 milliseconds