1 --- misc.h 2005-01-04 16:29:01.000000000 +0100
2 +++ misc.h 2004-12-30 13:09:20.000000000 +0100
6 #include "ivorbiscodec.h"
7 +#include "codec_internal.h"
14 #include <sys/types.h>
18 -#if BYTE_ORDER==LITTLE_ENDIAN
29 -#if BYTE_ORDER==BIG_ENDIAN
34 --- sharedbook.c 30 Dec 2004 12:09:20 -0000 1.1
35 +++ sharedbook.c 18 Aug 2005 16:13:54 -0000
38 for(k=0;k<b->dim;k++){
39 int index= (j/indexdiv)%quantvals;
42 int val=VFLOAT_MULTI(delta,delpoint,
43 abs(b->quantlist[index]),&point);
48 for(k=0;k<b->dim;k++){
51 int val=VFLOAT_MULTI(delta,delpoint,
52 abs(b->quantlist[j*b->dim+k]),&point);
54 --- block.h (revision 0)
55 +++ block.h (revision 0)
57 +/********************************************************************
59 + * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. *
61 + * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
62 + * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
63 + * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
65 + * THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 *
66 + * BY THE Xiph.Org FOUNDATION http://www.xiph.org/ *
68 + ********************************************************************
70 + function: basic shared block operations
72 + ********************************************************************/
77 +void *_vorbis_block_alloc(vorbis_block *vb,long bytes);
78 +void _vorbis_block_ripcord(vorbis_block *vb);
81 --- floor0.c (revision 24821)
82 +++ floor0.c (working copy)
89 #define LSP_FRACBITS 14
91 --- floor1.c (revision 24821)
92 +++ floor1.c (working copy)
99 #define floor1_rangedB 140 /* floor 1 fixed at -140dB to 0dB range */
101 --- synthesis.c (revision 24821)
102 +++ synthesis.c (working copy)
104 #include "registry.h"
109 int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){
110 vorbis_dsp_state *vd=vb->vd;
111 --- res012.c (revision 24821)
112 +++ res012.c (working copy)
114 #include "codebook.h"
120 vorbis_info_residue0 *info;
121 --- block.c (revision 24821)
122 +++ block.c (working copy)
125 #include "registry.h"
129 static int ilog(unsigned int v){
131 --- os.h (revision 25873)
132 +++ os.h (working copy)
135 #include "os_types.h"
137 -#ifndef _V_IFDEFJAIL_H_
138 -# define _V_IFDEFJAIL_H_
139 +#define STIN static inline
142 -# define STIN static __inline__
144 -# define STIN static __inline
147 -# define STIN static
151 # define M_PI (3.1415926536f)
153 --- os_types.h 2008-05-27 14:59:21.000000000 +0200
154 +++ os_types.h 2008-05-27 15:00:50.000000000 +0200
156 #define _ogg_realloc realloc
157 #define _ogg_free free
159 +#include <inttypes.h>
160 +typedef int64_t ogg_int64_t;
161 +typedef int32_t ogg_int32_t;
162 +typedef int16_t ogg_int16_t;
163 +typedef uint32_t ogg_uint32_t;
164 +typedef uint16_t ogg_uint16_t;
177 #endif /* _OS_TYPES_H */
178 --- mapping0.c (revision 28274)
179 +++ mapping0.c (revision 28275)
185 #include "ivorbiscodec.h"
187 #include "codec_internal.h"