annotate src/wav/wav-sndfile.c @ 1263:458d46e65a86

wav-sndfile: in is_our_file, ensure that filename is not NULL before passing it to sf_open
author Giacomo Lozito <james@develia.org>
date Fri, 13 Jul 2007 20:55:42 +0200
parents 5e41a7affccb
children 5fe8289b9aed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1 /* Audacious - Cross-platform multimedia player
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
2 * Copyright (C) 2005 Audacious development team.
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
3 *
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
4 * Based on the xmms_sndfile input plugin:
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
5 * Copyright (C) 2000, 2002 Erik de Castro Lopo
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
6 *
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
7 * This program is free software; you can redistribute it and/or modify
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
8 * it under the terms of the GNU General Public License as published by
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
9 * the Free Software Foundation; either version 2 of the License, or
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
10 * (at your option) any later version.
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
11 *
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
12 * This program is distributed in the hope that it will be useful,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
15 * GNU General Public License for more details.
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
16 *
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
17 * You should have received a copy of the GNU General Public License
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
18 * along with this program; if not, write to the Free Software
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
20 */
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
21
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
22 /*
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
23 * Rewritten 17-Feb-2007 (nenolod):
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
24 * - now uses conditional variables to ensure that sndfile mutex is
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
25 * entirely protected.
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
26 * - pausing works now
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
27 * - fixed some potential race conditions when dealing with NFS.
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
28 * - TITLE_LEN removed
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
29 */
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
30
528
4d8b92b55acf [svn] - add config.h includes where needed
nenolod
parents: 527
diff changeset
31 #ifdef HAVE_CONFIG_H
4d8b92b55acf [svn] - add config.h includes where needed
nenolod
parents: 527
diff changeset
32 # include "config.h"
4d8b92b55acf [svn] - add config.h includes where needed
nenolod
parents: 527
diff changeset
33 #endif
4d8b92b55acf [svn] - add config.h includes where needed
nenolod
parents: 527
diff changeset
34
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
35 #include <glib.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
36 #include <string.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
37 #include <math.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
38 #include <stdio.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
39
565
c2f3df58cad6 [svn] - make this compile again
nenolod
parents: 561
diff changeset
40 #include <audacious/plugin.h>
4
0ad4849f6219 [svn] - the first pass missed some libaudacious references, this fixes them
nenolod
parents: 0
diff changeset
41 #include <audacious/util.h>
0ad4849f6219 [svn] - the first pass missed some libaudacious references, this fixes them
nenolod
parents: 0
diff changeset
42 #include <audacious/titlestring.h>
527
d124034ebea3 [svn] - glib/gi18n.h -> audacious/i18n.h for automatic dgettext support
nenolod
parents: 12
diff changeset
43 #include <audacious/i18n.h>
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
44 #include "audacious/output.h"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
45 #include "wav-sndfile.h"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
46
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
47 #include <sndfile.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
48
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
49 static SNDFILE *sndfile = NULL;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
50 static SF_INFO sfinfo;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
51
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
52 static int song_length;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
53 static int bit_rate = 0;
862
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
54 static glong seek_time = -1;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
55
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
56 static GThread *decode_thread;
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
57 static GMutex *decode_mutex;
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
58 static GCond *decode_cond;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
59
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
60 InputPlugin wav_ip = {
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
61 NULL,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
62 NULL,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
63 NULL,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
64 plugin_init,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
65 wav_about,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
66 NULL,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
67 is_our_file,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
68 NULL,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
69 play_start,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
70 play_stop,
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
71 play_pause,
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
72 file_seek,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
73 NULL,
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
74 NULL,
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
75 NULL,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
76 NULL,
921
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
77 plugin_cleanup,
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
78 NULL,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
79 NULL,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
80 NULL,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
81 NULL,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
82 get_song_info,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
83 NULL,
862
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
84 NULL,
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
85 NULL,
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
86 NULL,
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
87 NULL,
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
88 NULL,
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
89 NULL,
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
90 file_mseek,
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
91 };
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
92
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
93 int
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
94 get_song_length (char *filename)
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
95 {
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
96 SNDFILE *tmp_sndfile;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
97 SF_INFO tmp_sfinfo;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
98
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
99 if (! (tmp_sndfile = sf_open (filename, SFM_READ, &tmp_sfinfo)))
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
100 return 0;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
101
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
102 sf_close (tmp_sndfile);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
103 tmp_sndfile = NULL;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
104
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
105 if (tmp_sfinfo.samplerate <= 0)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
106 return 0;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
107
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
108 return (int) ceil (1000.0 * tmp_sfinfo.frames / tmp_sfinfo.samplerate);
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
109 }
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
110
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
111 static gchar *get_title(char *filename)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
112 {
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
113 gchar *title;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
114 title = g_path_get_basename(filename);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
115 return title;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
116 }
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
117
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
118 static void
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
119 plugin_init (void)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
120 {
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
121 seek_time = -1;
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
122
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
123 decode_mutex = g_mutex_new();
921
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
124 decode_cond = g_cond_new();
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
125 }
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
126
921
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
127 static void
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
128 plugin_cleanup (void)
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
129 {
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
130 g_cond_free(decode_cond);
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
131 g_mutex_free(decode_mutex);
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
132 }
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
133
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
134 static int
1242
5e41a7affccb adapt wav-sndfile for file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1063
diff changeset
135 is_our_file (char *fileuri)
664
52b8efa55fcf [svn] - wav-sndfile engine: correctly compute the bitrate
nenolod
parents: 565
diff changeset
136 {
52b8efa55fcf [svn] - wav-sndfile engine: correctly compute the bitrate
nenolod
parents: 565
diff changeset
137 SNDFILE *tmp_sndfile;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
138 SF_INFO tmp_sfinfo;
1242
5e41a7affccb adapt wav-sndfile for file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1063
diff changeset
139 gchar *filename = g_filename_from_uri(fileuri, NULL, NULL);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
140
1263
458d46e65a86 wav-sndfile: in is_our_file, ensure that filename is not NULL before passing it to sf_open
Giacomo Lozito <james@develia.org>
parents: 1242
diff changeset
141 if (filename == NULL)
458d46e65a86 wav-sndfile: in is_our_file, ensure that filename is not NULL before passing it to sf_open
Giacomo Lozito <james@develia.org>
parents: 1242
diff changeset
142 return FALSE;
458d46e65a86 wav-sndfile: in is_our_file, ensure that filename is not NULL before passing it to sf_open
Giacomo Lozito <james@develia.org>
parents: 1242
diff changeset
143
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
144 /* Have to open the file to see if libsndfile can handle it. */
1242
5e41a7affccb adapt wav-sndfile for file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1063
diff changeset
145 if (! (tmp_sndfile = sf_open (filename, SFM_READ, &tmp_sfinfo))) {
5e41a7affccb adapt wav-sndfile for file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1063
diff changeset
146 g_free(filename);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
147 return FALSE;
1263
458d46e65a86 wav-sndfile: in is_our_file, ensure that filename is not NULL before passing it to sf_open
Giacomo Lozito <james@develia.org>
parents: 1242
diff changeset
148 }
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
149
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
150 /* It can so close file and return TRUE. */
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
151 sf_close (tmp_sndfile);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
152 tmp_sndfile = NULL;
1242
5e41a7affccb adapt wav-sndfile for file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1063
diff changeset
153 g_free(filename);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
154
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
155 return TRUE;
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
156 }
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
157
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
158 static gpointer
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
159 play_loop (gpointer arg)
664
52b8efa55fcf [svn] - wav-sndfile engine: correctly compute the bitrate
nenolod
parents: 565
diff changeset
160 {
52b8efa55fcf [svn] - wav-sndfile engine: correctly compute the bitrate
nenolod
parents: 565
diff changeset
161 static short buffer [BUFFER_SIZE];
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
162 int samples;
561
914c96de3244 [svn] Convert plugins to use InputPlayback.output instead of InputPlugin.output
iabervon
parents: 528
diff changeset
163 InputPlayback *playback = arg;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
164
666
a06edd6bfde6 [svn] - some further adjustments
nenolod
parents: 665
diff changeset
165 for (;;)
a06edd6bfde6 [svn] - some further adjustments
nenolod
parents: 665
diff changeset
166 {
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
167 GTimeVal sleeptime;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
168
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
169 /* sf_read_short will return 0 for all reads at EOF. */
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
170 samples = sf_read_short (sndfile, buffer, BUFFER_SIZE);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
171
921
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
172 if (samples > 0 && playback->playing == TRUE) {
862
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
173 while ((playback->output->buffer_free () < samples) &&
921
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
174 playback->playing == TRUE) {
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
175 g_get_current_time(&sleeptime);
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
176 g_time_val_add(&sleeptime, 500000);
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
177 g_mutex_lock(decode_mutex);
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
178 g_cond_timed_wait(decode_cond, decode_mutex, &sleeptime);
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
179 g_mutex_unlock(decode_mutex);
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
180
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
181 if (playback->playing == FALSE)
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
182 break;
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
183 }
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
184
561
914c96de3244 [svn] Convert plugins to use InputPlayback.output instead of InputPlugin.output
iabervon
parents: 528
diff changeset
185 produce_audio (playback->output->written_time (), FMT_S16_NE, sfinfo.channels,
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
186 samples * sizeof (short), buffer, &playback->playing);
921
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
187 }
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
188 else {
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
189 while(playback->output->buffer_playing()) {
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
190 g_get_current_time(&sleeptime);
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
191 g_time_val_add(&sleeptime, 500000);
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
192 g_mutex_lock(decode_mutex);
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
193 g_cond_timed_wait(decode_cond, decode_mutex, &sleeptime);
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
194 g_mutex_unlock(decode_mutex);
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
195
921
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
196 if(playback->playing == FALSE)
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
197 break;
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
198 }
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
199
667
836cbe95ec5d [svn] - make use of playlist->eof effectively.
nenolod
parents: 666
diff changeset
200 playback->eof = TRUE;
836cbe95ec5d [svn] - make use of playlist->eof effectively.
nenolod
parents: 666
diff changeset
201 playback->playing = FALSE;
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
202
667
836cbe95ec5d [svn] - make use of playlist->eof effectively.
nenolod
parents: 666
diff changeset
203 g_mutex_unlock(decode_mutex);
836cbe95ec5d [svn] - make use of playlist->eof effectively.
nenolod
parents: 666
diff changeset
204 break;
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
205 }
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
206
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
207 /* Do seek if seek_time is valid. */
921
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
208 if (seek_time >= 0) {
862
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
209 sf_seek (sndfile, (sf_count_t)((gint64)seek_time * (gint64)sfinfo.samplerate / 1000L),
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
210 SEEK_SET);
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
211 playback->output->flush (seek_time);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
212 seek_time = -1;
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
213 }
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
214
666
a06edd6bfde6 [svn] - some further adjustments
nenolod
parents: 665
diff changeset
215 if (playback->playing == FALSE)
a06edd6bfde6 [svn] - some further adjustments
nenolod
parents: 665
diff changeset
216 break;
a06edd6bfde6 [svn] - some further adjustments
nenolod
parents: 665
diff changeset
217 }
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
218
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
219 sf_close (sndfile);
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
220 sndfile = NULL;
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
221 seek_time = -1;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
222
666
a06edd6bfde6 [svn] - some further adjustments
nenolod
parents: 665
diff changeset
223 playback->output->close_audio();
a06edd6bfde6 [svn] - some further adjustments
nenolod
parents: 665
diff changeset
224
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
225 g_thread_exit (NULL);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
226 return NULL;
666
a06edd6bfde6 [svn] - some further adjustments
nenolod
parents: 665
diff changeset
227 }
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
228
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
229 static void
561
914c96de3244 [svn] Convert plugins to use InputPlayback.output instead of InputPlugin.output
iabervon
parents: 528
diff changeset
230 play_start (InputPlayback *playback)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
231 {
1242
5e41a7affccb adapt wav-sndfile for file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1063
diff changeset
232 gchar *filename = g_filename_from_uri(playback->filename, NULL, NULL);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
233 int pcmbitwidth;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
234 gchar *song_title;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
235
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
236 if (sndfile)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
237 return;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
238
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
239 pcmbitwidth = 32;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
240
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
241 song_title = get_title(filename);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
242
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
243 if (! (sndfile = sf_open (filename, SFM_READ, &sfinfo)))
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
244 return;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
245
664
52b8efa55fcf [svn] - wav-sndfile engine: correctly compute the bitrate
nenolod
parents: 565
diff changeset
246 bit_rate = sfinfo.samplerate * pcmbitwidth;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
247
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
248 if (sfinfo.samplerate > 0)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
249 song_length = (int) ceil (1000.0 * sfinfo.frames / sfinfo.samplerate);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
250 else
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
251 song_length = 0;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
252
561
914c96de3244 [svn] Convert plugins to use InputPlayback.output instead of InputPlugin.output
iabervon
parents: 528
diff changeset
253 if (! playback->output->open_audio (FMT_S16_NE, sfinfo.samplerate, sfinfo.channels))
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
254 {
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
255 sf_close (sndfile);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
256 sndfile = NULL;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
257 return;
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
258 }
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
259
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
260 wav_ip.set_info (song_title, song_length, bit_rate, sfinfo.samplerate, sfinfo.channels);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
261 g_free (song_title);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
262
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
263 playback->playing = TRUE;
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
264
561
914c96de3244 [svn] Convert plugins to use InputPlayback.output instead of InputPlugin.output
iabervon
parents: 528
diff changeset
265 decode_thread = g_thread_create ((GThreadFunc)play_loop, playback, TRUE, NULL);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
266
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
267 }
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
268
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
269 static void
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
270 play_pause (InputPlayback *playback, gshort p)
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
271 {
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
272 playback->output->pause(p);
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
273 }
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
274
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
275 static void
561
914c96de3244 [svn] Convert plugins to use InputPlayback.output instead of InputPlugin.output
iabervon
parents: 528
diff changeset
276 play_stop (InputPlayback *playback)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
277 {
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
278 if (decode_thread == NULL)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
279 return;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
280
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
281 g_mutex_lock(decode_mutex);
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
282 playback->playing = FALSE;
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
283 g_mutex_unlock(decode_mutex);
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
284 g_cond_signal(decode_cond);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
285
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
286 g_thread_join (decode_thread);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
287
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
288 sndfile = NULL;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
289 decode_thread = NULL;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
290 seek_time = -1;
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
291 }
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
292
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
293 static void
862
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
294 file_mseek (InputPlayback *playback, gulong millisecond)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
295 {
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
296 if (! sfinfo.seekable)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
297 return;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
298
862
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
299 seek_time = (glong)millisecond;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
300
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
301 while (seek_time != -1)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
302 xmms_usleep (80000);
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
303 }
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
304
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
305 static void
862
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
306 file_seek (InputPlayback *playback, int time)
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
307 {
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
308 gulong millisecond = time * 1000;
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
309 file_mseek(playback, millisecond);
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
310 }
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
311
baa22cb0216d [svn] - add mseek support.
yaz
parents: 667
diff changeset
312 static void
1242
5e41a7affccb adapt wav-sndfile for file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1063
diff changeset
313 get_song_info (char *fileuri, char **title, int *length)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
314 {
1242
5e41a7affccb adapt wav-sndfile for file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1063
diff changeset
315 gchar *filename = g_filename_from_uri(fileuri, NULL, NULL);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
316 (*length) = get_song_length(filename);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
317 (*title) = get_title(filename);
1242
5e41a7affccb adapt wav-sndfile for file:// scheme.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1063
diff changeset
318 g_free(filename);
665
86570de2f4e6 [svn] Rewrote the entire plugin:
nenolod
parents: 664
diff changeset
319 }
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
320
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
321 static void wav_about(void)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
322 {
921
8b0850943335 [svn] - now wav plugin can handle remaining buffered data at the end of playing.
yaz
parents: 862
diff changeset
323 static GtkWidget *box;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
324 if (!box)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
325 {
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
326 box = xmms_show_message(
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
327 _("About sndfile WAV support"),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
328 _("Adapted for Audacious usage by Tony Vroon <chainsaw@gentoo.org>\n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
329 "from the xmms_sndfile plugin which is:\n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
330 "Copyright (C) 2000, 2002 Erik de Castro Lopo\n\n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
331 "This program is free software ; you can redistribute it and/or modify \n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
332 "it under the terms of the GNU General Public License as published by \n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
333 "the Free Software Foundation ; either version 2 of the License, or \n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
334 "(at your option) any later version. \n \n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
335 "This program is distributed in the hope that it will be useful, \n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
336 "but WITHOUT ANY WARRANTY ; without even the implied warranty of \n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
337 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
338 "See the GNU General Public License for more details. \n\n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
339 "You should have received a copy of the GNU General Public \n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
340 "License along with this program ; if not, write to \n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
341 "the Free Software Foundation, Inc., \n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
342 "51 Franklin Street, Fifth Floor, \n"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
343 "Boston, MA 02110-1301 USA"),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
344 _("Ok"), FALSE, NULL, NULL);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
345 g_signal_connect(G_OBJECT(box), "destroy",
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
346 (GCallback)gtk_widget_destroyed, &box);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
347 }
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
348 }
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
349
1063
872a2f7d3f6e [svn] - port to plugin2 API
nenolod
parents: 921
diff changeset
350 void init(void)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
351 {
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
352 wav_ip.description = g_strdup_printf(_("sndfile WAV plugin"));
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
353 }
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
354
1063
872a2f7d3f6e [svn] - port to plugin2 API
nenolod
parents: 921
diff changeset
355 void fini(void)
872a2f7d3f6e [svn] - port to plugin2 API
nenolod
parents: 921
diff changeset
356 {
872a2f7d3f6e [svn] - port to plugin2 API
nenolod
parents: 921
diff changeset
357 g_free(wav_ip.description);
872a2f7d3f6e [svn] - port to plugin2 API
nenolod
parents: 921
diff changeset
358 }
872a2f7d3f6e [svn] - port to plugin2 API
nenolod
parents: 921
diff changeset
359
872a2f7d3f6e [svn] - port to plugin2 API
nenolod
parents: 921
diff changeset
360 InputPlugin *wav_iplist[] = { &wav_ip, NULL };
872a2f7d3f6e [svn] - port to plugin2 API
nenolod
parents: 921
diff changeset
361
872a2f7d3f6e [svn] - port to plugin2 API
nenolod
parents: 921
diff changeset
362 DECLARE_PLUGIN(wav-sndfile, init, fini, wav_iplist, NULL, NULL, NULL, NULL)