From 4b80217cb872335e6f01de22d58fc0778da265c6 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Thu, 26 Dec 2002 21:53:41 +0000 Subject: - cleanup internal interfaces for rewiring - fix UI_PLAYBACK_FINISHED rifle CVS patchset: 3686 CVS date: 2002/12/26 21:53:41 --- src/input/net_buf_ctrl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/input') diff --git a/src/input/net_buf_ctrl.c b/src/input/net_buf_ctrl.c index e31049284..0622ad3ad 100644 --- a/src/input/net_buf_ctrl.c +++ b/src/input/net_buf_ctrl.c @@ -102,14 +102,14 @@ void nbc_check_buffers (nbc_t *this) { this->stream->xine->clock->set_speed (this->stream->xine->clock, XINE_SPEED_PAUSE); this->stream->xine->clock->set_option (this->stream->xine->clock, CLOCK_SCR_ADJUSTABLE, 0); if (this->stream->audio_out) - this->stream->audio_out->audio_paused = 2; + this->stream->audio_out->set_property(this->stream->audio_out,AO_PROP_PAUSED,2); this->buffering = 1; } else if ( (fifo_fill>this->high_water_mark) && (this->buffering)) { this->stream->xine->clock->set_speed (this->stream->xine->clock, XINE_SPEED_NORMAL); this->stream->xine->clock->set_option (this->stream->xine->clock, CLOCK_SCR_ADJUSTABLE, 1); if (this->stream->audio_out) - this->stream->audio_out->audio_paused = 0; + this->stream->audio_out->set_property(this->stream->audio_out,AO_PROP_PAUSED,0); this->buffering = 0; } -- cgit v1.2.3