gosu 0.7.45 → 0.7.46

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. data/COPYING +6 -11
  2. data/Gosu/{ButtonsWin.hpp → Buttons.hpp} +91 -4
  3. data/Gosu/ButtonsMac.hpp +91 -4
  4. data/Gosu/Graphics.hpp +10 -0
  5. data/Gosu/ImageData.hpp +1 -0
  6. data/Gosu/Input.hpp +2 -3
  7. data/Gosu/Version.hpp +2 -2
  8. data/Gosu/Window.hpp +1 -1
  9. data/GosuImpl/Audio/AudioToolboxFile.hpp +4 -0
  10. data/GosuImpl/Graphics/BitmapApple.mm +5 -11
  11. data/GosuImpl/Graphics/ClipRectStack.hpp +2 -2
  12. data/GosuImpl/Graphics/Common.hpp +1 -1
  13. data/GosuImpl/Graphics/DrawOpQueue.hpp +30 -29
  14. data/GosuImpl/Graphics/Graphics.cpp +2 -3
  15. data/GosuImpl/Graphics/TextMac.cpp +9 -5
  16. data/GosuImpl/Graphics/TextTouch.mm +8 -4
  17. data/GosuImpl/Graphics/Texture.cpp +4 -1
  18. data/GosuImpl/InputMac.mm +24 -45
  19. data/GosuImpl/InputX.cpp +25 -39
  20. data/GosuImpl/RubyGosu.swg +11 -0
  21. data/GosuImpl/RubyGosu_wrap.cxx +109 -40
  22. data/GosuImpl/RubyGosu_wrap.h +1 -1
  23. data/GosuImpl/TextInputWin.cpp +1 -1
  24. data/GosuImpl/TextInputX.cpp +3 -1
  25. data/GosuImpl/WinMain.cpp +3 -4
  26. data/GosuImpl/WindowMac.mm +83 -73
  27. data/GosuImpl/WindowWin.cpp +65 -58
  28. data/dependencies/libogg/AUTHORS +4 -0
  29. data/dependencies/libogg/CHANGES +70 -0
  30. data/dependencies/libogg/COPYING +28 -0
  31. data/dependencies/libogg/include/ogg/ogg.h +209 -0
  32. data/dependencies/libogg/include/ogg/os_types.h +147 -0
  33. data/dependencies/libogg/src/bitwise.c +857 -0
  34. data/dependencies/libogg/src/framing.c +2089 -0
  35. data/dependencies/libvorbis/AUTHORS +3 -0
  36. data/dependencies/libvorbis/CHANGES +126 -0
  37. data/dependencies/libvorbis/COPYING +28 -0
  38. data/dependencies/libvorbis/include/vorbis/codec.h +243 -0
  39. data/dependencies/libvorbis/include/vorbis/vorbisenc.h +436 -0
  40. data/dependencies/libvorbis/include/vorbis/vorbisfile.h +206 -0
  41. data/dependencies/libvorbis/lib/analysis.c +120 -0
  42. data/dependencies/libvorbis/lib/backends.h +144 -0
  43. data/dependencies/libvorbis/lib/barkmel.c +64 -0
  44. data/dependencies/libvorbis/lib/bitrate.c +253 -0
  45. data/dependencies/libvorbis/lib/bitrate.h +59 -0
  46. data/dependencies/libvorbis/lib/block.c +1046 -0
  47. data/dependencies/libvorbis/lib/books/coupled/res_books_51.h +12257 -0
  48. data/dependencies/libvorbis/lib/books/coupled/res_books_stereo.h +15783 -0
  49. data/dependencies/libvorbis/lib/books/floor/floor_books.h +1547 -0
  50. data/dependencies/libvorbis/lib/books/uncoupled/res_books_uncoupled.h +7758 -0
  51. data/dependencies/libvorbis/lib/codebook.c +479 -0
  52. data/dependencies/libvorbis/lib/codebook.h +119 -0
  53. data/dependencies/libvorbis/lib/codec_internal.h +167 -0
  54. data/dependencies/libvorbis/lib/envelope.c +375 -0
  55. data/dependencies/libvorbis/lib/envelope.h +80 -0
  56. data/dependencies/libvorbis/lib/floor0.c +222 -0
  57. data/dependencies/libvorbis/lib/floor1.c +1099 -0
  58. data/dependencies/libvorbis/lib/highlevel.h +58 -0
  59. data/dependencies/libvorbis/lib/info.c +664 -0
  60. data/dependencies/libvorbis/lib/lookup.c +94 -0
  61. data/dependencies/libvorbis/lib/lookup.h +32 -0
  62. data/dependencies/libvorbis/lib/lookup_data.h +192 -0
  63. data/dependencies/libvorbis/lib/lpc.c +160 -0
  64. data/dependencies/libvorbis/lib/lpc.h +29 -0
  65. data/dependencies/libvorbis/lib/lsp.c +456 -0
  66. data/dependencies/libvorbis/lib/lsp.h +28 -0
  67. data/dependencies/libvorbis/lib/mapping0.c +816 -0
  68. data/dependencies/libvorbis/lib/masking.h +785 -0
  69. data/dependencies/libvorbis/lib/mdct.c +563 -0
  70. data/dependencies/libvorbis/lib/mdct.h +71 -0
  71. data/dependencies/libvorbis/lib/misc.h +57 -0
  72. data/dependencies/libvorbis/lib/modes/floor_all.h +260 -0
  73. data/dependencies/libvorbis/lib/modes/psych_11.h +51 -0
  74. data/dependencies/libvorbis/lib/modes/psych_16.h +133 -0
  75. data/dependencies/libvorbis/lib/modes/psych_44.h +642 -0
  76. data/dependencies/libvorbis/lib/modes/psych_8.h +101 -0
  77. data/dependencies/libvorbis/lib/modes/residue_16.h +163 -0
  78. data/dependencies/libvorbis/lib/modes/residue_44.h +292 -0
  79. data/dependencies/libvorbis/lib/modes/residue_44p51.h +451 -0
  80. data/dependencies/libvorbis/lib/modes/residue_44u.h +318 -0
  81. data/dependencies/libvorbis/lib/modes/residue_8.h +109 -0
  82. data/dependencies/libvorbis/lib/modes/setup_11.h +143 -0
  83. data/dependencies/libvorbis/lib/modes/setup_16.h +153 -0
  84. data/dependencies/libvorbis/lib/modes/setup_22.h +128 -0
  85. data/dependencies/libvorbis/lib/modes/setup_32.h +132 -0
  86. data/dependencies/libvorbis/lib/modes/setup_44.h +117 -0
  87. data/dependencies/libvorbis/lib/modes/setup_44p51.h +74 -0
  88. data/dependencies/libvorbis/lib/modes/setup_44u.h +74 -0
  89. data/dependencies/libvorbis/lib/modes/setup_8.h +149 -0
  90. data/dependencies/libvorbis/lib/modes/setup_X.h +225 -0
  91. data/dependencies/libvorbis/lib/os.h +186 -0
  92. data/dependencies/libvorbis/lib/psy.c +1203 -0
  93. data/dependencies/libvorbis/lib/psy.h +154 -0
  94. data/dependencies/libvorbis/lib/psytune.c +524 -0
  95. data/dependencies/libvorbis/lib/registry.c +45 -0
  96. data/dependencies/libvorbis/lib/registry.h +32 -0
  97. data/dependencies/libvorbis/lib/res0.c +889 -0
  98. data/dependencies/libvorbis/lib/scales.h +90 -0
  99. data/dependencies/libvorbis/lib/sharedbook.c +579 -0
  100. data/dependencies/libvorbis/lib/smallft.c +1255 -0
  101. data/dependencies/libvorbis/lib/smallft.h +34 -0
  102. data/dependencies/libvorbis/lib/synthesis.c +184 -0
  103. data/dependencies/libvorbis/lib/tone.c +54 -0
  104. data/dependencies/libvorbis/lib/vorbisenc.c +1215 -0
  105. data/dependencies/libvorbis/lib/vorbisfile.c +2337 -0
  106. data/dependencies/libvorbis/lib/window.c +2135 -0
  107. data/dependencies/libvorbis/lib/window.h +26 -0
  108. data/dependencies/ogg_vorbis.license +28 -0
  109. data/lib/gosu/swig_patches.rb +2 -2
  110. data/linux/extconf.rb +17 -3
  111. metadata +96 -17
  112. data/Gosu/ButtonsX.hpp +0 -141
  113. data/GosuImpl/Audio/AudioSDL.cpp +0 -315
@@ -0,0 +1,94 @@
1
+ /********************************************************************
2
+ * *
3
+ * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
4
+ * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
5
+ * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6
+ * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
7
+ * *
8
+ * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2009 *
9
+ * by the Xiph.Org Foundation http://www.xiph.org/ *
10
+ * *
11
+ ********************************************************************
12
+
13
+ function: lookup based functions
14
+ last mod: $Id: lookup.c 16227 2009-07-08 06:58:46Z xiphmont $
15
+
16
+ ********************************************************************/
17
+
18
+ #include <math.h>
19
+ #include "lookup.h"
20
+ #include "lookup_data.h"
21
+ #include "os.h"
22
+ #include "misc.h"
23
+
24
+ #ifdef FLOAT_LOOKUP
25
+
26
+ /* interpolated lookup based cos function, domain 0 to PI only */
27
+ float vorbis_coslook(float a){
28
+ double d=a*(.31830989*(float)COS_LOOKUP_SZ);
29
+ int i=vorbis_ftoi(d-.5);
30
+
31
+ return COS_LOOKUP[i]+ (d-i)*(COS_LOOKUP[i+1]-COS_LOOKUP[i]);
32
+ }
33
+
34
+ /* interpolated 1./sqrt(p) where .5 <= p < 1. */
35
+ float vorbis_invsqlook(float a){
36
+ double d=a*(2.f*(float)INVSQ_LOOKUP_SZ)-(float)INVSQ_LOOKUP_SZ;
37
+ int i=vorbis_ftoi(d-.5f);
38
+ return INVSQ_LOOKUP[i]+ (d-i)*(INVSQ_LOOKUP[i+1]-INVSQ_LOOKUP[i]);
39
+ }
40
+
41
+ /* interpolated 1./sqrt(p) where .5 <= p < 1. */
42
+ float vorbis_invsq2explook(int a){
43
+ return INVSQ2EXP_LOOKUP[a-INVSQ2EXP_LOOKUP_MIN];
44
+ }
45
+
46
+ #include <stdio.h>
47
+ /* interpolated lookup based fromdB function, domain -140dB to 0dB only */
48
+ float vorbis_fromdBlook(float a){
49
+ int i=vorbis_ftoi(a*((float)(-(1<<FROMdB2_SHIFT)))-.5f);
50
+ return (i<0)?1.f:
51
+ ((i>=(FROMdB_LOOKUP_SZ<<FROMdB_SHIFT))?0.f:
52
+ FROMdB_LOOKUP[i>>FROMdB_SHIFT]*FROMdB2_LOOKUP[i&FROMdB2_MASK]);
53
+ }
54
+
55
+ #endif
56
+
57
+ #ifdef INT_LOOKUP
58
+ /* interpolated 1./sqrt(p) where .5 <= a < 1. (.100000... to .111111...) in
59
+ 16.16 format
60
+
61
+ returns in m.8 format */
62
+ long vorbis_invsqlook_i(long a,long e){
63
+ long i=(a&0x7fff)>>(INVSQ_LOOKUP_I_SHIFT-1);
64
+ long d=(a&INVSQ_LOOKUP_I_MASK)<<(16-INVSQ_LOOKUP_I_SHIFT); /* 0.16 */
65
+ long val=INVSQ_LOOKUP_I[i]- /* 1.16 */
66
+ (((INVSQ_LOOKUP_I[i]-INVSQ_LOOKUP_I[i+1])* /* 0.16 */
67
+ d)>>16); /* result 1.16 */
68
+
69
+ e+=32;
70
+ if(e&1)val=(val*5792)>>13; /* multiply val by 1/sqrt(2) */
71
+ e=(e>>1)-8;
72
+
73
+ return(val>>e);
74
+ }
75
+
76
+ /* interpolated lookup based fromdB function, domain -140dB to 0dB only */
77
+ /* a is in n.12 format */
78
+ float vorbis_fromdBlook_i(long a){
79
+ int i=(-a)>>(12-FROMdB2_SHIFT);
80
+ return (i<0)?1.f:
81
+ ((i>=(FROMdB_LOOKUP_SZ<<FROMdB_SHIFT))?0.f:
82
+ FROMdB_LOOKUP[i>>FROMdB_SHIFT]*FROMdB2_LOOKUP[i&FROMdB2_MASK]);
83
+ }
84
+
85
+ /* interpolated lookup based cos function, domain 0 to PI only */
86
+ /* a is in 0.16 format, where 0==0, 2^^16-1==PI, return 0.14 */
87
+ long vorbis_coslook_i(long a){
88
+ int i=a>>COS_LOOKUP_I_SHIFT;
89
+ int d=a&COS_LOOKUP_I_MASK;
90
+ return COS_LOOKUP_I[i]- ((d*(COS_LOOKUP_I[i]-COS_LOOKUP_I[i+1]))>>
91
+ COS_LOOKUP_I_SHIFT);
92
+ }
93
+
94
+ #endif
@@ -0,0 +1,32 @@
1
+ /********************************************************************
2
+ * *
3
+ * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
4
+ * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
5
+ * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6
+ * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
7
+ * *
8
+ * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2009 *
9
+ * by the Xiph.Org Foundation http://www.xiph.org/ *
10
+ * *
11
+ ********************************************************************
12
+
13
+ function: lookup based functions
14
+ last mod: $Id: lookup.h 16227 2009-07-08 06:58:46Z xiphmont $
15
+
16
+ ********************************************************************/
17
+
18
+ #ifndef _V_LOOKUP_H_
19
+
20
+ #ifdef FLOAT_LOOKUP
21
+ extern float vorbis_coslook(float a);
22
+ extern float vorbis_invsqlook(float a);
23
+ extern float vorbis_invsq2explook(int a);
24
+ extern float vorbis_fromdBlook(float a);
25
+ #endif
26
+ #ifdef INT_LOOKUP
27
+ extern long vorbis_invsqlook_i(long a,long e);
28
+ extern long vorbis_coslook_i(long a);
29
+ extern float vorbis_fromdBlook_i(long a);
30
+ #endif
31
+
32
+ #endif
@@ -0,0 +1,192 @@
1
+ /********************************************************************
2
+ * *
3
+ * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
4
+ * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
5
+ * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6
+ * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
7
+ * *
8
+ * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 *
9
+ * by the Xiph.Org Foundation http://www.xiph.org/ *
10
+ * *
11
+ ********************************************************************
12
+
13
+ function: lookup data; generated by lookups.pl; edit there
14
+ last mod: $Id: lookup_data.h 16037 2009-05-26 21:10:58Z xiphmont $
15
+
16
+ ********************************************************************/
17
+
18
+ #ifndef _V_LOOKUP_DATA_H_
19
+
20
+ #ifdef FLOAT_LOOKUP
21
+ #define COS_LOOKUP_SZ 128
22
+ static const float COS_LOOKUP[COS_LOOKUP_SZ+1]={
23
+ +1.0000000000000f,+0.9996988186962f,+0.9987954562052f,+0.9972904566787f,
24
+ +0.9951847266722f,+0.9924795345987f,+0.9891765099648f,+0.9852776423889f,
25
+ +0.9807852804032f,+0.9757021300385f,+0.9700312531945f,+0.9637760657954f,
26
+ +0.9569403357322f,+0.9495281805930f,+0.9415440651830f,+0.9329927988347f,
27
+ +0.9238795325113f,+0.9142097557035f,+0.9039892931234f,+0.8932243011955f,
28
+ +0.8819212643484f,+0.8700869911087f,+0.8577286100003f,+0.8448535652497f,
29
+ +0.8314696123025f,+0.8175848131516f,+0.8032075314806f,+0.7883464276266f,
30
+ +0.7730104533627f,+0.7572088465065f,+0.7409511253550f,+0.7242470829515f,
31
+ +0.7071067811865f,+0.6895405447371f,+0.6715589548470f,+0.6531728429538f,
32
+ +0.6343932841636f,+0.6152315905806f,+0.5956993044924f,+0.5758081914178f,
33
+ +0.5555702330196f,+0.5349976198871f,+0.5141027441932f,+0.4928981922298f,
34
+ +0.4713967368260f,+0.4496113296546f,+0.4275550934303f,+0.4052413140050f,
35
+ +0.3826834323651f,+0.3598950365350f,+0.3368898533922f,+0.3136817403989f,
36
+ +0.2902846772545f,+0.2667127574749f,+0.2429801799033f,+0.2191012401569f,
37
+ +0.1950903220161f,+0.1709618887603f,+0.1467304744554f,+0.1224106751992f,
38
+ +0.0980171403296f,+0.0735645635997f,+0.0490676743274f,+0.0245412285229f,
39
+ +0.0000000000000f,-0.0245412285229f,-0.0490676743274f,-0.0735645635997f,
40
+ -0.0980171403296f,-0.1224106751992f,-0.1467304744554f,-0.1709618887603f,
41
+ -0.1950903220161f,-0.2191012401569f,-0.2429801799033f,-0.2667127574749f,
42
+ -0.2902846772545f,-0.3136817403989f,-0.3368898533922f,-0.3598950365350f,
43
+ -0.3826834323651f,-0.4052413140050f,-0.4275550934303f,-0.4496113296546f,
44
+ -0.4713967368260f,-0.4928981922298f,-0.5141027441932f,-0.5349976198871f,
45
+ -0.5555702330196f,-0.5758081914178f,-0.5956993044924f,-0.6152315905806f,
46
+ -0.6343932841636f,-0.6531728429538f,-0.6715589548470f,-0.6895405447371f,
47
+ -0.7071067811865f,-0.7242470829515f,-0.7409511253550f,-0.7572088465065f,
48
+ -0.7730104533627f,-0.7883464276266f,-0.8032075314806f,-0.8175848131516f,
49
+ -0.8314696123025f,-0.8448535652497f,-0.8577286100003f,-0.8700869911087f,
50
+ -0.8819212643484f,-0.8932243011955f,-0.9039892931234f,-0.9142097557035f,
51
+ -0.9238795325113f,-0.9329927988347f,-0.9415440651830f,-0.9495281805930f,
52
+ -0.9569403357322f,-0.9637760657954f,-0.9700312531945f,-0.9757021300385f,
53
+ -0.9807852804032f,-0.9852776423889f,-0.9891765099648f,-0.9924795345987f,
54
+ -0.9951847266722f,-0.9972904566787f,-0.9987954562052f,-0.9996988186962f,
55
+ -1.0000000000000f,
56
+ };
57
+
58
+ #define INVSQ_LOOKUP_SZ 32
59
+ static const float INVSQ_LOOKUP[INVSQ_LOOKUP_SZ+1]={
60
+ 1.414213562373f,1.392621247646f,1.371988681140f,1.352246807566f,
61
+ 1.333333333333f,1.315191898443f,1.297771369046f,1.281025230441f,
62
+ 1.264911064067f,1.249390095109f,1.234426799697f,1.219988562661f,
63
+ 1.206045378311f,1.192569588000f,1.179535649239f,1.166919931983f,
64
+ 1.154700538379f,1.142857142857f,1.131370849898f,1.120224067222f,
65
+ 1.109400392450f,1.098884511590f,1.088662107904f,1.078719779941f,
66
+ 1.069044967650f,1.059625885652f,1.050451462878f,1.041511287847f,
67
+ 1.032795558989f,1.024295039463f,1.016001016002f,1.007905261358f,
68
+ 1.000000000000f,
69
+ };
70
+
71
+ #define INVSQ2EXP_LOOKUP_MIN (-32)
72
+ #define INVSQ2EXP_LOOKUP_MAX 32
73
+ static const float INVSQ2EXP_LOOKUP[INVSQ2EXP_LOOKUP_MAX-\
74
+ INVSQ2EXP_LOOKUP_MIN+1]={
75
+ 65536.f, 46340.95001f, 32768.f, 23170.47501f,
76
+ 16384.f, 11585.2375f, 8192.f, 5792.618751f,
77
+ 4096.f, 2896.309376f, 2048.f, 1448.154688f,
78
+ 1024.f, 724.0773439f, 512.f, 362.038672f,
79
+ 256.f, 181.019336f, 128.f, 90.50966799f,
80
+ 64.f, 45.254834f, 32.f, 22.627417f,
81
+ 16.f, 11.3137085f, 8.f, 5.656854249f,
82
+ 4.f, 2.828427125f, 2.f, 1.414213562f,
83
+ 1.f, 0.7071067812f, 0.5f, 0.3535533906f,
84
+ 0.25f, 0.1767766953f, 0.125f, 0.08838834765f,
85
+ 0.0625f, 0.04419417382f, 0.03125f, 0.02209708691f,
86
+ 0.015625f, 0.01104854346f, 0.0078125f, 0.005524271728f,
87
+ 0.00390625f, 0.002762135864f, 0.001953125f, 0.001381067932f,
88
+ 0.0009765625f, 0.000690533966f, 0.00048828125f, 0.000345266983f,
89
+ 0.000244140625f,0.0001726334915f,0.0001220703125f,8.631674575e-05f,
90
+ 6.103515625e-05f,4.315837288e-05f,3.051757812e-05f,2.157918644e-05f,
91
+ 1.525878906e-05f,
92
+ };
93
+
94
+ #endif
95
+
96
+ #define FROMdB_LOOKUP_SZ 35
97
+ #define FROMdB2_LOOKUP_SZ 32
98
+ #define FROMdB_SHIFT 5
99
+ #define FROMdB2_SHIFT 3
100
+ #define FROMdB2_MASK 31
101
+
102
+ #ifdef FLOAT_LOOKUP
103
+ static const float FROMdB_LOOKUP[FROMdB_LOOKUP_SZ]={
104
+ 1.f, 0.6309573445f, 0.3981071706f, 0.2511886432f,
105
+ 0.1584893192f, 0.1f, 0.06309573445f, 0.03981071706f,
106
+ 0.02511886432f, 0.01584893192f, 0.01f, 0.006309573445f,
107
+ 0.003981071706f, 0.002511886432f, 0.001584893192f, 0.001f,
108
+ 0.0006309573445f,0.0003981071706f,0.0002511886432f,0.0001584893192f,
109
+ 0.0001f,6.309573445e-05f,3.981071706e-05f,2.511886432e-05f,
110
+ 1.584893192e-05f, 1e-05f,6.309573445e-06f,3.981071706e-06f,
111
+ 2.511886432e-06f,1.584893192e-06f, 1e-06f,6.309573445e-07f,
112
+ 3.981071706e-07f,2.511886432e-07f,1.584893192e-07f,
113
+ };
114
+
115
+ static const float FROMdB2_LOOKUP[FROMdB2_LOOKUP_SZ]={
116
+ 0.9928302478f, 0.9786445908f, 0.9646616199f, 0.9508784391f,
117
+ 0.9372921937f, 0.92390007f, 0.9106992942f, 0.8976871324f,
118
+ 0.8848608897f, 0.8722179097f, 0.8597555737f, 0.8474713009f,
119
+ 0.835362547f, 0.8234268041f, 0.8116616003f, 0.8000644989f,
120
+ 0.7886330981f, 0.7773650302f, 0.7662579617f, 0.755309592f,
121
+ 0.7445176537f, 0.7338799116f, 0.7233941627f, 0.7130582353f,
122
+ 0.7028699885f, 0.6928273125f, 0.6829281272f, 0.6731703824f,
123
+ 0.6635520573f, 0.6540711597f, 0.6447257262f, 0.6355138211f,
124
+ };
125
+ #endif
126
+
127
+ #ifdef INT_LOOKUP
128
+
129
+ #define INVSQ_LOOKUP_I_SHIFT 10
130
+ #define INVSQ_LOOKUP_I_MASK 1023
131
+ static const long INVSQ_LOOKUP_I[64+1]={
132
+ 92682l, 91966l, 91267l, 90583l,
133
+ 89915l, 89261l, 88621l, 87995l,
134
+ 87381l, 86781l, 86192l, 85616l,
135
+ 85051l, 84497l, 83953l, 83420l,
136
+ 82897l, 82384l, 81880l, 81385l,
137
+ 80899l, 80422l, 79953l, 79492l,
138
+ 79039l, 78594l, 78156l, 77726l,
139
+ 77302l, 76885l, 76475l, 76072l,
140
+ 75674l, 75283l, 74898l, 74519l,
141
+ 74146l, 73778l, 73415l, 73058l,
142
+ 72706l, 72359l, 72016l, 71679l,
143
+ 71347l, 71019l, 70695l, 70376l,
144
+ 70061l, 69750l, 69444l, 69141l,
145
+ 68842l, 68548l, 68256l, 67969l,
146
+ 67685l, 67405l, 67128l, 66855l,
147
+ 66585l, 66318l, 66054l, 65794l,
148
+ 65536l,
149
+ };
150
+
151
+ #define COS_LOOKUP_I_SHIFT 9
152
+ #define COS_LOOKUP_I_MASK 511
153
+ #define COS_LOOKUP_I_SZ 128
154
+ static const long COS_LOOKUP_I[COS_LOOKUP_I_SZ+1]={
155
+ 16384l, 16379l, 16364l, 16340l,
156
+ 16305l, 16261l, 16207l, 16143l,
157
+ 16069l, 15986l, 15893l, 15791l,
158
+ 15679l, 15557l, 15426l, 15286l,
159
+ 15137l, 14978l, 14811l, 14635l,
160
+ 14449l, 14256l, 14053l, 13842l,
161
+ 13623l, 13395l, 13160l, 12916l,
162
+ 12665l, 12406l, 12140l, 11866l,
163
+ 11585l, 11297l, 11003l, 10702l,
164
+ 10394l, 10080l, 9760l, 9434l,
165
+ 9102l, 8765l, 8423l, 8076l,
166
+ 7723l, 7366l, 7005l, 6639l,
167
+ 6270l, 5897l, 5520l, 5139l,
168
+ 4756l, 4370l, 3981l, 3590l,
169
+ 3196l, 2801l, 2404l, 2006l,
170
+ 1606l, 1205l, 804l, 402l,
171
+ 0l, -401l, -803l, -1204l,
172
+ -1605l, -2005l, -2403l, -2800l,
173
+ -3195l, -3589l, -3980l, -4369l,
174
+ -4755l, -5138l, -5519l, -5896l,
175
+ -6269l, -6638l, -7004l, -7365l,
176
+ -7722l, -8075l, -8422l, -8764l,
177
+ -9101l, -9433l, -9759l, -10079l,
178
+ -10393l, -10701l, -11002l, -11296l,
179
+ -11584l, -11865l, -12139l, -12405l,
180
+ -12664l, -12915l, -13159l, -13394l,
181
+ -13622l, -13841l, -14052l, -14255l,
182
+ -14448l, -14634l, -14810l, -14977l,
183
+ -15136l, -15285l, -15425l, -15556l,
184
+ -15678l, -15790l, -15892l, -15985l,
185
+ -16068l, -16142l, -16206l, -16260l,
186
+ -16304l, -16339l, -16363l, -16378l,
187
+ -16383l,
188
+ };
189
+
190
+ #endif
191
+
192
+ #endif
@@ -0,0 +1,160 @@
1
+ /********************************************************************
2
+ * *
3
+ * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
4
+ * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
5
+ * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6
+ * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
7
+ * *
8
+ * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2009 *
9
+ * by the Xiph.Org Foundation http://www.xiph.org/ *
10
+ * *
11
+ ********************************************************************
12
+
13
+ function: LPC low level routines
14
+ last mod: $Id: lpc.c 16227 2009-07-08 06:58:46Z xiphmont $
15
+
16
+ ********************************************************************/
17
+
18
+ /* Some of these routines (autocorrelator, LPC coefficient estimator)
19
+ are derived from code written by Jutta Degener and Carsten Bormann;
20
+ thus we include their copyright below. The entirety of this file
21
+ is freely redistributable on the condition that both of these
22
+ copyright notices are preserved without modification. */
23
+
24
+ /* Preserved Copyright: *********************************************/
25
+
26
+ /* Copyright 1992, 1993, 1994 by Jutta Degener and Carsten Bormann,
27
+ Technische Universita"t Berlin
28
+
29
+ Any use of this software is permitted provided that this notice is not
30
+ removed and that neither the authors nor the Technische Universita"t
31
+ Berlin are deemed to have made any representations as to the
32
+ suitability of this software for any purpose nor are held responsible
33
+ for any defects of this software. THERE IS ABSOLUTELY NO WARRANTY FOR
34
+ THIS SOFTWARE.
35
+
36
+ As a matter of courtesy, the authors request to be informed about uses
37
+ this software has found, about bugs in this software, and about any
38
+ improvements that may be of general interest.
39
+
40
+ Berlin, 28.11.1994
41
+ Jutta Degener
42
+ Carsten Bormann
43
+
44
+ *********************************************************************/
45
+
46
+ #include <stdlib.h>
47
+ #include <string.h>
48
+ #include <math.h>
49
+ #include "os.h"
50
+ #include "smallft.h"
51
+ #include "lpc.h"
52
+ #include "scales.h"
53
+ #include "misc.h"
54
+
55
+ /* Autocorrelation LPC coeff generation algorithm invented by
56
+ N. Levinson in 1947, modified by J. Durbin in 1959. */
57
+
58
+ /* Input : n elements of time doamin data
59
+ Output: m lpc coefficients, excitation energy */
60
+
61
+ float vorbis_lpc_from_data(float *data,float *lpci,int n,int m){
62
+ double *aut=alloca(sizeof(*aut)*(m+1));
63
+ double *lpc=alloca(sizeof(*lpc)*(m));
64
+ double error;
65
+ double epsilon;
66
+ int i,j;
67
+
68
+ /* autocorrelation, p+1 lag coefficients */
69
+ j=m+1;
70
+ while(j--){
71
+ double d=0; /* double needed for accumulator depth */
72
+ for(i=j;i<n;i++)d+=(double)data[i]*data[i-j];
73
+ aut[j]=d;
74
+ }
75
+
76
+ /* Generate lpc coefficients from autocorr values */
77
+
78
+ /* set our noise floor to about -100dB */
79
+ error=aut[0] * (1. + 1e-10);
80
+ epsilon=1e-9*aut[0]+1e-10;
81
+
82
+ for(i=0;i<m;i++){
83
+ double r= -aut[i+1];
84
+
85
+ if(error<epsilon){
86
+ memset(lpc+i,0,(m-i)*sizeof(*lpc));
87
+ goto done;
88
+ }
89
+
90
+ /* Sum up this iteration's reflection coefficient; note that in
91
+ Vorbis we don't save it. If anyone wants to recycle this code
92
+ and needs reflection coefficients, save the results of 'r' from
93
+ each iteration. */
94
+
95
+ for(j=0;j<i;j++)r-=lpc[j]*aut[i-j];
96
+ r/=error;
97
+
98
+ /* Update LPC coefficients and total error */
99
+
100
+ lpc[i]=r;
101
+ for(j=0;j<i/2;j++){
102
+ double tmp=lpc[j];
103
+
104
+ lpc[j]+=r*lpc[i-1-j];
105
+ lpc[i-1-j]+=r*tmp;
106
+ }
107
+ if(i&1)lpc[j]+=lpc[j]*r;
108
+
109
+ error*=1.-r*r;
110
+
111
+ }
112
+
113
+ done:
114
+
115
+ /* slightly damp the filter */
116
+ {
117
+ double g = .99;
118
+ double damp = g;
119
+ for(j=0;j<m;j++){
120
+ lpc[j]*=damp;
121
+ damp*=g;
122
+ }
123
+ }
124
+
125
+ for(j=0;j<m;j++)lpci[j]=(float)lpc[j];
126
+
127
+ /* we need the error value to know how big an impulse to hit the
128
+ filter with later */
129
+
130
+ return error;
131
+ }
132
+
133
+ void vorbis_lpc_predict(float *coeff,float *prime,int m,
134
+ float *data,long n){
135
+
136
+ /* in: coeff[0...m-1] LPC coefficients
137
+ prime[0...m-1] initial values (allocated size of n+m-1)
138
+ out: data[0...n-1] data samples */
139
+
140
+ long i,j,o,p;
141
+ float y;
142
+ float *work=alloca(sizeof(*work)*(m+n));
143
+
144
+ if(!prime)
145
+ for(i=0;i<m;i++)
146
+ work[i]=0.f;
147
+ else
148
+ for(i=0;i<m;i++)
149
+ work[i]=prime[i];
150
+
151
+ for(i=0;i<n;i++){
152
+ y=0;
153
+ o=i;
154
+ p=m;
155
+ for(j=0;j<m;j++)
156
+ y-=work[o++]*coeff[--p];
157
+
158
+ data[i]=work[o]=y;
159
+ }
160
+ }