Browse Source

cmProc.h,cmProcObj.c: Comment updates.

master
kevin 11 years ago
parent
commit
766cf37faf
2 changed files with 4 additions and 4 deletions
  1. 1
    1
      cmProc.h
  2. 3
    3
      cmProcObj.c

+ 1
- 1
cmProc.h View File

@@ -48,7 +48,7 @@ extern "C" {
48 48
   {
49 49
     cmObj       obj;
50 50
     unsigned    bufSmpCnt;  // wndSmpCnt + hopSmpCnt
51
-    cmSample_t* bufV;
51
+    cmSample_t* bufV;       // bufV[bufSmpCnt] all other pointers use this memory
52 52
     cmSample_t* outV;       // output window outV[ outN ]
53 53
     unsigned    outN;       // outN == wndSmpCnt
54 54
     unsigned    procSmpCnt; // input sample count

+ 3
- 3
cmProcObj.c View File

@@ -182,7 +182,7 @@ cmRC_t      cmMtxFileClose( cmMtxFile* p )
182 182
   return cmOkRC;
183 183
 }
184 184
 
185
-cmRC_t      cmMtxFileFloatExec(  cmMtxFile* p, const float*      inPtr, unsigned inCnt, unsigned inStride )
185
+cmRC_t      cmMtxFileFloatExec(  cmMtxFile* p, const float* inPtr, unsigned inCnt, unsigned inStride )
186 186
 {
187 187
   const float* ep = inPtr + (inCnt * inStride);
188 188
   for(; inPtr < ep; inPtr+=inStride )
@@ -191,7 +191,7 @@ cmRC_t      cmMtxFileFloatExec(  cmMtxFile* p, const float*      inPtr, unsigned
191 191
   return cmOkRC;
192 192
 }
193 193
 
194
-cmRC_t      cmMtxFileDoubleExec( cmMtxFile* p, const double*     inPtr, unsigned inCnt, unsigned inStride )
194
+cmRC_t      cmMtxFileDoubleExec( cmMtxFile* p, const double* inPtr, unsigned inCnt, unsigned inStride )
195 195
 {
196 196
   const double* ep = inPtr + (inCnt * inStride);
197 197
   for(; inPtr < ep; inPtr+=inStride )
@@ -201,7 +201,7 @@ cmRC_t      cmMtxFileDoubleExec( cmMtxFile* p, const double*     inPtr, unsigned
201 201
   return cmOkRC;
202 202
 }
203 203
 
204
-cmRC_t      cmMtxFileComplexExec( cmMtxFile* p, const cmComplexR_t*     inPtr, unsigned inCnt, unsigned inStride )
204
+cmRC_t      cmMtxFileComplexExec( cmMtxFile* p, const cmComplexR_t* inPtr, unsigned inCnt, unsigned inStride )
205 205
 {
206 206
   const cmComplexR_t* sp = inPtr;
207 207
   const cmComplexR_t* ep = inPtr + (inCnt * inStride);

Loading…
Cancel
Save