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/_ogg_common.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 'src/decoder/_ogg_common.c')
-rw-r--r-- | src/decoder/_ogg_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/_ogg_common.c b/src/decoder/_ogg_common.c index b066712fd..92408984a 100644 --- a/src/decoder/_ogg_common.c +++ b/src/decoder/_ogg_common.c @@ -31,12 +31,12 @@ ogg_stream_type ogg_stream_type_detect(struct input_stream *inStream) unsigned char buf[41]; size_t r; - seekInputStream(inStream, 0, SEEK_SET); + input_stream_seek(inStream, 0, SEEK_SET); r = decoder_read(NULL, inStream, buf, sizeof(buf)); if (r > 0) - seekInputStream(inStream, 0, SEEK_SET); + input_stream_seek(inStream, 0, SEEK_SET); if (r >= 32 && memcmp(buf, "OggS", 4) == 0 && ( (memcmp(buf+29, "FLAC", 4) == 0 |