aboutsummaryrefslogtreecommitdiffstats
path: root/src/ogg_decode.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-05-18 02:46:13 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-05-18 02:46:13 +0000
commit48a58073dd9bf781a8e2a127e832941332fc8a41 (patch)
tree8aeeb19951a63b43c8f054947539ae904b9f4558 /src/ogg_decode.c
parentee79a3a8fdd119444ff76d993678a56ed635df2b (diff)
downloadmpd-48a58073dd9bf781a8e2a127e832941332fc8a41.tar.gz
mpd-48a58073dd9bf781a8e2a127e832941332fc8a41.tar.xz
mpd-48a58073dd9bf781a8e2a127e832941332fc8a41.zip
add new inputStream stuff, hopefully something major isn't foobar'd
git-svn-id: https://svn.musicpd.org/mpd/trunk@1049 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/ogg_decode.c')
-rw-r--r--src/ogg_decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ogg_decode.c b/src/ogg_decode.c
index cda00e6cb..4014644af 100644
--- a/src/ogg_decode.c
+++ b/src/ogg_decode.c
@@ -154,7 +154,7 @@ int ogg_decode(OutputBuffer * cb, DecoderControl * dc)
callbacks.close_func = ogg_close_cb;
callbacks.tell_func = ogg_tell_cb;
- if(openInputStreamFromFile(&inStream,dc->file)<0) {
+ if(openInputStream(&inStream,dc->file)<0) {
ERROR("failed to open ogg\n");
return -1;
}