summaryrefslogtreecommitdiffstats
path: root/src/sources/soundsourceflac.h
diff options
context:
space:
mode:
authorUwe Klotz <uwe_klotz@web.de>2015-03-11 18:32:27 +0100
committerUwe Klotz <uwe_klotz@web.de>2015-03-11 18:33:05 +0100
commit4cc8c14293aadcfe104efff22763f8f44a5ac04d (patch)
tree2ad449f9293b834549ed5c38aff25defc48ad184 /src/sources/soundsourceflac.h
parent8956859e964f5317ca25e59e435baea3ba72ec41 (diff)
Rename FifoSampleBuffer to CircularSampleBuffer
Diffstat (limited to 'src/sources/soundsourceflac.h')
-rw-r--r--src/sources/soundsourceflac.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/sources/soundsourceflac.h b/src/sources/soundsourceflac.h
index 08771c03da..01e45aec8a 100644
--- a/src/sources/soundsourceflac.h
+++ b/src/sources/soundsourceflac.h
@@ -3,11 +3,10 @@
#include "sources/soundsource.h"
-#include "fifosamplebuffer.h"
-
#include <FLAC/stream_decoder.h>
#include <QFile>
+#include "../circularsamplebuffer.h"
namespace Mixxx {
@@ -61,7 +60,7 @@ private:
CSAMPLE m_sampleScaleFactor;
- FifoSampleBuffer m_sampleBuffer;
+ CircularSampleBuffer m_sampleBuffer;
SINT m_curFrameIndex;
};