summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS6
-rw-r--r--TODO8
-rw-r--r--src/xine-engine/load_plugins.c3
-rw-r--r--src/xine-engine/xine_internal.h4
4 files changed, 19 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index 68cd28269..888cbfd5a 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -98,6 +98,12 @@ Contributions
Philip Stadermann <pstadermann@gmx.de>
arts audio server support
+ Eduard Hasenleithner <eduardh@aon.at>
+ dxr3 support
+
+ Matthias Hopf <Matthias.Hopf@informatik.uni-stuttgart.de>
+ IRIX port
+
(let us know if we've forgotten anyone)
diff --git a/TODO b/TODO
index 62ad4f84f..1cab463b2 100644
--- a/TODO
+++ b/TODO
@@ -53,6 +53,14 @@ Assigned tasks
Juergen Keil
+- dxr3 support, 4,5,5.1 multichannel audio
+
+ Eduard Hasenleithner
+
+- IRIX port
+
+ Matthias Hopf
+
Open Tasks
==========
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c
index b63100e11..268d70051 100644
--- a/src/xine-engine/load_plugins.c
+++ b/src/xine-engine/load_plugins.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: load_plugins.c,v 1.29 2001/07/10 21:07:56 f1rmb Exp $
+ * $Id: load_plugins.c,v 1.30 2001/07/15 10:43:35 guenter Exp $
*
*
* Load input/demux/audio_out/video_out/codec plugins
@@ -349,6 +349,7 @@ void load_decoder_plugins (xine_t *this,
int streamtype;
vdp = (video_decoder_t *) initplug(iface_version, config);
+ vdp->metronom = this->metronom;
for (streamtype = 0; streamtype<256; streamtype++) {
if (vdp->can_handle (vdp, (streamtype<<16) | BUF_VIDEO_BASE))
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h
index fb70f8cd6..8b2fac7e8 100644
--- a/src/xine-engine/xine_internal.h
+++ b/src/xine-engine/xine_internal.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_internal.h,v 1.30 2001/07/14 23:17:37 richwareham Exp $
+ * $Id: xine_internal.h,v 1.31 2001/07/15 10:43:35 guenter Exp $
*
*/
@@ -66,6 +66,8 @@ struct video_decoder_s {
char* (*get_identifier) (void);
+ metronom_t *metronom;
+
};
/*