From 834502f09f70c8a37b1a8d6cba26dcbded5db977 Mon Sep 17 00:00:00 2001 From: Kevin Larke Date: Fri, 10 Apr 2015 11:59:39 -0700 Subject: [PATCH] sa/cmSaProc.c : Fixed bug where surroundstream.h/c inclusion was controlled by incorrect pre-processor flag. --- sa/cmSaProc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sa/cmSaProc.c b/sa/cmSaProc.c index 3765412..3899819 100644 --- a/sa/cmSaProc.c +++ b/sa/cmSaProc.c @@ -20,10 +20,11 @@ #include "cmSaProc.h" #include "cmVectOps.h" -#define SS_IMPL -#ifdef SS_IMPL +#ifdef CM_SONICART + #include "ss0/surroundstereo.h" #include "ss1/surroundstereo_1.h" + #else void binauralEncoderProcessInit(long pNumInputs, long frames, int hrtfSet) {} void binauralEncoderProcessSetPosition(int clientNum, float cazimuth, float celevation) {}