summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-05-03 20:01:50 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-05-03 20:01:50 +0200
commit0f2790e0acce3d7d012ed1c6abdff2d88f301454 (patch)
tree2e2a3eb67edb8d9b4b8f41562bc262c341ce4bd5 /src
parentfa7657a3928c9035f0e6a4aec0827bd9fe4697f5 (diff)
downloadxine-lib-0f2790e0acce3d7d012ed1c6abdff2d88f301454.tar.gz
xine-lib-0f2790e0acce3d7d012ed1c6abdff2d88f301454.tar.bz2
Remove deprecated functions from net_buf_ctrl.c.
Diffstat (limited to 'src')
-rw-r--r--src/input/net_buf_ctrl.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/input/net_buf_ctrl.c b/src/input/net_buf_ctrl.c
index 624af4081..df7dbadce 100644
--- a/src/input/net_buf_ctrl.c
+++ b/src/input/net_buf_ctrl.c
@@ -113,10 +113,6 @@ 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] = {" ", "buf"};
const char *enabled[2] = {"off", "on "};
@@ -564,22 +560,3 @@ 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");
-}