From dbc7e9ba2f57c71a9b73cd6d035ba2906190be72 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 26 Oct 2008 20:34:47 +0100 Subject: input_stream: no CamelCase Renamed all functions and variables. --- src/decoder/mpc_plugin.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/decoder/mpc_plugin.c') diff --git a/src/decoder/mpc_plugin.c b/src/decoder/mpc_plugin.c index e76b56cf9..7d792f429 100644 --- a/src/decoder/mpc_plugin.c +++ b/src/decoder/mpc_plugin.c @@ -38,7 +38,7 @@ static mpc_bool_t mpc_seek_cb(void *vdata, mpc_int32_t offset) { MpcCallbackData *data = (MpcCallbackData *) vdata; - return seekInputStream(data->inStream, offset, SEEK_SET) < 0 ? 0 : 1; + return input_stream_seek(data->inStream, offset, SEEK_SET) < 0 ? 0 : 1; } static mpc_int32_t mpc_tell_cb(void *vdata) @@ -260,19 +260,19 @@ static float mpcGetTime(char *file) mpc_streaminfo_init(&info); - if (openInputStream(&inStream, file) < 0) { + if (input_stream_open(&inStream, file) < 0) { DEBUG("mpcGetTime: Failed to open file: %s\n", file); return -1; } if (mpc_streaminfo_read(&info, &reader) != ERROR_CODE_OK) { - closeInputStream(&inStream); + input_stream_close(&inStream); return -1; } total_time = mpc_streaminfo_get_length(&info); - closeInputStream(&inStream); + input_stream_close(&inStream); return total_time; } -- cgit v1.2.3