summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/musepack/gstmusepackdec.h2
-rw-r--r--ext/musepack/gstmusepackreader.c4
-rw-r--r--ext/musepack/gstmusepackreader.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/ext/musepack/gstmusepackdec.h b/ext/musepack/gstmusepackdec.h
index a4493c4a..b75f87ec 100644
--- a/ext/musepack/gstmusepackdec.h
+++ b/ext/musepack/gstmusepackdec.h
@@ -22,7 +22,7 @@
#include <gst/gst.h>
#include <gst/bytestream/bytestream.h>
-#include <musepack/musepack.h>
+#include <mpcdec/mpcdec.h>
#include "gstmusepackreader.h"
G_BEGIN_DECLS
diff --git a/ext/musepack/gstmusepackreader.c b/ext/musepack/gstmusepackreader.c
index 230d7a3c..c69233f9 100644
--- a/ext/musepack/gstmusepackreader.c
+++ b/ext/musepack/gstmusepackreader.c
@@ -89,7 +89,7 @@ gst_musepack_reader_read (void *this, void *ptr, mpc_int32_t size)
return read;
}
-static BOOL
+static mpc_bool_t
gst_musepack_reader_seek (void *this, mpc_int32_t offset)
{
GstByteStream *bs = this;
@@ -126,7 +126,7 @@ gst_musepack_reader_get_size (void *this)
return gst_bytestream_length (bs);
}
-static BOOL
+static mpc_bool_t
gst_musepack_reader_canseek (void *this)
{
return TRUE;
diff --git a/ext/musepack/gstmusepackreader.h b/ext/musepack/gstmusepackreader.h
index 2aa2edd2..d00153e8 100644
--- a/ext/musepack/gstmusepackreader.h
+++ b/ext/musepack/gstmusepackreader.h
@@ -20,7 +20,7 @@
#ifndef __GST_MUSEPACK_READER_H__
#define __GST_MUSEPACK_READER_H__
-#include <musepack/musepack.h>
+#include <mpcdec/mpcdec.h>
#include <gst/bytestream/bytestream.h>
void gst_musepack_init_reader (mpc_reader * r, GstByteStream * bs);