setup_44.h 2.9 KB

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