diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-02-12 18:09:19 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-02-12 18:09:19 +0000 |
commit | c2637f6fbd4a06ff0c433eccb705f52b35d46043 (patch) | |
tree | 66997712e793cceefb4375a26c715e6cbfde6f23 /src/input/net_buf_ctrl.c | |
parent | f6166fd4b881834285d2e756fc770417858bd5fb (diff) | |
download | xine-lib-c2637f6fbd4a06ff0c433eccb705f52b35d46043.tar.gz xine-lib-c2637f6fbd4a06ff0c433eccb705f52b35d46043.tar.bz2 |
getting rid of AO_PROP_PAUSED, because it can be derived by asking the clock
CVS patchset: 6136
CVS date: 2004/02/12 18:09:19
Diffstat (limited to 'src/input/net_buf_ctrl.c')
-rw-r--r-- | src/input/net_buf_ctrl.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/input/net_buf_ctrl.c b/src/input/net_buf_ctrl.c index 0a328d367..e5b720a55 100644 --- a/src/input/net_buf_ctrl.c +++ b/src/input/net_buf_ctrl.c @@ -101,16 +101,12 @@ static void nbc_set_speed_pause (xine_stream_t *stream) { xprintf(stream->xine, XINE_VERBOSITY_DEBUG, "\nnet_buf_ctrl: nbc_put_cb: set_speed_pause\n"); stream->xine->clock->set_speed (stream->xine->clock, XINE_SPEED_PAUSE); stream->xine->clock->set_option (stream->xine->clock, CLOCK_SCR_ADJUSTABLE, 0); - if (stream->audio_out) - stream->audio_out->set_property(stream->audio_out,AO_PROP_PAUSED,2); } static void nbc_set_speed_normal (xine_stream_t *stream) { xprintf(stream->xine, XINE_VERBOSITY_DEBUG, "\nnet_buf_ctrl: nbc_put_cb: set_speed_normal\n"); stream->xine->clock->set_speed (stream->xine->clock, XINE_SPEED_NORMAL); stream->xine->clock->set_option (stream->xine->clock, CLOCK_SCR_ADJUSTABLE, 1); - if (stream->audio_out) - stream->audio_out->set_property(stream->audio_out,AO_PROP_PAUSED,0); } void nbc_check_buffers (nbc_t *this) { |