changeset 1230:a5d5f404b933 trunk

[svn] - attach a TitleInput tuple to the PlaylistEntry class.
author nenolod
date Wed, 14 Jun 2006 19:03:23 -0700
parents e4b17654a83b
children 502b369314c1
files ChangeLog audacious/playlist.h
diffstat 2 files changed, 16 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Jun 14 18:46:43 2006 -0700
+++ b/ChangeLog	Wed Jun 14 19:03:23 2006 -0700
@@ -1,3 +1,12 @@
+2006-06-15 01:46:43 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [1372]
+  - Add TitleInput.length member.
+  
+
+  Changes:        Modified:
+  +1 -0           trunk/libaudacious/titlestring.h  
+
+
 2006-06-15 00:57:58 +0000  William Pitcock <nenolod@nenolod.net>
   revision [1370]
   - oops
--- a/audacious/playlist.h	Wed Jun 14 18:46:43 2006 -0700
+++ b/audacious/playlist.h	Wed Jun 14 19:03:23 2006 -0700
@@ -1,4 +1,8 @@
-/*  XMMS - Cross-platform multimedia player
+/*  Audacious - Cross-platform multimedia player
+ *  Copyright (C) 2005-2006  William Pitcock, Tony Vroon, George Averill,
+ *                           Giacomo Lozito, Derek Pomery and Yoshiki Yazawa.
+ *
+ *  XMMS - Cross-platform multimedia player
  *  Copyright (C) 1998-2003  Peter Alm, Mikael Alm, Olle Hallnas,
  *                           Thomas Nilsson and 4Front Technologies
  *  Copyright (C) 1999-2003  Haavard Kvaalen
@@ -21,6 +25,7 @@
 #define PLAYLIST_H
 
 #include <glib.h>
+#include "libaudacious/titlestring.h"
 #include "input.h"
 
 typedef enum {
@@ -50,6 +55,7 @@
     gint length;
     gboolean selected;
     InputPlugin *decoder;
+    TitleInput *tuple;		/* cached entry tuple, if available */
 };
 
 typedef struct _PlaylistEntry PlaylistEntry;