]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/performance-audio-sr.git/commitdiff
PASDK-53: Don't need the 2nd Memtab in IB anymore. The scratch memory tab was used...
authorGovind Jeyaram <govind.j@ti.com>
Thu, 16 Feb 2017 22:30:27 +0000 (14:30 -0800)
committerGovind Jeyaram <govind.j@ti.com>
Thu, 16 Feb 2017 22:30:27 +0000 (14:30 -0800)
pasdk/test_dsp/framework/itopo/params.c

index 43b6ef0004f5e57276506d7ee582053d505773b3..0edd4247627ed4cc1fd1b0d2f2b7afa7b748ad7b 100644 (file)
@@ -607,7 +607,8 @@ const IALG_MemRec inpMemTabPrimary[] =
 
         // GJ Debug: The below is not required; hence 0
 
-    // IRAM scratch memory for autodetection and stereo PCM input
+#if 0
+        // IRAM scratch memory for autodetection and stereo PCM input
     // High watermark needs are set by the latter:
     // double buffer stereo 32bit PCM input 512 max frame size
     // 1 buffers * 512 samples/buffer * 2 words/sample * 4 bytes/word
@@ -618,11 +619,13 @@ const IALG_MemRec inpMemTabPrimary[] =
         IALG_SCRATCH,                                          // attrs
         NULL,                                                  // base
     }
+#endif
+
 };
 
 const PAF_SIO_IALG_Params inpSioAlgParamsPrimary =
 {
-    2,
+    1,
     inpMemTabPrimary
 };