vis: needs a start function to load
authortheuni <theuni-nospam-@xbmc.org>
Sat, 3 Sep 2011 20:06:42 +0000 (16:06 -0400)
committertheuni <theuni-nospam-@xbmc.org>
Sat, 3 Sep 2011 21:04:56 +0000 (17:04 -0400)
xbmc/visualizations/WaveForm/Main_gles.cpp

index aa9624f..15fa86f 100644 (file)
@@ -189,6 +189,12 @@ extern "C" void Render()
   glEnable(GL_BLEND);
   
 }
+
+extern "C" void Start(int iChannels, int iSamplesPerSec, int iBitsPerSample, const char* szSongName)
+{
+  //printf("Got Start Command\n");
+}
+
 extern "C" void AudioData(const short* pAudioData, int iAudioDataLength, float *pFreqData, int iFreqDataLength)
 {
   int ipos=0;