|
@@ -34,13 +34,13 @@ namespace lullaby
|
|
|
/**
|
|
|
* CALLBACK FUNCTIONS
|
|
|
**/
|
|
|
-int vorbisClose(void * /* ptr to the data that the vorbis files need*/)
|
|
|
+static int vorbisClose(void * /* ptr to the data that the vorbis files need*/)
|
|
|
{
|
|
|
// Does nothing (handled elsewhere)
|
|
|
return 1;
|
|
|
}
|
|
|
|
|
|
-size_t vorbisRead(void *ptr /* ptr to the data that the vorbis files need*/,
|
|
|
+static size_t vorbisRead(void *ptr /* ptr to the data that the vorbis files need*/,
|
|
|
size_t byteSize /* how big a byte is*/,
|
|
|
size_t sizeToRead /* How much we can read*/,
|
|
|
void *datasource /* this is a pointer to the data we passed into ov_open_callbacks (our SOggFile struct*/)
|
|
@@ -72,7 +72,7 @@ size_t vorbisRead(void *ptr /* ptr to the data that the vorbis files need*/,
|
|
|
return actualSizeToRead;
|
|
|
}
|
|
|
|
|
|
-int vorbisSeek(void *datasource /* ptr to the data that the vorbis files need*/,
|
|
|
+static int vorbisSeek(void *datasource /* ptr to the data that the vorbis files need*/,
|
|
|
ogg_int64_t offset /*offset from the point we wish to seek to*/,
|
|
|
int whence /*where we want to seek to*/)
|
|
|
{
|
|
@@ -116,7 +116,7 @@ int vorbisSeek(void *datasource /* ptr to the data that the vorbis files need*/,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-long vorbisTell(void *datasource /* ptr to the data that the vorbis files need*/)
|
|
|
+static long vorbisTell(void *datasource /* ptr to the data that the vorbis files need*/)
|
|
|
{
|
|
|
SOggFile *vorbisData;
|
|
|
vorbisData = (SOggFile *) datasource;
|