Displaying 1 result from an estimated 1 matches for "rawoggdata".
2012 May 27
1
Thread Problem.
...else
{
total_bytes_read += bytes_read;
}
}
}
-To explain what each variable is, the first variable in that function is
strm. It's a StreamInfo structure, which looks like this:
struct StreamInfo
{
OggVorbis_File ovf;
RawOggData *raw_ogg;
int pos;
u32 bufPage;
bool is_playing;
};
-At the moment strm is just a global variable. I've tried a few other
things with this such as having ReadStrmData take a StreamInfo pointer.
This has been recommended since the global variable is also referenced in
th...