summaryrefslogtreecommitdiff
path: root/src/libreal
diff options
context:
space:
mode:
Diffstat (limited to 'src/libreal')
-rw-r--r--src/libreal/audio_decoder.c8
-rw-r--r--src/libreal/xine_decoder.c6
2 files changed, 12 insertions, 2 deletions
diff --git a/src/libreal/audio_decoder.c b/src/libreal/audio_decoder.c
index 418a44337..8f69ff859 100644
--- a/src/libreal/audio_decoder.c
+++ b/src/libreal/audio_decoder.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: audio_decoder.c,v 1.25 2003/07/18 23:50:25 jstembridge Exp $
+ * $Id: audio_decoder.c,v 1.26 2003/08/25 21:51:42 f1rmb Exp $
*
* thin layer to use real binary-only codecs in xine
*
@@ -100,6 +100,12 @@ typedef struct {
void *extras;
} ra_init_t;
+void *__builtin_new(unsigned long size);
+void __builtin_delete (void *foo);
+void *__builtin_vec_new(unsigned long size);
+void __builtin_vec_delete(void *mem);
+void __pure_virtual(void);
+
void *__builtin_new(unsigned long size) {
return malloc(size);
diff --git a/src/libreal/xine_decoder.c b/src/libreal/xine_decoder.c
index 403a97bd4..17f762620 100644
--- a/src/libreal/xine_decoder.c
+++ b/src/libreal/xine_decoder.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_decoder.c,v 1.48 2003/08/04 03:47:09 miguelfreitas Exp $
+ * $Id: xine_decoder.c,v 1.49 2003/08/25 21:51:43 f1rmb Exp $
*
* thin layer to use real binary-only codecs in xine
*
@@ -108,6 +108,10 @@ typedef struct {
} rv_init_t;
+void *__builtin_vec_new(unsigned long size);
+void __builtin_vec_delete(void *mem);
+void __pure_virtual(void);
+
/*
* real codec loader
*/