annotate src/flacng/plugin.h @ 1871:0380796ac439

Automated merge with http://hg.atheme.org/audacious-plugins
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 25 Sep 2007 18:16:34 +0300
parents 654aa79e43ef
children 5395c85a8724
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
930
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff changeset
1 #ifndef _PLUGIN_H
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff changeset
2 #define _PLUGIN_H
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff changeset
3
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff changeset
4 void flac_init(void);
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff changeset
5 void flac_aboutbox(void);
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff changeset
6 gboolean flac_is_our_file(gchar* filename);
1258
486bbb62c3c1 - Fixes for flac_is_our_fd
Ralf Ertzinger <ralf@skytale.net>
parents: 930
diff changeset
7 gboolean flac_is_our_fd(gchar* filename, VFSFile* fd);
930
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff changeset
8 void flac_play_file (InputPlayback* input);
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff changeset
9 void flac_stop(InputPlayback* input);
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff changeset
10 void flac_pause(InputPlayback* input, gshort p);
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff changeset
11 void flac_seek(InputPlayback* input, gint time);
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff changeset
12 void flac_get_song_info(gchar* filename, gchar** title, gint* length);
1435
654aa79e43ef flacng: new tuple API
William Pitcock <nenolod@atheme-project.org>
parents: 1258
diff changeset
13 Tuple *flac_get_song_tuple(gchar* filename);
930
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff changeset
14
2f742d127b3e [svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff changeset
15 #endif