diff src/wav/wav.h @ 863:973d9b624987 trunk

[svn] - add mseek support to wav.c (without libsndfile version) too.
author yaz
date Thu, 15 Mar 2007 22:36:55 -0700
parents d5782f3bd760
children 1387432199cf
line wrap: on
line diff
--- a/src/wav/wav.h	Thu Mar 15 22:09:36 2007 -0700
+++ b/src/wav/wav.h	Thu Mar 15 22:36:55 2007 -0700
@@ -48,7 +48,8 @@
     short format_tag, channels, block_align, bits_per_sample, eof;
     long samples_per_sec, avg_bytes_per_sec;
     unsigned long position, length;
-    int seek_to, data_offset, going;
+    glong seek_to;
+    int data_offset, going;
     pid_t pid;
 } WaveFile;
 
@@ -60,5 +61,6 @@
 static void wav_pause(InputPlayback * data, short p);
 static int get_time(InputPlayback * data);
 static void get_song_info(char *filename, char **title, int *length);
+static void mseek(InputPlayback * data, gulong millisecond);
 
 #endif