NetEq4: Removing templatization for AudioVector

This is the last CL for removing templates in Audio(Multi)Vector.

BUG=1363
R=turaj@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/2341004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4960 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrik.lundin@webrtc.org
2013-10-14 20:33:25 +00:00
parent fc89ba580b
commit 1871dd2fb7
8 changed files with 74 additions and 123 deletions

View File

@ -78,7 +78,7 @@ class SyncBuffer : public AudioMultiVector {
// created.
void Flush();
const AudioVector<int16_t>& Channel(size_t n) { return *channels_[n]; }
const AudioVector& Channel(size_t n) { return *channels_[n]; }
// Accessors and mutators.
size_t next_index() const { return next_index_; }