audio: increase buffer size

Change-Id: I57516485fc45c6bb66e1f9d117006d728d9f899c
This commit is contained in:
Kateryna Kostiuk
2019-01-04 12:51:24 -05:00
parent 8a1f5ee202
commit 707144465a

View File

@ -188,7 +188,7 @@ private:
/** Data */
AudioFormat format_ {AudioFormat::DEFAULT()};
std::vector<std::shared_ptr<AudioFrame>> buffer_ {8};
std::vector<std::shared_ptr<AudioFrame>> buffer_ {16};
mutable std::mutex lock_;
mutable std::condition_variable not_empty_;