aboutsummaryrefslogtreecommitdiffstats
path: root/src/mp4_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/mp4_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/mp4_decode.c')
-rw-r--r--src/mp4_decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mp4_decode.c b/src/mp4_decode.c
index b5c006f9e..4705a6ed6 100644
--- a/src/mp4_decode.c
+++ b/src/mp4_decode.c
@@ -113,7 +113,7 @@ int mp4_decode(OutputBuffer * cb, DecoderControl * dc) {
mpd_uint16 bitRate = 0;
InputStream inStream;
- if(openInputStreamFromFile(&inStream,dc->file) < 0) {
+ if(openInputStream(&inStream,dc->file) < 0) {
ERROR("failed to open %s\n",dc->file);
return -1;
}