diff options
author | Max Kellermann <max@duempel.org> | 2008-10-26 20:34:47 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-26 20:34:47 +0100 |
commit | dbc7e9ba2f57c71a9b73cd6d035ba2906190be72 (patch) | |
tree | 0f9a55ed4a533d4daf266f6748acb30830a6f095 /src/decoder/ffmpeg_plugin.c | |
parent | 97a9c7a8e094f830e70fdb479425c96e182f8b5e (diff) | |
download | mpd-dbc7e9ba2f57c71a9b73cd6d035ba2906190be72.tar.gz mpd-dbc7e9ba2f57c71a9b73cd6d035ba2906190be72.tar.xz mpd-dbc7e9ba2f57c71a9b73cd6d035ba2906190be72.zip |
input_stream: no CamelCase
Renamed all functions and variables.
Diffstat (limited to '')
-rw-r--r-- | src/decoder/ffmpeg_plugin.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/decoder/ffmpeg_plugin.c b/src/decoder/ffmpeg_plugin.c index d66202efa..bc0ffe221 100644 --- a/src/decoder/ffmpeg_plugin.c +++ b/src/decoder/ffmpeg_plugin.c @@ -85,10 +85,10 @@ static int mpdurl_read(URLContext *h, unsigned char *buf, int size) int ret; FopsHelper *base = (FopsHelper *) h->priv_data; while (1) { - ret = readFromInputStream(base->input, (void *)buf, size); + ret = input_stream_read(base->input, (void *)buf, size); if (ret == 0) { DEBUG("ret 0\n"); - if (inputStreamAtEOF(base->input) || + if (input_stream_eof(base->input) || (base->decoder && decoder_get_command(base->decoder) != DECODE_COMMAND_NONE)) { DEBUG("eof stream\n"); @@ -107,7 +107,7 @@ static int64_t mpdurl_seek(URLContext *h, int64_t pos, int whence) { FopsHelper *base = (FopsHelper *) h->priv_data; if (whence != AVSEEK_SIZE) { //only ftell - (void) seekInputStream(base->input, pos, whence); + (void) input_stream_seek(base->input, pos, whence); } return base->input->offset; } @@ -116,7 +116,7 @@ static int mpdurl_close(URLContext *h) { FopsHelper *base = (FopsHelper *) h->priv_data; if (base && base->input->seekable) { - (void) seekInputStream(base->input, 0, SEEK_SET); + (void) input_stream_seek(base->input, 0, SEEK_SET); } h->priv_data = 0; return 0; @@ -360,7 +360,7 @@ static struct tag *ffmpeg_tag(char *file) int ret; struct tag *tag = NULL; - if (openInputStream(&input, file) < 0) { + if (input_stream_open(&input, file) < 0) { ERROR("failed to open %s\n", file); return NULL; } @@ -375,7 +375,7 @@ static struct tag *ffmpeg_tag(char *file) tag = NULL; } - closeInputStream(&input); + input_stream_close(&input); return tag; } |