summaryrefslogtreecommitdiffstats
path: root/src/analyserqueue.h
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2013-12-31 04:37:39 -0500
committerRJ Ryan <rryan@mixxx.org>2013-12-31 04:37:39 -0500
commit5992c120cdb5cb65e430864cbec52a27f8ac3af6 (patch)
tree665108f1073adb90c8e57ac80900cfa764411388 /src/analyserqueue.h
parent9718ef7c2dd43585793048d229d58d71094cc3f8 (diff)
Don't allocate memory in AnalyserQueue::doAnalysis.
Diffstat (limited to 'src/analyserqueue.h')
-rw-r--r--src/analyserqueue.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/analyserqueue.h b/src/analyserqueue.h
index 9bd7efaf49..5fac00ef2b 100644
--- a/src/analyserqueue.h
+++ b/src/analyserqueue.h
@@ -63,6 +63,8 @@ class AnalyserQueue : public QThread {
bool m_exit;
QAtomicInt m_aiCheckPriorities;
+ SAMPLE* m_pSamplesPCM;
+ CSAMPLE* m_pSamples;
// The processing queue and associated mutex
QQueue<TrackPointer> m_tioq;