Displaying 1 result from an estimated 1 matches for "music_queu".
Did you mean:
music_queue
2012 May 27
1
Thread Problem.
.../*STRM_BUF_PAGESIZE*/4096 - total_bytes_read,
&dummy);
if(bytes_read < 0)
{
Printf("\nov_read error");
}
else if(bytes_read == 0)
{
// End of data
if(!music_queue.empty())
{
ov_clear(&strm.ovf);
// Get next song
strm.raw_ogg = music_queue[0];
music_queue.pop_front();
strm.pos = 0;
if(strm.raw_ogg != NULL)...