diff options
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 |