random.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Mersenne Twister Random Algorithm
  3. * Copyright (c) 2006 Ryan Martell.
  4. * Based on A C-program for MT19937, with initialization improved 2002/1/26. Coded by
  5. * Takuji Nishimura and Makoto Matsumoto.
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. /**
  24. see http://en.wikipedia.org/wiki/Mersenne_twister for an explanation of this algorithm.
  25. */
  26. #include <stdio.h>
  27. #include "random.h"
  28. //#define DEBUG
  29. #ifdef DEBUG
  30. #include "common.h"
  31. #include "log.h"
  32. #endif
  33. /* Period parameters */
  34. #define M 397
  35. #define A 0x9908b0df /* constant vector a */
  36. #define UPPER_MASK 0x80000000 /* most significant w-r bits */
  37. #define LOWER_MASK 0x7fffffff /* least significant r bits */
  38. /** initializes mt[AV_RANDOM_N] with a seed */
  39. void av_init_random(unsigned int seed, AVRandomState *state)
  40. {
  41. int index;
  42. /*
  43. This differs from the wikipedia article. Source is from the Makoto
  44. Makoto Matsumoto and Takuji Nishimura code, with the following comment:
  45. */
  46. /* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */
  47. /* In the previous versions, MSBs of the seed affect */
  48. /* only MSBs of the array mt[]. */
  49. state->mt[0] = seed & 0xffffffff;
  50. for (index = 1; index < AV_RANDOM_N; index++) {
  51. unsigned int prev= state->mt[index - 1];
  52. state->mt[index] = (1812433253UL * (prev ^ (prev>>30)) + index) & 0xffffffff;
  53. }
  54. state->index= index; // will cause it to generate untempered numbers the first iteration
  55. }
  56. /** generate AV_RANDOM_N words at one time (which will then be tempered later) (av_random calls this; you shouldn't) */
  57. void av_random_generate_untempered_numbers(AVRandomState *state)
  58. {
  59. int kk;
  60. unsigned int y;
  61. for (kk = 0; kk < AV_RANDOM_N - M; kk++) {
  62. y = (state->mt[kk] & UPPER_MASK) | (state->mt[kk + 1] & LOWER_MASK);
  63. state->mt[kk] = state->mt[kk + M] ^ (y >> 1) ^ ((y&1)*A);
  64. }
  65. for (; kk < AV_RANDOM_N - 1; kk++) {
  66. y = (state->mt[kk] & UPPER_MASK) | (state->mt[kk + 1] & LOWER_MASK);
  67. state->mt[kk] = state->mt[kk + (M - AV_RANDOM_N)] ^ (y >> 1) ^ ((y&1)*A);
  68. }
  69. y = (state->mt[AV_RANDOM_N - 1] & UPPER_MASK) | (state->mt[0] & LOWER_MASK);
  70. state->mt[AV_RANDOM_N - 1] = state->mt[M - 1] ^ (y >> 1) ^ ((y&1)*A);
  71. state->index = 0;
  72. }
  73. #ifdef DEBUG
  74. void av_benchmark_random(void)
  75. {
  76. int x=0;
  77. int i, j;
  78. AVRandomState state;
  79. av_init_random(0xdeadbeef, &state);
  80. for (j = 0; j < 100; j++) {
  81. START_TIMER;
  82. x+= av_random(&state);
  83. STOP_TIMER("first call to av_random");
  84. for (i = 1; i < AV_RANDOM_N; i++) {
  85. START_TIMER;
  86. x+= av_random(&state);
  87. STOP_TIMER("AV_RANDOM_N calls of av_random");
  88. }
  89. }
  90. av_log(NULL, AV_LOG_ERROR, "final value:%X\n", x);
  91. }
  92. #endif