Mercurial > audlegacy-plugins
changeset 576:ca3de84e2288 trunk
[svn] - build fix. adjust prototypes to new input API.
author | yaz |
---|---|
date | Mon, 29 Jan 2007 17:47:57 -0800 |
parents | 643de80b5bf1 |
children | 8182837f7a82 |
files | ChangeLog src/flac113/plugin.c |
diffstat | 2 files changed, 11 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Jan 29 09:14:19 2007 -0800 +++ b/ChangeLog Mon Jan 29 17:47:57 2007 -0800 @@ -1,3 +1,10 @@ +2007-01-29 17:14:19 +0000 Giacomo Lozito <james@develia.org> + revision [1236] + - aosd: added missing header in Makefile + trunk/src/aosd/Makefile | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2007-01-29 16:40:14 +0000 Giacomo Lozito <james@develia.org> revision [1234] - aosd: paranoid fixes part 2
--- a/src/flac113/plugin.c Mon Jan 29 09:14:19 2007 -0800 +++ b/src/flac113/plugin.c Mon Jan 29 17:47:57 2007 -0800 @@ -78,10 +78,10 @@ static void FLAC_XMMS__init(); static int FLAC_XMMS__is_our_file(char *filename); static int FLAC_XMMS__is_our_file_from_vfs(char *filename, VFSFile *vfsfile); -static void FLAC_XMMS__play_file(char *filename); -static void FLAC_XMMS__stop(); -static void FLAC_XMMS__pause(short p); -static void FLAC_XMMS__seek(int time); +static void FLAC_XMMS__play_file(InputPlayback *playback); +static void FLAC_XMMS__stop(InputPlayback *playback); +static void FLAC_XMMS__pause(InputPlayback *playback, short p); +static void FLAC_XMMS__seek(InputPlayback *playback, int time); static int FLAC_XMMS__get_time(); static void FLAC_XMMS__cleanup(); static void FLAC_XMMS__get_song_info(char *filename, char **title, int *length);