search for: isplaying

Displaying 3 results from an estimated 3 matches for "isplaying".

Did you mean: displaying
2006 Jan 17
1
How to loop a Vobis sound ?
...erations virtual bool Play (); virtual void Stop () { alSourceStop (m_id); } virtual void Pause () { alSourcePause (m_id); } virtual void Rewind () { alSourceRewind (m_id); } // 3. Update if buffers are queued virtual bool Update (); // Update Queued Buffers bool IsPlaying (); void Empty (); // Empty Queued Buffer // play attributes // called after current buffer is set. // n: number of repeats, n < 0: Infinite Loop, n = [0,1]: play once, #define AL_SRC_LOOP -1 void SetRepeats (int n); void Volume (ALfloat fVol) { alSourcef (m_id, AL_G...
2012 Aug 24
2
TukeyHSD output
Hi all, Is there a R-function that orders Tukey results with conveniant letters, similar to the SPSS output (A, AB, ABC, C, etc.) . [[alternative HTML version deleted]]
2007 Apr 12
1
Seek problem 2 - reinitialization of the decoder
...t Vorbis. bufferData(); (Same code as pasted in the the seek problem 1 mail) Now, I need to get back into the decoding loop. I do this exactly the same way as when the decoder starts up just after the first initialization: while (ogg_sync_pageout(&sync, &page)) queuePage(); while (isPlaying) { const int result = ogg_stream_packetout(&tstream, &packet); if (result == 0) { // Not enough data... load some more pages! bufferData(); } else if (result > 0) { theora_decode_packetin(&decoder, &packet); int videoBufferTime = theora_granule_time(&decoder,...