lookups.pl 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. #!/usr/bin/perl
  2. print <<'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 http://www.xiph.org/ *
  12. * *
  13. ********************************************************************
  14. function: lookup data; generated by lookups.pl; edit there
  15. last mod: $Id$
  16. ********************************************************************/
  17. #ifndef _V_LOOKUP_DATA_H_
  18. #ifdef FLOAT_LOOKUP
  19. EOD
  20. $cos_sz=128;
  21. $invsq_sz=32;
  22. $invsq2exp_min=-32;
  23. $invsq2exp_max=32;
  24. $fromdB_sz=35;
  25. $fromdB_shift=5;
  26. $fromdB2_shift=3;
  27. $invsq_i_shift=10;
  28. $cos_i_shift=9;
  29. $delta_shift=6;
  30. print "#define COS_LOOKUP_SZ $cos_sz\n";
  31. print "static float COS_LOOKUP[COS_LOOKUP_SZ+1]={\n";
  32. for($i=0;$i<=$cos_sz;){
  33. print "\t";
  34. for($j=0;$j<4 && $i<=$cos_sz;$j++){
  35. printf "%+.13f,", cos(3.14159265358979323846*($i++)/$cos_sz) ;
  36. }
  37. print "\n";
  38. }
  39. print "};\n\n";
  40. print "#define INVSQ_LOOKUP_SZ $invsq_sz\n";
  41. print "static float INVSQ_LOOKUP[INVSQ_LOOKUP_SZ+1]={\n";
  42. for($i=0;$i<=$invsq_sz;){
  43. print "\t";
  44. for($j=0;$j<4 && $i<=$invsq_sz;$j++){
  45. my$indexmap=$i++/$invsq_sz*.5+.5;
  46. printf "%.12f,", 1./sqrt($indexmap);
  47. }
  48. print "\n";
  49. }
  50. print "};\n\n";
  51. print "#define INVSQ2EXP_LOOKUP_MIN $invsq2exp_min\n";
  52. print "#define INVSQ2EXP_LOOKUP_MAX $invsq2exp_max\n";
  53. print "static float INVSQ2EXP_LOOKUP[INVSQ2EXP_LOOKUP_MAX-\\\n".
  54. " INVSQ2EXP_LOOKUP_MIN+1]={\n";
  55. for($i=$invsq2exp_min;$i<=$invsq2exp_max;){
  56. print "\t";
  57. for($j=0;$j<4 && $i<=$invsq2exp_max;$j++){
  58. printf "%15.10g,", 2**($i++*-.5);
  59. }
  60. print "\n";
  61. }
  62. print "};\n\n#endif\n\n";
  63. # 0 to -140 dB
  64. $fromdB2_sz=1<<$fromdB_shift;
  65. $fromdB_gran=1<<($fromdB_shift-$fromdB2_shift);
  66. print "#define FROMdB_LOOKUP_SZ $fromdB_sz\n";
  67. print "#define FROMdB2_LOOKUP_SZ $fromdB2_sz\n";
  68. print "#define FROMdB_SHIFT $fromdB_shift\n";
  69. print "#define FROMdB2_SHIFT $fromdB2_shift\n";
  70. print "#define FROMdB2_MASK ".((1<<$fromdB_shift)-1)."\n";
  71. print "static float FROMdB_LOOKUP[FROMdB_LOOKUP_SZ]={\n";
  72. for($i=0;$i<$fromdB_sz;){
  73. print "\t";
  74. for($j=0;$j<4 && $i<$fromdB_sz;$j++){
  75. printf "%15.10g,", 10**(.05*(-$fromdB_gran*$i++));
  76. }
  77. print "\n";
  78. }
  79. print "};\n\n";
  80. print "static float FROMdB2_LOOKUP[FROMdB2_LOOKUP_SZ]={\n";
  81. for($i=0;$i<$fromdB2_sz;){
  82. print "\t";
  83. for($j=0;$j<4 && $i<$fromdB_sz;$j++){
  84. printf "%15.10g,", 10**(.05*(-$fromdB_gran/$fromdB2_sz*(.5+$i++)));
  85. }
  86. print "\n";
  87. }
  88. print "};\n\n#ifdef INT_LOOKUP\n\n";
  89. $iisz=0x10000>>$invsq_i_shift;
  90. print "#define INVSQ_LOOKUP_I_SHIFT $invsq_i_shift\n";
  91. print "#define INVSQ_LOOKUP_I_MASK ".(0x0ffff>>(16-$invsq_i_shift))."\n";
  92. print "static long INVSQ_LOOKUP_I[$iisz+1]={\n";
  93. for($i=0;$i<=$iisz;){
  94. print "\t";
  95. for($j=0;$j<4 && $i<=$iisz;$j++){
  96. my$indexmap=$i++/$iisz*.5+.5;
  97. printf "%8d,", int(1./sqrt($indexmap)*65536.+.5);
  98. }
  99. print "\n";
  100. }
  101. print "};\n\n";
  102. $cisz=0x10000>>$cos_i_shift;
  103. print "#define COS_LOOKUP_I_SHIFT $cos_i_shift\n";
  104. print "#define COS_LOOKUP_I_MASK ".(0x0ffff>>(16-$cos_i_shift))."\n";
  105. print "#define COS_LOOKUP_I_SZ $cisz\n";
  106. print "static long COS_LOOKUP_I[COS_LOOKUP_I_SZ+1]={\n";
  107. for($i=0;$i<=$cisz;){
  108. print "\t";
  109. for($j=0;$j<4 && $i<=$cisz;$j++){
  110. printf "%8d,", int(cos(3.14159265358979323846*($i++)/$cos_sz)*16384.+.5) ;
  111. }
  112. print "\n";
  113. }
  114. print "};\n\n";
  115. print "#endif\n\n#endif\n";