diff options
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index 2e28fc6fc..0679e4ae2 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.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: xine.c,v 1.264 2003/11/15 14:00:35 miguelfreitas Exp $ + * $Id: xine.c,v 1.265 2003/11/15 20:43:11 mroi Exp $ */ /* @@ -387,7 +387,6 @@ xine_stream_t *xine_stream_new (xine_t *this, stream->err = 0; stream->next_audio_port = NULL; stream->next_video_port = NULL; - stream->metronom_prebuffer = PREBUFFER_PTS_OFFSET; stream->broadcaster = NULL; /* @@ -424,7 +423,7 @@ xine_stream_t *xine_stream_new (xine_t *this, * create a metronom */ - stream->metronom = _x_metronom_init ( (ao != NULL), stream); + stream->metronom = _x_metronom_init ( (ao != NULL), this); /* * alloc fifos, init and start decoder threads @@ -1305,7 +1304,7 @@ void xine_init (xine_t *this) { * start metronom clock */ - this->clock = _x_metronom_clock_init(); + this->clock = _x_metronom_clock_init(this); this->clock->start_clock (this->clock, 0); |