util.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * FAAC - Freeware Advanced Audio Coder
  3.  * Copyright (C) 2001 Menno Bakker
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2.1 of the License, or (at your option) any later version.
  9.  *
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Lesser General Public License for more details.
  14.  * You should have received a copy of the GNU Lesser General Public
  15.  * License along with this library; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  * $Id: util.c,v 1.3 2001/06/04 23:02:24 wmay Exp $
  19.  */
  20. #include <math.h>
  21. #include "util.h"
  22. /* Returns the sample rate index */
  23. int GetSRIndex(unsigned int sampleRate)
  24. {
  25. if (92017 <= sampleRate) return 0;
  26. if (75132 <= sampleRate) return 1;
  27. if (55426 <= sampleRate) return 2;
  28. if (46009 <= sampleRate) return 3;
  29. if (37566 <= sampleRate) return 4;
  30. if (27713 <= sampleRate) return 5;
  31. if (23004 <= sampleRate) return 6;
  32. if (18783 <= sampleRate) return 7;
  33. if (13856 <= sampleRate) return 8;
  34. if (11502 <= sampleRate) return 9;
  35. if (9391 <= sampleRate) return 10;
  36. return 11;
  37. }
  38. /* Returns the maximum bitrate per channel for that sampling frequency */
  39. unsigned int MaxBitrate(unsigned long sampleRate)
  40. {
  41. /*
  42.  *  Maximum of 6144 bit for a channel
  43.  */
  44. return (unsigned int)(6144.0 * (double)sampleRate/1024.0 + .5);
  45. }
  46. /* Returns the minimum bitrate per channel for that sampling frequency */
  47. unsigned int MinBitrate()
  48. {
  49. return 8000;
  50. }
  51. /* Max prediction band for backward predictionas function of fs index */
  52. const int MaxPredSfb[] = { 33, 33, 38, 40, 40, 40, 41, 41, 37, 37, 37, 34, 0 };
  53. int GetMaxPredSfb(int samplingRateIdx)
  54. {
  55. return MaxPredSfb[samplingRateIdx];
  56. }
  57. /* Calculate bit_allocation based on PE */
  58. unsigned int BitAllocation(double pe, int short_block)
  59. {
  60. double pew1;
  61. double pew2;
  62. double bit_allocation;
  63. if (short_block) {
  64. pew1 = 0.6;
  65. pew2 = 24.0;
  66. } else {
  67. pew1 = 0.3;
  68. pew2 = 6.0;
  69. }
  70. bit_allocation = pew1 * pe + pew2 * sqrt(pe);
  71. bit_allocation = min(max(0.0, bit_allocation), 6144.0);
  72. return (unsigned int)(bit_allocation+0.5);
  73. }
  74. /* Returns the maximum bit reservoir size */
  75. unsigned int MaxBitresSize(unsigned long bitRate, unsigned long sampleRate)
  76. {
  77. return 6144 - (unsigned int)((double)bitRate/(double)sampleRate*1024.0);
  78. }
  79. /* Returns whether or not we're on a big-endian machine */
  80. int IsBigEndian(void)
  81. {
  82.     union {
  83.         unsigned long longval;
  84.         char charval[sizeof(unsigned long)];
  85.     } u;
  86.     u.longval = 0x41424344L;  /* ABCD in ASCII */
  87. return (u.charval[0] == 'A');
  88. }