Incremental update... new 100kbps and 128 kbps books
[platform/upstream/libvorbis.git] / lib / misc.h
1 /********************************************************************
2  *                                                                  *
3  * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.   *
4  * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
5  * THE GNU LESSER/LIBRARY PUBLIC LICENSE, WHICH IS INCLUDED WITH    *
6  * THIS SOURCE. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.        *
7  *                                                                  *
8  * THE OggVorbis 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.6 2000/11/06 00:07:01 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__ogg_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 _ogg_malloc
33 #undef _ogg_calloc
34 #undef _ogg_realloc
35 #undef free
36
37 #define _ogg_malloc(x) _VDBG__ogg_malloc(NULL,(x),__FILE__,__LINE__)
38 #define _ogg_calloc(x,y) _VDBG__ogg_malloc(NULL,(x)*(y),__FILE__,__LINE__)
39 #define _ogg_realloc(x,y) _VDBG__ogg_malloc((x),(y),__FILE__,__LINE__)
40 #define free(x) _VDBG_free((x),__FILE__,__LINE__)
41 #endif
42 #endif
43
44 #endif