summaryrefslogtreecommitdiff
path: root/apps/codecs/Tremor/ivorbisfile.h
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2005-02-19 11:58:42 +0000
committerDave Chapman <dave@dchapman.com>2005-02-19 11:58:42 +0000
commit52e43cb6e164627993dc1ef4edc0eeb0bd7f21dd (patch)
tree4f8b08fd31701c49205dbb59daefe6aa61476567 /apps/codecs/Tremor/ivorbisfile.h
parent8243127dc4986bbd3225cb090fcc0c290fb87937 (diff)
downloadrockbox-52e43cb6e164627993dc1ef4edc0eeb0bd7f21dd.tar.gz
rockbox-52e43cb6e164627993dc1ef4edc0eeb0bd7f21dd.zip
Cosmetic changes to remove compiler warnings and compile cleanly under Rockbox
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6015 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/Tremor/ivorbisfile.h')
-rw-r--r--apps/codecs/Tremor/ivorbisfile.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/codecs/Tremor/ivorbisfile.h b/apps/codecs/Tremor/ivorbisfile.h
index dd773788a1..1ec0f7428b 100644
--- a/apps/codecs/Tremor/ivorbisfile.h
+++ b/apps/codecs/Tremor/ivorbisfile.h
@@ -26,6 +26,7 @@ extern "C"
26#include <stdio.h> 26#include <stdio.h>
27#include "ivorbiscodec.h" 27#include "ivorbiscodec.h"
28 28
29
29#define CHUNKSIZE 1024 30#define CHUNKSIZE 1024
30/* The function prototypes for the callbacks are basically the same as for 31/* The function prototypes for the callbacks are basically the same as for
31 * the stdio functions fread, fseek, fclose, ftell. 32 * the stdio functions fread, fseek, fclose, ftell.
@@ -86,11 +87,11 @@ typedef struct OggVorbis_File {
86} OggVorbis_File; 87} OggVorbis_File;
87 88
88extern int ov_clear(OggVorbis_File *vf); 89extern int ov_clear(OggVorbis_File *vf);
89extern int ov_open(FILE *f,OggVorbis_File *vf,char *initial,long ibytes); 90 //extern int ov_open(FILE *f,OggVorbis_File *vf,char *initial,long ibytes);
90extern int ov_open_callbacks(void *datasource, OggVorbis_File *vf, 91extern int ov_open_callbacks(void *datasource, OggVorbis_File *vf,
91 char *initial, long ibytes, ov_callbacks callbacks); 92 char *initial, long ibytes, ov_callbacks callbacks);
92 93
93extern int ov_test(FILE *f,OggVorbis_File *vf,char *initial,long ibytes); 94 //extern int ov_test(FILE *f,OggVorbis_File *vf,char *initial,long ibytes);
94extern int ov_test_callbacks(void *datasource, OggVorbis_File *vf, 95extern int ov_test_callbacks(void *datasource, OggVorbis_File *vf,
95 char *initial, long ibytes, ov_callbacks callbacks); 96 char *initial, long ibytes, ov_callbacks callbacks);
96extern int ov_test_open(OggVorbis_File *vf); 97extern int ov_test_open(OggVorbis_File *vf);