Mercurial > audlegacy-plugins
changeset 582:f9e813a27f9f trunk
[svn] - pass a valid InputPlayback handle to the play thread
author | nenolod |
---|---|
date | Tue, 30 Jan 2007 11:17:25 -0800 |
parents | c5022551db57 |
children | dad887da4642 |
files | ChangeLog src/console/Audacious_Driver.cxx |
diffstat | 2 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Tue Jan 30 11:05:31 2007 -0800 +++ b/ChangeLog Tue Jan 30 11:17:25 2007 -0800 @@ -1,3 +1,10 @@ +2007-01-30 19:05:31 +0000 Giacomo Lozito <james@develia.org> + revision [1248] + - mpg123: do not try to pick a tuple from http:// sources + trunk/src/mpg123/mpg123.c | 3 +++ + 1 file changed, 3 insertions(+) + + 2007-01-30 16:36:50 +0000 Giacomo Lozito <james@develia.org> revision [1246] - converted timidity plugin to InputPlayback
--- a/src/console/Audacious_Driver.cxx Tue Jan 30 11:05:31 2007 -0800 +++ b/src/console/Audacious_Driver.cxx Tue Jan 30 11:17:25 2007 -0800 @@ -372,7 +372,7 @@ pending_seek = -1; console_ip_is_going = 1; - decode_thread = g_thread_create( play_loop_track, NULL, TRUE, NULL ); + decode_thread = g_thread_create( play_loop_track, playback, TRUE, NULL ); } static void seek( InputPlayback * data, gint time )