setup_44.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. function: toplevel settings for 44.1/48kHz
  13. last mod: $Id$
  14. ********************************************************************/
  15. #include "modes/floor_all.h"
  16. #include "modes/residue_44.h"
  17. #include "modes/psych_44.h"
  18. static double rate_mapping_44_stereo[13]={
  19. // 22500.,32000.,40000.,48000.,56000.,64000.,
  20. 16000.,24000.,32000.,40000.,48000.,56000.,64000.,
  21. 80000.,96000.,112000.,128000.,160000.,250001.
  22. };
  23. static double quality_mapping_44[13]={
  24. -.2,-.1,.0,.1,.2,.3,.4,.5,.6,.7,.8,.9,1.0
  25. };
  26. static int blocksize_short_44[12]={
  27. 512,512,256,256,256,256,256,256,256,256,256,256
  28. };
  29. static int blocksize_long_44[12]={
  30. 4096,4096,2048,2048,2048,2048,2048,2048,2048,2048,2048,2048
  31. };
  32. static double _psy_compand_short_mapping[13]={
  33. 0., 0., 1., 1., 1.3, 1.6, 2., 2., 2., 2., 2., 2., 2.
  34. };
  35. static double _psy_compand_long_mapping[13]={
  36. 4., 4., 4., 4., 4.3, 4.6, 5., 5., 5., 5., 5., 5., 5.
  37. };
  38. static double _global_mapping_44[13]={
  39. /* 1., 1., 1.5, 2., 2., 2.5, 2.7, 3.0, 3.5, 4., 4. */
  40. // 0., 1., 1., 1.5, 2., 2., 2.5, 2.7, 3.0, 3.7, 4., 4.
  41. 0., 1., 2., 2., 2.5, 3., 3., 3.5, 3.7, 4., 4., 5., 5. // low
  42. // 0., 1., 2., 2., 2.5, 3., 3.2, 4.0, 4.0, 4.0, 4.5, 5., 5. // high
  43. };
  44. static int _floor_short_mapping_44[12]={
  45. 1,1,0,0,2,2,4,5,5,5,5,5
  46. };
  47. static int _floor_long_mapping_44[12]={
  48. 11,11,10,10,10,7,7,7,7,7,7,7
  49. };
  50. ve_setup_data_template ve_setup_44_stereo={
  51. // 11,
  52. 12,
  53. rate_mapping_44_stereo,
  54. quality_mapping_44,
  55. 2,
  56. 40000,
  57. 50000,
  58. blocksize_short_44,
  59. blocksize_long_44,
  60. _psy_tone_masteratt_44,
  61. _psy_tone_0dB,
  62. _psy_tone_suppress,
  63. _vp_tonemask_adj_otherblock, // impulse
  64. _vp_tonemask_adj_longblock,
  65. _vp_tonemask_adj_otherblock,
  66. _psy_noiseguards_44,
  67. _psy_noisebias_impulse,
  68. _psy_noisebias_padding,
  69. _psy_noisebias_trans,
  70. _psy_noisebias_long,
  71. _psy_noise_suppress,
  72. _psy_compand_44,
  73. _psy_compand_short_mapping,
  74. _psy_compand_long_mapping,
  75. {_noise_start_short_44,_noise_start_long_44},
  76. {_noise_part_short_44,_noise_part_long_44},
  77. _noise_thresh_44,
  78. _psy_ath_floater,
  79. _psy_ath_abs,
  80. _psy_lowpass_44,
  81. _psy_global_44,
  82. _global_mapping_44,
  83. _psy_stereo_modes_44,
  84. _floor_books,
  85. _floor,
  86. _floor_short_mapping_44,
  87. _floor_long_mapping_44,
  88. _mapres_template_44_stereo
  89. };