6c63a68a06eaa6c243262236223e49ac6a333dec
[platform/upstream/libvorbis.git] / lib / misc.h
1 /********************************************************************
2  *                                                                  *
3  * THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE.  *
4  * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
5  * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE.    *
6  * PLEASE READ THESE TERMS DISTRIBUTING.                            *
7  *                                                                  *
8  * THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-2000             *
9  * by Monty <monty@xiph.org> and The XIPHOPHORUS Company            *
10  * http://www.xiph.org/                                             *
11  *                                                                  *
12  ********************************************************************
13
14  function: miscellaneous prototypes
15  last mod: $Id: misc.h,v 1.5 2000/10/12 03:12:53 xiphmont Exp $
16
17  ********************************************************************/
18
19 #ifndef _V_RANDOM_H_
20 #define _V_RANDOM_H_
21 #include "vorbis/codec.h"
22
23 extern void *_vorbis_block_alloc(vorbis_block *vb,long bytes);
24 extern void _vorbis_block_ripcord(vorbis_block *vb);
25 extern void _analysis_output(char *base,int i,float *v,int n,int bark,int dB);
26
27 #ifdef DEBUG_LEAKS
28 extern void *_VDBG_malloc(void *ptr,long bytes,char *file,long line); 
29 extern void _VDBG_free(void *ptr,char *file,long line); 
30
31 #ifndef MISC_C 
32 #undef malloc
33 #undef calloc
34 #undef realloc
35 #undef free
36
37 #define malloc(x) _VDBG_malloc(NULL,(x),__FILE__,__LINE__)
38 #define calloc(x,y) _VDBG_malloc(NULL,(x)*(y),__FILE__,__LINE__)
39 #define realloc(x,y) _VDBG_malloc((x),(y),__FILE__,__LINE__)
40 #define free(x) _VDBG_free((x),__FILE__,__LINE__)
41 #endif
42 #endif
43
44 #endif