diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-06-15 00:42:02 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-06-15 00:42:02 +0100 |
commit | a160c9eb759c921ebc2aa4f6b0464482857061d9 (patch) | |
tree | 8801445c552c6e89306cd5efdd668863944be4d0 /src/input/net_buf_ctrl.c | |
parent | b276d896552de4ca7b78a59637be395a71b8adb9 (diff) | |
parent | 53926f54e4dcf163afd397ed937c8b542535ee0b (diff) | |
download | xine-lib-a160c9eb759c921ebc2aa4f6b0464482857061d9.tar.gz xine-lib-a160c9eb759c921ebc2aa4f6b0464482857061d9.tar.bz2 |
Merge.
Diffstat (limited to 'src/input/net_buf_ctrl.c')
-rw-r--r-- | src/input/net_buf_ctrl.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/input/net_buf_ctrl.c b/src/input/net_buf_ctrl.c index 4a39aadfb..e27ed99f3 100644 --- a/src/input/net_buf_ctrl.c +++ b/src/input/net_buf_ctrl.c @@ -113,6 +113,10 @@ static void nbc_set_speed_normal (nbc_t *this) { stream->xine->clock->set_option (stream->xine->clock, CLOCK_SCR_ADJUSTABLE, 1); } +void nbc_check_buffers (nbc_t *this) { + /* Deprecated */ +} + static void display_stats (nbc_t *this) { const char buffering[2][4] = {" ", "buf"}; const char enabled[2][4] = {"off", "on "}; @@ -560,3 +564,22 @@ void nbc_close (nbc_t *this) { free (this); xprintf(xine, XINE_VERBOSITY_DEBUG, "\nnet_buf_ctrl: nbc_close: done\n"); } + + +void nbc_set_high_water_mark(nbc_t *this, int value) { +/* + Deprecated + this->high_water_mark = value; +*/ + xprintf(this->stream->xine, XINE_VERBOSITY_DEBUG, + "\nnet_buf_ctrl: this method is deprecated, please fix the input plugin\n"); +} + +void nbc_set_low_water_mark(nbc_t *this, int value) { +/* + Deprecated + this->low_water_mark = value; +*/ + xprintf(this->stream->xine, XINE_VERBOSITY_DEBUG, + "\nnet_buf_ctrl: this method is deprecated, please fix the input plugin\n"); +} |