Mercurial > audlegacy
changeset 1516:3483fb26b9fb trunk
[svn] - when audacious is started and track detail on current song are requested, try to check if a decoder exists before falling back to the tuple display dialog
author | giacomo |
---|---|
date | Mon, 07 Aug 2006 16:34:31 -0700 |
parents | 56818382846e |
children | 1890cc16419f |
files | ChangeLog audacious/playlist.c |
diffstat | 2 files changed, 12 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Aug 07 04:19:43 2006 -0700 +++ b/ChangeLog Mon Aug 07 16:34:31 2006 -0700 @@ -1,3 +1,11 @@ +2006-08-07 11:19:43 +0000 Tony Vroon <chainsaw@gentoo.org> + revision [1944] + Endianness fix by Luca Barbato <lu_zero@gentoo.org>. + + Changes: Modified: + +3 -1 trunk/Plugins/Input/sexypsf/PsxMem.h + + 2006-08-07 09:26:07 +0000 William Pitcock <nenolod@nenolod.net> revision [1942] - indentation cleanups
--- a/audacious/playlist.c Mon Aug 07 04:19:43 2006 -0700 +++ b/audacious/playlist.c Mon Aug 07 16:34:31 2006 -0700 @@ -2181,7 +2181,7 @@ { entry = node->data; tuple = entry->tuple; - path = g_strdup(entry->filename); + path = g_strdup(entry->filename); } PLAYLIST_UNLOCK(); @@ -2224,7 +2224,9 @@ if (playlist_get() && playlist_position) { path = g_strdup(playlist_position->filename); - tuple = playlist_position->tuple; + if ( playlist_position->tuple == NULL ) + playlist_entry_get_info(playlist_position); + tuple = playlist_position->tuple; } PLAYLIST_UNLOCK();