diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-07-15 10:43:35 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-07-15 10:43:35 +0000 |
commit | 81fa77aa9a1b3c5362fde36ee08ee92fe4c2e114 (patch) | |
tree | 25e00eea62ff3cd4e9eaa96f6ee7b9746334c545 | |
parent | 021dd70537fac1e785e350670e53c6c1a43dba25 (diff) | |
download | xine-lib-81fa77aa9a1b3c5362fde36ee08ee92fe4c2e114.tar.gz xine-lib-81fa77aa9a1b3c5362fde36ee08ee92fe4c2e114.tar.bz2 |
patch provided by eduard hasenleithner: make metronom accessible from decoders
CVS patchset: 283
CVS date: 2001/07/15 10:43:35
-rw-r--r-- | AUTHORS | 6 | ||||
-rw-r--r-- | TODO | 8 | ||||
-rw-r--r-- | src/xine-engine/load_plugins.c | 3 | ||||
-rw-r--r-- | src/xine-engine/xine_internal.h | 4 |
4 files changed, 19 insertions, 2 deletions
@@ -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) @@ -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; + }; /* |