diff options
Diffstat (limited to 'drivers/theoraplayer/src/TheoraAudioInterface.cpp')
-rw-r--r-- | drivers/theoraplayer/src/TheoraAudioInterface.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/drivers/theoraplayer/src/TheoraAudioInterface.cpp b/drivers/theoraplayer/src/TheoraAudioInterface.cpp new file mode 100644 index 0000000000..a265cb57b5 --- /dev/null +++ b/drivers/theoraplayer/src/TheoraAudioInterface.cpp @@ -0,0 +1,21 @@ +/************************************************************************************ +This source file is part of the Theora Video Playback Library +For latest info, see http://libtheoraplayer.googlecode.com +************************************************************************************* +Copyright (c) 2008-2014 Kresimir Spes (kspes@cateia.com) +This program is free software; you can redistribute it and/or modify it under +the terms of the BSD license: http://opensource.org/licenses/BSD-3-Clause +*************************************************************************************/ +#include "TheoraAudioInterface.h" + +TheoraAudioInterface::TheoraAudioInterface(TheoraVideoClip* owner, int nChannels, int freq) +{ + mFreq = freq; + mNumChannels = nChannels; + mClip = owner; +} + +TheoraAudioInterface::~TheoraAudioInterface() +{ + +} |