You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

105 lines
3.4KB

  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. /* Period parameters */
  29. #define M 397
  30. #define A 0x9908b0df /* constant vector a */
  31. #define UPPER_MASK 0x80000000 /* most significant w-r bits */
  32. #define LOWER_MASK 0x7fffffff /* least significant r bits */
  33. /** initializes mt[AV_RANDOM_N] with a seed */
  34. void av_random_init(AVRandomState *state, unsigned int seed)
  35. {
  36. int index;
  37. /*
  38. This differs from the wikipedia article. Source is from the
  39. Makoto Matsumoto and Takuji Nishimura code, with the following comment:
  40. */
  41. /* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */
  42. /* In the previous versions, MSBs of the seed affect */
  43. /* only MSBs of the array mt[]. */
  44. state->mt[0] = seed & 0xffffffff;
  45. for (index = 1; index < AV_RANDOM_N; index++) {
  46. unsigned int prev= state->mt[index - 1];
  47. state->mt[index] = (1812433253UL * (prev ^ (prev>>30)) + index) & 0xffffffff;
  48. }
  49. state->index= index; // will cause it to generate untempered numbers the first iteration
  50. }
  51. #if LIBAVUTIL_VERSION_MAJOR < 50
  52. void av_init_random(unsigned int seed, AVRandomState *state)
  53. {
  54. av_random_init(state, seed);
  55. }
  56. #endif
  57. /** generate AV_RANDOM_N words at one time (which will then be tempered later) (av_random calls this; you shouldn't) */
  58. void av_random_generate_untempered_numbers(AVRandomState *state)
  59. {
  60. int kk;
  61. unsigned int y;
  62. for (kk = 0; kk < AV_RANDOM_N - M; kk++) {
  63. y = (state->mt[kk] & UPPER_MASK) | (state->mt[kk + 1] & LOWER_MASK);
  64. state->mt[kk] = state->mt[kk + M] ^ (y >> 1) ^ ((y&1)*A);
  65. }
  66. for (; kk < AV_RANDOM_N - 1; kk++) {
  67. y = (state->mt[kk] & UPPER_MASK) | (state->mt[kk + 1] & LOWER_MASK);
  68. state->mt[kk] = state->mt[kk + (M - AV_RANDOM_N)] ^ (y >> 1) ^ ((y&1)*A);
  69. }
  70. y = (state->mt[AV_RANDOM_N - 1] & UPPER_MASK) | (state->mt[0] & LOWER_MASK);
  71. state->mt[AV_RANDOM_N - 1] = state->mt[M - 1] ^ (y >> 1) ^ ((y&1)*A);
  72. state->index = 0;
  73. }
  74. #ifdef TEST
  75. #include "common.h"
  76. #include "log.h"
  77. int main(void)
  78. {
  79. int x=0;
  80. int i, j;
  81. AVRandomState state;
  82. av_random_init(&state, 0xdeadbeef);
  83. for (j = 0; j < 10000; j++) {
  84. START_TIMER
  85. for (i = 0; i < 624; i++) {
  86. x+= av_random(&state);
  87. }
  88. STOP_TIMER("624 calls of av_random");
  89. }
  90. av_log(NULL, AV_LOG_ERROR, "final value:%X\n", x);
  91. return 0;
  92. }
  93. #endif