|
|
@@ -56,13 +56,6 @@ void av_random_init(AVRandomState *state, unsigned int seed) |
|
|
|
state->index= index; // Will cause it to generate untempered numbers in the first iteration. |
|
|
|
} |
|
|
|
|
|
|
|
#if LIBAVUTIL_VERSION_MAJOR < 50 |
|
|
|
void av_init_random(unsigned int seed, AVRandomState *state) |
|
|
|
{ |
|
|
|
av_random_init(state, seed); |
|
|
|
} |
|
|
|
#endif |
|
|
|
|
|
|
|
/** Generates AV_RANDOM_N words at one time (which will then be tempered later). |
|
|
|
* av_random calls this; you shouldn't. */ |
|
|
|
void av_random_generate_untempered_numbers(AVRandomState *state) |
|
|
|