VirtualBox

source: vbox/trunk/src/libs/libvorbis-1.3.7/lib/lookups.pl@ 107044

Last change on this file since 107044 was 96468, checked in by vboxsync, 2 years ago

libs/libvorbis-1.3.7: Re-exporting, hopefully this time everything is there. bugref:10275

File size: 3.8 KB
Line 
1#!/usr/bin/perl
2print <<'EOD';
3/********************************************************************
4 * *
5 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
6 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
7 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
8 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
9 * *
10 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 *
11 * by the Xiph.Org Foundation https://xiph.org/ *
12 * *
13 ********************************************************************
14
15 function: lookup data; generated by lookups.pl; edit there
16
17 ********************************************************************/
18
19#ifndef _V_LOOKUP_DATA_H_
20
21#ifdef FLOAT_LOOKUP
22EOD
23
24$cos_sz=128;
25$invsq_sz=32;
26$invsq2exp_min=-32;
27$invsq2exp_max=32;
28
29$fromdB_sz=35;
30$fromdB_shift=5;
31$fromdB2_shift=3;
32
33$invsq_i_shift=10;
34$cos_i_shift=9;
35$delta_shift=6;
36
37print "#define COS_LOOKUP_SZ $cos_sz\n";
38print "static float COS_LOOKUP[COS_LOOKUP_SZ+1]={\n";
39
40for($i=0;$i<=$cos_sz;){
41 print "\t";
42 for($j=0;$j<4 && $i<=$cos_sz;$j++){
43 printf "%+.13f,", cos(3.14159265358979323846*($i++)/$cos_sz) ;
44 }
45 print "\n";
46}
47print "};\n\n";
48
49print "#define INVSQ_LOOKUP_SZ $invsq_sz\n";
50print "static float INVSQ_LOOKUP[INVSQ_LOOKUP_SZ+1]={\n";
51
52for($i=0;$i<=$invsq_sz;){
53 print "\t";
54 for($j=0;$j<4 && $i<=$invsq_sz;$j++){
55 my$indexmap=$i++/$invsq_sz*.5+.5;
56 printf "%.12f,", 1./sqrt($indexmap);
57 }
58 print "\n";
59}
60print "};\n\n";
61
62print "#define INVSQ2EXP_LOOKUP_MIN $invsq2exp_min\n";
63print "#define INVSQ2EXP_LOOKUP_MAX $invsq2exp_max\n";
64print "static float INVSQ2EXP_LOOKUP[INVSQ2EXP_LOOKUP_MAX-\\\n".
65 " INVSQ2EXP_LOOKUP_MIN+1]={\n";
66
67for($i=$invsq2exp_min;$i<=$invsq2exp_max;){
68 print "\t";
69 for($j=0;$j<4 && $i<=$invsq2exp_max;$j++){
70 printf "%15.10g,", 2**($i++*-.5);
71 }
72 print "\n";
73}
74print "};\n\n#endif\n\n";
75
76
77# 0 to -140 dB
78$fromdB2_sz=1<<$fromdB_shift;
79$fromdB_gran=1<<($fromdB_shift-$fromdB2_shift);
80print "#define FROMdB_LOOKUP_SZ $fromdB_sz\n";
81print "#define FROMdB2_LOOKUP_SZ $fromdB2_sz\n";
82print "#define FROMdB_SHIFT $fromdB_shift\n";
83print "#define FROMdB2_SHIFT $fromdB2_shift\n";
84print "#define FROMdB2_MASK ".((1<<$fromdB_shift)-1)."\n";
85
86print "static float FROMdB_LOOKUP[FROMdB_LOOKUP_SZ]={\n";
87
88for($i=0;$i<$fromdB_sz;){
89 print "\t";
90 for($j=0;$j<4 && $i<$fromdB_sz;$j++){
91 printf "%15.10g,", 10**(.05*(-$fromdB_gran*$i++));
92 }
93 print "\n";
94}
95print "};\n\n";
96
97print "static float FROMdB2_LOOKUP[FROMdB2_LOOKUP_SZ]={\n";
98
99for($i=0;$i<$fromdB2_sz;){
100 print "\t";
101 for($j=0;$j<4 && $i<$fromdB_sz;$j++){
102 printf "%15.10g,", 10**(.05*(-$fromdB_gran/$fromdB2_sz*(.5+$i++)));
103 }
104 print "\n";
105}
106print "};\n\n#ifdef INT_LOOKUP\n\n";
107
108
109$iisz=0x10000>>$invsq_i_shift;
110print "#define INVSQ_LOOKUP_I_SHIFT $invsq_i_shift\n";
111print "#define INVSQ_LOOKUP_I_MASK ".(0x0ffff>>(16-$invsq_i_shift))."\n";
112print "static long INVSQ_LOOKUP_I[$iisz+1]={\n";
113for($i=0;$i<=$iisz;){
114 print "\t";
115 for($j=0;$j<4 && $i<=$iisz;$j++){
116 my$indexmap=$i++/$iisz*.5+.5;
117 printf "%8d,", int(1./sqrt($indexmap)*65536.+.5);
118 }
119 print "\n";
120}
121print "};\n\n";
122
123$cisz=0x10000>>$cos_i_shift;
124print "#define COS_LOOKUP_I_SHIFT $cos_i_shift\n";
125print "#define COS_LOOKUP_I_MASK ".(0x0ffff>>(16-$cos_i_shift))."\n";
126print "#define COS_LOOKUP_I_SZ $cisz\n";
127print "static long COS_LOOKUP_I[COS_LOOKUP_I_SZ+1]={\n";
128
129for($i=0;$i<=$cisz;){
130 print "\t";
131 for($j=0;$j<4 && $i<=$cisz;$j++){
132 printf "%8d,", int(cos(3.14159265358979323846*($i++)/$cos_sz)*16384.+.5) ;
133 }
134 print "\n";
135}
136print "};\n\n";
137
138
139print "#endif\n\n#endif\n";
140
141
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette