dungeon_crawler

view 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 source
1 #include "ovstream.h"
3 OggVorbisStream::OggVorbisStream()
4 {
5 ov_clear(&vf);
6 }
8 OggVorbisStream::~OggVorbisStream()
9 {
10 ov_clear(&vf);
11 }
13 bool OggVorbisStream::more_samples()
14 {
15 return false;
16 }