DevMaster.net Forums
[[ Home | Forums | 3D Engines Database | Wiki | Articles/Tutorials | Game Dev Jobs | IRC Chat Network | Contact Us ]]

Go Back   DevMaster.net Forums > Programming & Development > Sound and Music Programming
User Name
Password
Register FAQ Members List Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Search this Thread Display Modes
Old 03-16-2004, 07:38 AM   #1
darwintn
New Member
 
Join Date: Mar 2004
Posts: 1
Default

Hi...I am using OGG streaming and OpenAL. However, I have a problem. I want to play OGG streams in loop, but when I try to set loop to a source, I find errors. I'm doing like this: when the file finishes, I load and play the file again, but sometimes a lag occurs. My question is: Is there a way to play OGG stream files in loop without this lag?? thanks
darwintn is offline   Reply With Quote
Old 03-16-2004, 08:56 AM   #2
davepermen
Senior Member
 
davepermen's Avatar
 
Join Date: Jan 2003
Location: Switzerland
Posts: 1,333
Default

i guess the same way it works for other types of streams, too, but i'm unsure.

then again, waiting for the OGG_EXT would be the most simple solution, hehe.

sorry, i'm not much help, as i don't have much Real Expirience with OpenAL.
___________________________________________
davepermen.net
-Loving a Person is having the wish to see this Person happy, no matter what that means to yourself.
-No matter what it means to myself....
davepermen is offline   Reply With Quote
Old 03-16-2004, 12:36 PM   #3
SpreeTree
Valued Member
 
SpreeTree's Avatar
 
Join Date: Jan 2004
Location: England
Posts: 265
Default

How are you loading your ogg files? Are they from disk or from memory? Im guessing your developing for Win32?

What u need to do (if you are using the ogg vorbis SDK) is to seek back to the begginning of the sample using (if loading the sample form disk) ov_time_seek(oggFileStream, 0) (or which ever seek function you are comfortable using). If loading from memory, then you will need to use your own seek function.

Though what davepermen said is more than true. This will probably be much easier to wait for native ogg vorbis support in the libs, but who knows when thats going to happen for the windows version!

Hope that helps
Spree
SpreeTree is offline   Reply With Quote
Old 03-27-2004, 07:27 PM   #4
caesar4
New Member
 
Join Date: Mar 2004
Posts: 9
Default

you are aware that when dealing with graphics, you usually use 2 buffers

for my ogg streamer, i too use 2 buffers, and the way it works:
[opening]
1)open ogg
2)load ogg info
3)calculate buffersize
a)get ogg length
b)calculate how many flips are required for a buffersize of 1 meg (u can change it)
c)round up the flipscount and recalculate buffersize
d){gave me headaches} if you are using 2 channel audio, the buffersize should always be even
4) allocate 2 sound buffers and 1 temprary memory buffer
5) decompress

[part 2, playing]
1) play first buffer
2) when playing buffer is finished, play secondary buffer, then load next portion into the previously playing buffer
for looping
a) when having reached end of file your next portion is the beginning of file
caesar4 is offline   Reply With Quote
Old 03-28-2004, 04:27 AM   #5
SpreeTree
Valued Member
 
SpreeTree's Avatar
 
Join Date: Jan 2004
Location: England
Posts: 265
Default

When using ogg files, it isn't required to calculate how many buffer re-fills are required. You can easily detect when you have reached the end of the file and (if you have a smallish buffer file about 4096 - 8192 bytes) it takes no time at all to decompress the file and load it so you only need the two buffers, so the memory buffer isnt really needed

Spree
SpreeTree is offline   Reply With Quote
Old 03-28-2004, 03:53 PM   #6
caesar4
New Member
 
Join Date: Mar 2004
Posts: 9
Default

i know that calculating the flipcount isnt necessary but it helps alot

as for the third, memory, buffer
i took it out and am using the buffer provided by dsound->Lock
now my streaming code runs even faster than fmod
caesar4 is offline   Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Forum Jump


All times are GMT -7. The time now is 05:46 AM.


Powered by vBulletin
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.