Browse Source

cmProc4.c : cmRecdPlayInsertRecord() now sets frag.recdIdx field to the actual number of sample

frames read rather than the number allocated.
master
kevin 11 years ago
parent
commit
fd61da603f
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      cmProc4.c

+ 2
- 0
cmProc4.c View File

4386
       if( cmAudioFileReadSample(afH,afInfo.frameCnt,chIdx,chCnt,p->frags[i].chArray, &actFrmCnt) != kOkAfRC )
4386
       if( cmAudioFileReadSample(afH,afInfo.frameCnt,chIdx,chCnt,p->frags[i].chArray, &actFrmCnt) != kOkAfRC )
4387
         return cmCtxRtCondition(&p->obj, cmSubSysFailRC, "Read failed on the audio file '%s'.",cmStringNullGuard(wavFn));
4387
         return cmCtxRtCondition(&p->obj, cmSubSysFailRC, "Read failed on the audio file '%s'.",cmStringNullGuard(wavFn));
4388
 
4388
 
4389
+      p->frags[i].recdIdx  = actFrmCnt;
4390
+
4389
       return rc;
4391
       return rc;
4390
     }
4392
     }
4391
 
4393
 

Loading…
Cancel
Save