aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputPlugins/ogg_plugin.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/inputPlugins/ogg_plugin.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/inputPlugins/ogg_plugin.c b/src/inputPlugins/ogg_plugin.c
index b681a27e0..472c2f229 100644
--- a/src/inputPlugins/ogg_plugin.c
+++ b/src/inputPlugins/ogg_plugin.c
@@ -46,26 +46,6 @@ typedef struct _OggCallbackData {
DecoderControl * dc;
} OggCallbackData;
-/* this is just for tag parsing for db import! */
-int getOggTotalTime(char * file) {
- OggVorbis_File vf;
- FILE * oggfp;
- int totalTime;
-
- if(!(oggfp = fopen(file,"r"))) return -1;
-
- if(ov_open(oggfp, &vf, NULL, 0) < 0) {
- fclose(oggfp);
- return -1;
- }
-
- totalTime = ov_time_total(&vf,-1)+0.5;
-
- ov_clear(&vf);
-
- return totalTime;
-}
-
size_t ogg_read_cb(void * ptr, size_t size, size_t nmemb, void * vdata)
{
size_t ret = 0;