cmDspKr.c : cmDspRecdPlayExec() now checks for disconnected inputs and outputs.

This commit is contained in:
Kevin Larke 2014-08-11 11:44:26 -07:00
parent 7d0888f97d
commit 18a21d5e96

View File

@ -2715,26 +2715,37 @@ cmDspRC_t _cmDspRecdPlayExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_
for(i=0; i<p->chCnt; ++i) for(i=0; i<p->chCnt; ++i)
{ {
if( i==0 ) if( cmDspIsAudioInputConnected(ctx,inst,kInAudioBasePrId+i) == false )
n = cmDspAudioBufSmpCount(ctx,inst,kInAudioBasePrId+i,0);
else
{ assert( n == cmDspAudioBufSmpCount(ctx,inst,kInAudioBasePrId+i,0)); }
x[i] = cmDspAudioBuf(ctx,inst,kInAudioBasePrId+i,0);
if( x[i] != NULL )
{ {
y[i] = cmDspAudioBuf(ctx,inst,p->audioOutBaseId+i,0); x[i] = NULL;
y[i] = NULL;
if( y[i] != NULL ) }
{ else
assert( n == cmDspAudioBufSmpCount(ctx,inst,p->audioOutBaseId+i,0)); {
if( i==0 )
cmVOS_Zero(y[i],n); n = cmDspAudioBufSmpCount(ctx,inst,kInAudioBasePrId+i,0);
else
actChCnt += 1; {
assert( n == cmDspAudioBufSmpCount(ctx,inst,kInAudioBasePrId+i,0));
} }
x[i] = cmDspAudioBuf(ctx,inst,kInAudioBasePrId+i,0);
if( x[i] != NULL )
{
y[i] = cmDspAudioBuf(ctx,inst,p->audioOutBaseId+i,0);
if( y[i] != NULL )
{
assert( n == cmDspAudioBufSmpCount(ctx,inst,p->audioOutBaseId+i,0));
cmVOS_Zero(y[i],n);
actChCnt += 1;
}
}
} }
} }