leaky_bucket.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. ***********************************************************************
  3. * COPYRIGHT AND WARRANTY INFORMATION
  4. *
  5. * Copyright 2001, International Telecommunications Union, Geneva
  6. *
  7. * DISCLAIMER OF WARRANTY
  8. *
  9. * These software programs are available to the user without any
  10. * license fee or royalty on an "as is" basis. The ITU disclaims
  11. * any and all warranties, whether express, implied, or
  12. * statutory, including any implied warranties of merchantability
  13. * or of fitness for a particular purpose.  In no event shall the
  14. * contributor or the ITU be liable for any incidental, punitive, or
  15. * consequential damages of any kind whatsoever arising from the
  16. * use of these programs.
  17. *
  18. * This disclaimer of warranty extends to the user of these programs
  19. * and user's customers, employees, agents, transferees, successors,
  20. * and assigns.
  21. *
  22. * The ITU does not represent or warrant that the programs furnished
  23. * hereunder are free of infringement of any third-party patents.
  24. * Commercial implementations of ITU-T Recommendations, including
  25. * shareware, may be subject to royalty fees to patent holders.
  26. * Information regarding the ITU-T patent policy is available from
  27. * the ITU Web site at http://www.itu.int.
  28. *
  29. * THIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY.
  30. ************************************************************************
  31. */
  32. /*!
  33.  ***************************************************************************
  34.  *
  35.  * file leaky_bucket.h
  36.  *
  37.  * brief
  38.  *    Header for Leaky Buffer parameters
  39.  *
  40.  * author
  41.  *    Main contributors (see contributors.h for copyright, address and affiliation details)
  42.  *    - Shankar Regunathan                   <shanre@microsoft.com>
  43.  **************************************************************************/
  44. #ifndef _LEAKY_BUCKET_H_
  45. #define _LEAKY_BUCKET_H_
  46. #include "global.h"
  47. /* Leaky Bucket Parameter Optimization */
  48. #ifdef _LEAKYBUCKET_
  49. int get_LeakyBucketRate(unsigned long NumberLeakyBuckets, unsigned long *Rmin);
  50. void PutBigDoubleWord(unsigned long dw, FILE *fp);
  51. void write_buffer(unsigned long NumberLeakyBuckets, unsigned long Rmin[], unsigned long Bmin[], unsigned long Fmin[]);
  52. void Sort(unsigned long NumberLeakyBuckets, unsigned long *Rmin);
  53. void calc_buffer();
  54. #endif
  55. #endif