]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/performance-audio-sr.git/blobdiff - processor_audio_sdk_1_00_00_00/pasdk/common/audioStreamProc_config.h
Split Decoder Output Circular Buffer code between Master (DSP:init,read) and Slave...
[processor-sdk/performance-audio-sr.git] / processor_audio_sdk_1_00_00_00 / pasdk / common / audioStreamProc_config.h
index 53ed9b04e2b3d5fe42477f6a34f3728910fd0c38..6dabdfb66de2f9ead5645974e14c5e998bd8a31b 100644 (file)
@@ -37,8 +37,8 @@ All rights reserved.
 // Framework -- Configuration Declarations
 //
 
-#ifndef _AS1_F2_CONFIG_H_
-#define _AS1_F2_CONFIG_H_
+#ifndef _ASP_CONFIG_H_
+#define _ASP_CONFIG_H_
 
 #include <xdc/std.h>
 //#include <ti/procsdk_audio/procsdk_audio_typ.h>
@@ -59,7 +59,7 @@ All rights reserved.
 #include "as1-f2.h"
 #include "asp0.h"
 
-#include "paf_decOpCircBuf.h"
+#include "aspDecOpCircBuf_common.h"
 
 #ifdef HSE_MSGQ
 #include <msgq.h>
@@ -87,7 +87,6 @@ typedef struct PAF_AST_Decode {
     PAF_ASP_Chain       decChainData;
     ALG_Handle          decAlg[PAF_SOURCE_N];
     PAF_AudioFrame     *pAudioFrame;
-    PAF_DecodeOpCircBuf decOpCb;
 } PAF_AST_Decode;
 
 typedef struct PAF_AST_Stream {
@@ -125,22 +124,23 @@ typedef struct PAF_AST_MQ {
 #endif
 
 typedef struct PAF_AST_Config {
-    Int                 as;
-    ACP_Handle          acp;
-    ACP_Handle          acpSlave;
-    PAF_AST_InpBuf      *xInp; /* INPUT1 -INPUTN  */
-    PAF_AST_Decode      *xDec; /* DECODE1-DECODEN  */
-    PAF_AST_Stream      *xStr; /* STREAM1-STREAMN */
-    PAF_AST_Encode      *xEnc; /* ENCODE1-ENCODEN */
-    PAF_AST_OutBuf      *xOut; /* OUTPUT1-OUTPUTN */
-    SmInt               masterDec; // these two are computer based on MASTER input
-    SmInt               masterStr;
+    Int                  as;
+    //ACP_Handle           acp;
+    //ACP_Handle           acpSlave;
+    PAF_AST_InpBuf       *xInp;     /* INPUT1 -INPUTN  */
+    PAF_AST_Decode       *xDec;     /* DECODE1-DECODEN */
+    PAF_AST_Stream       *xStr;     /* STREAM1-STREAMN */
+    PAF_AST_Encode       *xEnc;     /* ENCODE1-ENCODEN */
+    PAF_AST_OutBuf       *xOut;     /* OUTPUT1-OUTPUTN */
+    PAF_AST_DecOpCircBuf *xDecOpCb; /* DECODE1-DECODEN */
+    SmInt                masterDec; // these two are computer based on MASTER input
+    SmInt                masterStr;
 #ifdef HSE_MSGQ
-    PAF_AST_MQ          mq;
+    PAF_AST_MQ           mq;
 #endif
 } PAF_AST_Config;
 
 extern PAF_AST_Config *pC;  /* Global configuration pointer */
 
 
-#endif  /* _AS1_F2_CONFIG_H_ */
+#endif  /* _ASP_CONFIG_H_ */