00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _V_RANDOM_H_
00019 #define _V_RANDOM_H_
00020 #include "vorbis/codec.h"
00021
00022 extern int analysis_noisy;
00023
00024 extern void *_vorbis_block_alloc(vorbis_block *vb,long bytes);
00025 extern void _vorbis_block_ripcord(vorbis_block *vb);
00026 extern void _analysis_output(char *base,int i,float *v,int n,int bark,int dB,
00027 ogg_int64_t off);
00028
00029 #ifdef DEBUG_MALLOC
00030
00031 #define _VDBG_GRAPHFILE "malloc.m"
00032 extern void *_VDBG_malloc(void *ptr,long bytes,char *file,long line);
00033 extern void _VDBG_free(void *ptr,char *file,long line);
00034
00035 #ifndef MISC_C
00036 #undef _ogg_malloc
00037 #undef _ogg_calloc
00038 #undef _ogg_realloc
00039 #undef _ogg_free
00040
00041 #define _ogg_malloc(x) _VDBG_malloc(NULL,(x),__FILE__,__LINE__)
00042 #define _ogg_calloc(x,y) _VDBG_malloc(NULL,(x)*(y),__FILE__,__LINE__)
00043 #define _ogg_realloc(x,y) _VDBG_malloc((x),(y),__FILE__,__LINE__)
00044 #define _ogg_free(x) _VDBG_free((x),__FILE__,__LINE__)
00045 #endif
00046 #endif
00047
00048 #endif
00049
00050
00051
00052