random.c
上传用户:zslianheng
上传日期:2013-04-03
资源大小:946k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Visual C++

  1. /*
  2. $Log: random.c,v $
  3. Revision 1.1.1.1  2002/07/28 05:23:44  freeman_yong
  4. lpc10 codec
  5.  * Revision 1.2  1996/08/20  20:41:32  jaf
  6.  * Removed all static local variables that were SAVE'd in the Fortran
  7.  * code, and put them in struct lpc10_decoder_state that is passed as an
  8.  * argument.
  9.  *
  10.  * Removed init function, since all initialization is now done in
  11.  * init_lpc10_decoder_state().
  12.  *
  13.  * Revision 1.1  1996/08/19  22:30:49  jaf
  14.  * Initial revision
  15.  *
  16. */
  17. #ifdef P_R_O_T_O_T_Y_P_E_S
  18. extern integer random_(struct lpc10_decoder_state *st);
  19. #endif
  20. /*  -- translated by f2c (version 19951025).
  21.    You must link the resulting object file with the libraries:
  22. -lf2c -lm   (in that order)
  23. */
  24. #include "f2c.h"
  25. /* ********************************************************************** */
  26. /*  RANDOM Version 49 */
  27. /* $Log: random.c,v $
  28. /* Revision 1.1.1.1  2002/07/28 05:23:44  freeman_yong
  29. /* lpc10 codec
  30. /*
  31.  * Revision 1.2  1996/08/20  20:41:32  jaf
  32.  * Removed all static local variables that were SAVE'd in the Fortran
  33.  * code, and put them in struct lpc10_decoder_state that is passed as an
  34.  * argument.
  35.  *
  36.  * Removed init function, since all initialization is now done in
  37.  * init_lpc10_decoder_state().
  38.  *
  39.  * Revision 1.1  1996/08/19  22:30:49  jaf
  40.  * Initial revision
  41.  * */
  42. /* Revision 1.3  1996/03/20  16:13:54  jaf */
  43. /* Rearranged comments a little bit, and added comments explaining that */
  44. /* even though there is local state here, there is no need to create an */
  45. /* ENTRY for reinitializing it. */
  46. /* Revision 1.2  1996/03/14  22:25:29  jaf */
  47. /* Just rearranged the comments and local variable declarations a bit. */
  48. /* Revision 1.1  1996/02/07 14:49:01  jaf */
  49. /* Initial revision */
  50. /* ********************************************************************* */
  51. /*  Pseudo random number generator based on Knuth, Vol 2, p. 27. */
  52. /* Function Return: */
  53. /*  RANDOM - Integer variable, uniformly distributed over -32768 to 32767 */
  54. /* This subroutine maintains local state from one call to the next. */
  55. /* In the context of the LPC10 coder, there is no reason to reinitialize */
  56. /* this local state when switching between audio streams, because its */
  57. /* results are only used to generate noise for unvoiced frames. */
  58. integer random_(struct lpc10_decoder_state *st)
  59. {
  60.     /* Initialized data */
  61.     integer *j;
  62.     integer *k;
  63.     shortint *y;
  64.     /* System generated locals */
  65.     integer ret_val;
  66. /*  Parameters/constants */
  67. /*       Local state */
  68. /*   The following is a 16 bit 2's complement addition, */
  69. /*   with overflow checking disabled */
  70.     j = &(st->j);
  71.     k = &(st->k);
  72.     y = &(st->y[0]);
  73.     y[*k - 1] += y[*j - 1];
  74.     ret_val = y[*k - 1];
  75.     --(*k);
  76.     if (*k <= 0) {
  77. *k = 5;
  78.     }
  79.     --(*j);
  80.     if (*j <= 0) {
  81. *j = 5;
  82.     }
  83.     return ret_val;
  84. } /* random_ */