Csound Csound-dev Csound-tekno Search About

[bug fix] diskin

Date1998-04-04 20:31
From"Matt J. Ingalls"
Subject[bug fix] diskin

An old bug in diskin  in with the code merge:

change line 1127(or there abouts) in function
	newsndinset() in soundin.c:

	long nbytes = *p->iskptim * p->sr *p->sampframsiz;

to:

	long nbytes = (long)(*p->iskptim * p->sr) * p->sampframsiz;

for obvious reasons this produced problems with skip times that had a few
digits past the decimal point.

sorry for any problems,
-matt