in which Im a bit confused on what a certain line does, line 216 in the code..
1 2 3 4 5 6 7 8 9 10 11 12
typedefstruct
{
int frameIndex; /* Index into sample array. */
int maxFrameIndex;
SAMPLE *recordedSamples;
}
int main()
{
paTestData data;
data.recordedSamples = (SAMPLE *) malloc( numBytes ); /* From now on, recordedSamples is initialised. */
}