Displaying 1 result from an estimated 1 matches for "timeperpag".
Did you mean:
timeperpage
2005 Jun 29
2
Ogg Pages Play Time?
...veloping a P2P streaming application where each client has to dowload
the Ogg/Vorbis pages from other clients (peers) but I need to know how much
time I have to download the next Ogg/Vorbis page before the playback reaches
it.
Something like
numCurrPages = Total of Ogg Pages already downloaded
timePerPage = Playback duration of one Page
curPagePlaying = Current Ogg Page being decoded and played
nextPage = numCurrPages + 1
download nextPage before (numCurrPages - curPagePlaying)*timePerPage
This way I can give priorities to the pages I have to download for playback.
any coments are appreciated.....