summaryrefslogtreecommitdiff
path: root/src/input/net_buf_ctrl.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-12-26 21:53:41 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-12-26 21:53:41 +0000
commit4b80217cb872335e6f01de22d58fc0778da265c6 (patch)
treeaec4ac26159e8e0670263c00cbab7be4ce3e4cab /src/input/net_buf_ctrl.c
parentc42215d759320ab0cfb4d997064535c0bf32f785 (diff)
downloadxine-lib-4b80217cb872335e6f01de22d58fc0778da265c6.tar.gz
xine-lib-4b80217cb872335e6f01de22d58fc0778da265c6.tar.bz2
- cleanup internal interfaces for rewiring
- fix UI_PLAYBACK_FINISHED rifle CVS patchset: 3686 CVS date: 2002/12/26 21:53:41
Diffstat (limited to 'src/input/net_buf_ctrl.c')
-rw-r--r--src/input/net_buf_ctrl.c4
1 files changed, 2 insertions, 2 deletions
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;
}