setup_44.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. 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 const double rate_mapping_44_stereo[12]={
  19. 22500.,32000.,40000.,48000.,56000.,64000.,
  20. 80000.,96000.,112000.,128000.,160000.,250001.
  21. };
  22. static const double quality_mapping_44[12]={
  23. -.1,.0,.1,.2,.3,.4,.5,.6,.7,.8,.9,1.0
  24. };
  25. static const int blocksize_short_44[11]={
  26. 512,256,256,256,256,256,256,256,256,256,256
  27. };
  28. static const int blocksize_long_44[11]={
  29. 4096,2048,2048,2048,2048,2048,2048,2048,2048,2048,2048
  30. };
  31. static const double _psy_compand_short_mapping[12]={
  32. 0.5, 1., 1., 1.3, 1.6, 2., 2., 2., 2., 2., 2., 2.
  33. };
  34. static const double _psy_compand_long_mapping[12]={
  35. 3.5, 4., 4., 4.3, 4.6, 5., 5., 5., 5., 5., 5., 5.
  36. };
  37. static const double _global_mapping_44[12]={
  38. /* 1., 1., 1.5, 2., 2., 2.5, 2.7, 3.0, 3.5, 4., 4. */
  39. 0., 1., 1., 1.5, 2., 2., 2.5, 2.7, 3.0, 3.7, 4., 4.
  40. };
  41. static const int _floor_short_mapping_44[11]={
  42. 1,0,0,2,2,4,5,5,5,5,5
  43. };
  44. static const int _floor_long_mapping_44[11]={
  45. 8,7,7,7,7,7,7,7,7,7,7
  46. };
  47. static const ve_setup_data_template ve_setup_44_stereo={
  48. 11,
  49. rate_mapping_44_stereo,
  50. quality_mapping_44,
  51. 2,
  52. 40000,
  53. 50000,
  54. blocksize_short_44,
  55. blocksize_long_44,
  56. _psy_tone_masteratt_44,
  57. _psy_tone_0dB,
  58. _psy_tone_suppress,
  59. _vp_tonemask_adj_otherblock,
  60. _vp_tonemask_adj_longblock,
  61. _vp_tonemask_adj_otherblock,
  62. _psy_noiseguards_44,
  63. _psy_noisebias_impulse,
  64. _psy_noisebias_padding,
  65. _psy_noisebias_trans,
  66. _psy_noisebias_long,
  67. _psy_noise_suppress,
  68. _psy_compand_44,
  69. _psy_compand_short_mapping,
  70. _psy_compand_long_mapping,
  71. {_noise_start_short_44,_noise_start_long_44},
  72. {_noise_part_short_44,_noise_part_long_44},
  73. _noise_thresh_44,
  74. _psy_ath_floater,
  75. _psy_ath_abs,
  76. _psy_lowpass_44,
  77. _psy_global_44,
  78. _global_mapping_44,
  79. _psy_stereo_modes_44,
  80. _floor_books,
  81. _floor,
  82. _floor_short_mapping_44,
  83. _floor_long_mapping_44,
  84. _mapres_template_44_stereo
  85. };