lfg.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * Lagged Fibonacci PRNG
  3. * Copyright (c) 2008 Michael Niedermayer
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <inttypes.h>
  22. #include "lfg.h"
  23. #include "md5.h"
  24. #include "intreadwrite.h"
  25. #include "attributes.h"
  26. void av_cold av_lfg_init(AVLFG *c, unsigned int seed){
  27. uint8_t tmp[16]={0};
  28. int i;
  29. for(i=8; i<64; i+=4){
  30. AV_WL32(tmp, seed); tmp[4]=i;
  31. av_md5_sum(tmp, tmp, 16);
  32. c->state[i ]= AV_RL32(tmp);
  33. c->state[i+1]= AV_RL32(tmp+4);
  34. c->state[i+2]= AV_RL32(tmp+8);
  35. c->state[i+3]= AV_RL32(tmp+12);
  36. }
  37. c->index=0;
  38. }
  39. void av_bmg_get(AVLFG *lfg, double out[2])
  40. {
  41. double x1, x2, w;
  42. do {
  43. x1 = 2.0/UINT_MAX*av_lfg_get(lfg) - 1.0;
  44. x2 = 2.0/UINT_MAX*av_lfg_get(lfg) - 1.0;
  45. w = x1*x1 + x2*x2;
  46. } while (w >= 1.0);
  47. w = sqrt((-2.0 * log(w)) / w);
  48. out[0] = x1 * w;
  49. out[1] = x2 * w;
  50. }
  51. #ifdef TEST
  52. #include "log.h"
  53. #include "timer.h"
  54. int main(void)
  55. {
  56. int x=0;
  57. int i, j;
  58. AVLFG state;
  59. av_lfg_init(&state, 0xdeadbeef);
  60. for (j = 0; j < 10000; j++) {
  61. START_TIMER
  62. for (i = 0; i < 624; i++) {
  63. // av_log(NULL,AV_LOG_ERROR, "%X\n", av_lfg_get(&state));
  64. x+=av_lfg_get(&state);
  65. }
  66. STOP_TIMER("624 calls of av_lfg_get");
  67. }
  68. av_log(NULL, AV_LOG_ERROR, "final value:%X\n", x);
  69. /* BMG usage example */
  70. {
  71. double mean = 1000;
  72. double stddev = 53;
  73. av_lfg_init(&state, 42);
  74. for (i = 0; i < 1000; i += 2) {
  75. double bmg_out[2];
  76. av_bmg_get(&state, bmg_out);
  77. av_log(NULL, AV_LOG_INFO,
  78. "%f\n%f\n",
  79. bmg_out[0] * stddev + mean,
  80. bmg_out[1] * stddev + mean);
  81. }
  82. }
  83. return 0;
  84. }
  85. #endif