changeset 2620:6393862824e5 trunk

[svn] - add millisecond seek function to InputPlugin API. with this function, cuesheet and encoder plugins can achieve higher accuracy.
author yaz
date Mon, 12 Mar 2007 10:55:24 -0700
parents 79e708bf75a4
children 83cd495dc898
files ChangeLog src/audacious/build_stamp.c src/audacious/plugin.h
diffstat 3 files changed, 12 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Mar 12 10:31:24 2007 -0700
+++ b/ChangeLog	Mon Mar 12 10:55:24 2007 -0700
@@ -1,3 +1,11 @@
+2007-03-12 17:31:24 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
+  revision [4250]
+  - version bump to 1.4.
+  
+  trunk/configure.ac |    3 +--
+  1 file changed, 1 insertion(+), 2 deletions(-)
+
+
 2007-03-12 00:05:07 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
   revision [4246]
   - add "Language-Team: Default (i18n-default@i18n.atheme.org)\n" to shut 
--- a/src/audacious/build_stamp.c	Mon Mar 12 10:31:24 2007 -0700
+++ b/src/audacious/build_stamp.c	Mon Mar 12 10:55:24 2007 -0700
@@ -1,2 +1,2 @@
 #include <glib.h>
-const gchar *svn_stamp = "20070312-4246";
+const gchar *svn_stamp = "20070312-4250";
--- a/src/audacious/plugin.h	Mon Mar 12 10:31:24 2007 -0700
+++ b/src/audacious/plugin.h	Mon Mar 12 10:55:24 2007 -0700
@@ -204,6 +204,9 @@
     /* Added in Audacious 1.3.0 */
     gint (*is_our_file_from_vfs) (gchar *filename, VFSFile *fd);
     gchar **vfs_extensions;
+
+    /* Added in Audacious 1.4.0 */
+    void (*mseek) (InputPlayback * playback, gulong millisecond);
 };
 
 struct _GeneralPlugin {