spaces to tabs
This commit is contained in:
parent
58719f32ac
commit
af5321c78e
@ -125,8 +125,8 @@ void ndspChnSetInterp(int id, ndspInterpType type)
|
||||
|
||||
ndspInterpType ndspChnGetInterp(int id)
|
||||
{
|
||||
ndspChnSt* chn = &ndspChn[id];
|
||||
return chn->interpType;
|
||||
ndspChnSt* chn = &ndspChn[id];
|
||||
return chn->interpType;
|
||||
}
|
||||
|
||||
void ndspChnSetRate(int id, float rate)
|
||||
@ -140,7 +140,7 @@ void ndspChnSetRate(int id, float rate)
|
||||
|
||||
float ndspChnGetRate(int id)
|
||||
{
|
||||
ndspChnSt* chn = &ndspChn[id];
|
||||
ndspChnSt* chn = &ndspChn[id];
|
||||
return chn->rate;
|
||||
}
|
||||
|
||||
@ -155,10 +155,10 @@ void ndspChnSetMix(int id, float mix[12])
|
||||
|
||||
void ndspChnGetMix(int id, float out_mix[12])
|
||||
{
|
||||
ndspChnSt* chn = &ndspChn[id];
|
||||
LightLock_Lock(&chn->lock);
|
||||
memcpy(out_mix, chn->mix, sizeof(ndspChn[id].mix));
|
||||
LightLock_Unlock(&chn->lock);
|
||||
ndspChnSt* chn = &ndspChn[id];
|
||||
LightLock_Lock(&chn->lock);
|
||||
memcpy(out_mix, chn->mix, sizeof(ndspChn[id].mix));
|
||||
LightLock_Unlock(&chn->lock);
|
||||
}
|
||||
|
||||
void ndspChnSetAdpcmCoefs(int id, u16 coefs[16])
|
||||
|
Loading…
Reference in New Issue
Block a user