summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-05-18 10:32:31 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-05-18 10:32:31 +0000
commit2acf79a45e757e92e2208095f204652aa1c2a8a4 (patch)
treebd1be2055d4dc90b3a6f344fb3e660609836cf12 /ext
parent3926c8e2bb6082b5a571968d46891b68ab888673 (diff)
downloadgst-plugins-bad-2acf79a45e757e92e2208095f204652aa1c2a8a4.tar.gz
gst-plugins-bad-2acf79a45e757e92e2208095f204652aa1c2a8a4.tar.bz2
gst-plugins-bad-2acf79a45e757e92e2208095f204652aa1c2a8a4.zip
Update to 1.2 API (303117).
Original commit message from CVS: Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net> * configure.ac: * ext/musepack/gstmusepackdec.h: * ext/musepack/gstmusepackreader.c: * ext/musepack/gstmusepackreader.h: Update to 1.2 API (303117).
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);