cmProc.h,cmProcObj.c: Comment updates.
This commit is contained in:
parent
e550f859c5
commit
766cf37faf
2
cmProc.h
2
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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user