comparison src/wav/wav-sndfile.c @ 1954:6acf1bda788b

Removed some extraneous includes.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 02 Oct 2007 02:20:03 +0300
parents 17a6441c71b6
children 5fa26178eaef
comparison
equal deleted inserted replaced
1953:6faf2562e523 1954:6acf1bda788b
36 36
37 #include <audacious/plugin.h> 37 #include <audacious/plugin.h>
38 #include <audacious/util.h> 38 #include <audacious/util.h>
39 #include <audacious/i18n.h> 39 #include <audacious/i18n.h>
40 #include <audacious/main.h> 40 #include <audacious/main.h>
41 #include <audacious/tuple.h>
42 #include <audacious/tuple_formatter.h>
43 #include <audacious/output.h> 41 #include <audacious/output.h>
44 #include "wav-sndfile.h" 42 #include "wav-sndfile.h"
45 43
46 #include <sndfile.h> 44 #include <sndfile.h>
47 45
496 while (seek_time != -1) 494 while (seek_time != -1)
497 g_usleep (80000); 495 g_usleep (80000);
498 } 496 }
499 497
500 static void 498 static void
501 file_seek (InputPlayback *playback, int time) 499 file_seek (InputPlayback *playback, gint time)
502 { 500 {
503 gulong millisecond = time * 1000; 501 gulong millisecond = time * 1000;
504 file_mseek(playback, millisecond); 502 file_mseek(playback, millisecond);
505 } 503 }
506 504
507 static void 505 static void
508 get_song_info (char *filename, char **title, int *length) 506 get_song_info (gchar *filename, gchar **title, gint *length)
509 { 507 {
510 (*length) = get_song_length(filename); 508 (*length) = get_song_length(filename);
511 (*title) = get_title(filename); 509 (*title) = get_title(filename);
512 } 510 }
513 511