dungeon_crawler

diff prototype/src/audio/ovstream.cc @ 53:1ea56011c1ff

stuff + streaming start
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 19 Sep 2012 01:08:41 +0300
parents
children 4c427e28ca00
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/prototype/src/audio/ovstream.cc	Wed Sep 19 01:08:41 2012 +0300
     1.3 @@ -0,0 +1,16 @@
     1.4 +#include "ovstream.h"
     1.5 +
     1.6 +OggVorbisStream::OggVorbisStream()
     1.7 +{
     1.8 +	ov_clear(&vf);
     1.9 +}
    1.10 +
    1.11 +OggVorbisStream::~OggVorbisStream()
    1.12 +{
    1.13 +	ov_clear(&vf);
    1.14 +}
    1.15 +
    1.16 +bool OggVorbisStream::more_samples()
    1.17 +{
    1.18 +	return false;
    1.19 +}