diff options
Diffstat (limited to 'src/input/net_buf_ctrl.c')
-rw-r--r-- | src/input/net_buf_ctrl.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/input/net_buf_ctrl.c b/src/input/net_buf_ctrl.c index 12ede3d53..e31049284 100644 --- a/src/input/net_buf_ctrl.c +++ b/src/input/net_buf_ctrl.c @@ -132,3 +132,10 @@ nbc_t *nbc_init (xine_stream_t *stream) { return this; } +void nbc_set_high_water_mark(nbc_t *this, int value) { + this->high_water_mark = value; +} + +void nbc_set_low_water_mark(nbc_t *this, int value) { + this->low_water_mark = value; +} |