From 766cf37fafcd08e6ad15f7e62423190664c78ef5 Mon Sep 17 00:00:00 2001 From: kevin Date: Fri, 1 Mar 2013 17:30:50 -0800 Subject: [PATCH] cmProc.h,cmProcObj.c: Comment updates. --- cmProc.h | 2 +- cmProcObj.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmProc.h b/cmProc.h index 0f31725..7908c46 100644 --- a/cmProc.h +++ b/cmProc.h @@ -48,7 +48,7 @@ extern "C" { { cmObj obj; unsigned bufSmpCnt; // wndSmpCnt + hopSmpCnt - cmSample_t* bufV; + cmSample_t* bufV; // bufV[bufSmpCnt] all other pointers use this memory cmSample_t* outV; // output window outV[ outN ] unsigned outN; // outN == wndSmpCnt unsigned procSmpCnt; // input sample count diff --git a/cmProcObj.c b/cmProcObj.c index 96aae81..949a008 100644 --- a/cmProcObj.c +++ b/cmProcObj.c @@ -182,7 +182,7 @@ cmRC_t cmMtxFileClose( cmMtxFile* p ) return cmOkRC; } -cmRC_t cmMtxFileFloatExec( cmMtxFile* p, const float* inPtr, unsigned inCnt, unsigned inStride ) +cmRC_t cmMtxFileFloatExec( cmMtxFile* p, const float* inPtr, unsigned inCnt, unsigned inStride ) { const float* ep = inPtr + (inCnt * inStride); for(; inPtr < ep; inPtr+=inStride ) @@ -191,7 +191,7 @@ cmRC_t cmMtxFileFloatExec( cmMtxFile* p, const float* inPtr, unsigned return cmOkRC; } -cmRC_t cmMtxFileDoubleExec( cmMtxFile* p, const double* inPtr, unsigned inCnt, unsigned inStride ) +cmRC_t cmMtxFileDoubleExec( cmMtxFile* p, const double* inPtr, unsigned inCnt, unsigned inStride ) { const double* ep = inPtr + (inCnt * inStride); for(; inPtr < ep; inPtr+=inStride ) @@ -201,7 +201,7 @@ cmRC_t cmMtxFileDoubleExec( cmMtxFile* p, const double* inPtr, unsigned return cmOkRC; } -cmRC_t cmMtxFileComplexExec( cmMtxFile* p, const cmComplexR_t* inPtr, unsigned inCnt, unsigned inStride ) +cmRC_t cmMtxFileComplexExec( cmMtxFile* p, const cmComplexR_t* inPtr, unsigned inCnt, unsigned inStride ) { const cmComplexR_t* sp = inPtr; const cmComplexR_t* ep = inPtr + (inCnt * inStride);