diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-05-03 15:30:42 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-05-03 15:30:42 +0200 |
commit | 320cc34222fef16354967fedd031a96bc8cf72d2 (patch) | |
tree | d15699d8cae5eec649cff341c341e282d3ee718e /src | |
parent | 5bd47c4206e6cfabc67ded7e8a46034441a1b2ba (diff) | |
download | xine-lib-320cc34222fef16354967fedd031a96bc8cf72d2.tar.gz xine-lib-320cc34222fef16354967fedd031a96bc8cf72d2.tar.bz2 |
Stop exporting a few internal functions, remove the unued parameter to _x_cahce_plugin_get_instance.
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/input_cache.c | 2 | ||||
-rw-r--r-- | src/xine-engine/xine.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/input_cache.c b/src/xine-engine/input_cache.c index 2989d8718..658ec0f58 100644 --- a/src/xine-engine/input_cache.c +++ b/src/xine-engine/input_cache.c @@ -345,7 +345,7 @@ static void cache_plugin_dispose(input_plugin_t *this_gen) { /* * create self instance, */ -input_plugin_t *_x_cache_plugin_get_instance (xine_stream_t *stream, int readahead_size) { +input_plugin_t *_x_cache_plugin_get_instance (xine_stream_t *stream) { cache_input_plugin_t *this; input_plugin_t *main_plugin = stream->input_plugin; diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index 3bdc68566..890d8ffc6 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.c @@ -1227,7 +1227,7 @@ static int open_internal (xine_stream_t *stream, const char *mrl) { if( !no_cache ) /* enable buffered input plugin (request optimizer) */ - stream->input_plugin = _x_cache_plugin_get_instance(stream, 0); + stream->input_plugin = _x_cache_plugin_get_instance(stream); if (!stream->demux_plugin) { |