summaryrefslogtreecommitdiff
path: root/libavutil/random.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-03-09 10:24:47 +0000
committerDiego Biurrun <diego@biurrun.de>2009-03-09 10:24:47 +0000
commit082dea8e404ea30c7ece089cf7cd81c38c3916c4 (patch)
tree345d896c885996233fd455abb7d59f16c35a774e /libavutil/random.c
parent0881748386fa7c39dbd1d5e5c204035cb7b6c2c0 (diff)
Remove all remaining code that was disabled through the major version bump.
Originally committed as revision 17903 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/random.c')
-rw-r--r--libavutil/random.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libavutil/random.c b/libavutil/random.c
index 5597e1d1c0..94671556fc 100644
--- a/libavutil/random.c
+++ b/libavutil/random.c
@@ -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)