aboutsummaryrefslogtreecommitdiff
path: root/drivers/theoraplayer/src/TheoraAudioInterface.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2015-09-26 14:50:42 -0300
committerJuan Linietsky2015-09-26 14:50:42 -0300
commitc858515785e2406bfc07da587ffc3bb353b7504c (patch)
treefcde74c2f42288dc95c1c7d3680f78f6398929c2 /drivers/theoraplayer/src/TheoraAudioInterface.cpp
parentce6fefced8b0ac6d3be886db5ee1234dba7ec544 (diff)
downloadgodot-c858515785e2406bfc07da587ffc3bb353b7504c.tar.gz
godot-c858515785e2406bfc07da587ffc3bb353b7504c.tar.zst
godot-c858515785e2406bfc07da587ffc3bb353b7504c.zip
Fixed theora playback. Removed theoraplayer.
Still need to get proper audio output latency in some platforms.
Diffstat (limited to 'drivers/theoraplayer/src/TheoraAudioInterface.cpp')
-rw-r--r--drivers/theoraplayer/src/TheoraAudioInterface.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/drivers/theoraplayer/src/TheoraAudioInterface.cpp b/drivers/theoraplayer/src/TheoraAudioInterface.cpp
deleted file mode 100644
index a265cb57b..000000000
--- a/drivers/theoraplayer/src/TheoraAudioInterface.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-/************************************************************************************
-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()
-{
-
-}