changed bufi and bufq to std::vector

This commit is contained in:
SDRplay 2015-04-14 16:31:04 +01:00 committed by Dimitri Stolnikov
parent afed5df615
commit 79b53f50e4
1 changed files with 2 additions and 2 deletions

View File

@ -122,8 +122,8 @@ private:
sdrplay_dev_t *_dev;
short _bufi[504];
short _bufq[504];
std::vector< short > _bufi;
std::vector< short > _bufq;
int _buf_offset;
boost::mutex _buf_mutex;