lfg.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. void av_cold av_lfg_init(AVLFG *c, unsigned int seed){
  26. uint8_t tmp[16]={0};
  27. int i;
  28. for(i=8; i<64; i+=4){
  29. AV_WL32(tmp, seed); tmp[4]=i;
  30. av_md5_sum(tmp, tmp, 16);
  31. c->state[i ]= AV_RL32(tmp);
  32. c->state[i+1]= AV_RL32(tmp+4);
  33. c->state[i+2]= AV_RL32(tmp+8);
  34. c->state[i+3]= AV_RL32(tmp+12);
  35. }
  36. c->index=0;
  37. }
  38. #ifdef TEST
  39. #include "log.h"
  40. #include "common.h"
  41. int main(void)
  42. {
  43. int x=0;
  44. int i, j;
  45. AVLFG state;
  46. av_lfg_init(&state, 0xdeadbeef);
  47. for (j = 0; j < 10000; j++) {
  48. START_TIMER
  49. for (i = 0; i < 624; i++) {
  50. // av_log(NULL,AV_LOG_ERROR, "%X\n", av_lfg_get(&state));
  51. x+=av_lfg_get(&state);
  52. }
  53. STOP_TIMER("624 calls of av_random");
  54. }
  55. av_log(NULL, AV_LOG_ERROR, "final value:%X\n", x);
  56. return 0;
  57. }
  58. #endif