changeset 2452:8659bb1b36a9 trunk

[svn] - InputPlayback: prepare to deprecate InputPlugin::seek()
author nenolod
date Wed, 31 Jan 2007 05:05:26 -0800
parents 579e2f7d17ad
children b0674600339d
files ChangeLog src/audacious/playback.c src/audacious/plugin.h
diffstat 3 files changed, 41 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Jan 31 02:20:19 2007 -0800
+++ b/ChangeLog	Wed Jan 31 05:05:26 2007 -0800
@@ -1,3 +1,41 @@
+2007-01-31 10:20:19 +0000  Kiyoshi Aman <kiyoshi.aman@gmail.com>
+  revision [3912]
+  Update translations [also fixes bad commit from Chainsaw]
+  
+  trunk/po/audacious.pot |   74 ++++++-
+  trunk/po/bg.po         |  108 ++++++----
+  trunk/po/br.po         |   82 +++++++-
+  trunk/po/cs.po         |  105 ++++++----
+  trunk/po/cy.po         |  499 ++++++++++++++++++++++++++-----------------------
+  trunk/po/de.po         |  129 ++++++++----
+  trunk/po/el.po         |  105 ++++++----
+  trunk/po/es.po         |  105 ++++++----
+  trunk/po/fi.po         |  106 ++++++----
+  trunk/po/fr.po         |  108 ++++++----
+  trunk/po/hi.po         |  106 ++++++----
+  trunk/po/hr.po         |  108 ++++++----
+  trunk/po/hu.po         |  108 ++++++----
+  trunk/po/it.po         |  105 ++++++----
+  trunk/po/ja.po         |  108 ++++++----
+  trunk/po/ka.po         |  106 ++++++----
+  trunk/po/ko.po         |  106 ++++++----
+  trunk/po/lt.po         |  106 ++++++----
+  trunk/po/mk.po         |  106 ++++++----
+  trunk/po/nl.po         |  127 +++++++-----
+  trunk/po/pl.po         |  108 ++++++----
+  trunk/po/pt_BR.po      |  106 ++++++----
+  trunk/po/ro.po         |  108 ++++++----
+  trunk/po/ru.po         |  108 ++++++----
+  trunk/po/sk.po         |  106 ++++++----
+  trunk/po/sr.po         |  109 ++++++----
+  trunk/po/sr@Latn.po    |  108 ++++++----
+  trunk/po/sv.po         |  107 ++++++----
+  trunk/po/uk.po         |  107 ++++++----
+  trunk/po/zh_CN.po      |  108 ++++++----
+  trunk/po/zh_TW.po      |  108 ++++++----
+  31 files changed, 2414 insertions(+), 1276 deletions(-)
+
+
 2007-01-31 10:11:07 +0000  Tony Vroon <chainsaw@gentoo.org>
   revision [3910]
   Conflict markers upset msgmerge. Removed them.
--- a/src/audacious/playback.c	Wed Jan 31 02:20:19 2007 -0800
+++ b/src/audacious/playback.c	Wed Jan 31 05:05:26 2007 -0800
@@ -291,7 +291,7 @@
     }
     
     free_vis_data();
-    get_current_input_playback()->plugin->seek(get_current_input_playback(), time);
+    get_current_input_playback()->seek_request = time;
     
     if (restore_pause)
     {
--- a/src/audacious/plugin.h	Wed Jan 31 02:20:19 2007 -0800
+++ b/src/audacious/plugin.h	Wed Jan 31 05:05:26 2007 -0800
@@ -156,6 +156,8 @@
     int playing;
     gboolean error;
     gboolean eof;
+
+    int seek_time;
 };
 
 struct _InputPlugin {