summaryrefslogtreecommitdiff
path: root/libavutil/random_seed.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-03-08 01:28:14 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-03-08 01:28:14 +0000
commit48d58e592aa258494beed72954fff74b5827acca (patch)
tree4965eeec5a56d23459fb7de01c4eb70525fa83f9 /libavutil/random_seed.c
parenta936475949e45df42a2f60bf6d4b1f9978ba8468 (diff)
add ff_random_get_seed to be used in conjunction with random functions
Originally committed as revision 17868 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/random_seed.c')
-rw-r--r--libavutil/random_seed.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/libavutil/random_seed.c b/libavutil/random_seed.c
new file mode 100644
index 0000000000..2b2985d446
--- /dev/null
+++ b/libavutil/random_seed.c
@@ -0,0 +1,43 @@
+/*
+ * Copyright (c) 2009 Baptiste Coudurier <baptiste.coudurier@gmail.com>
+ *
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <unistd.h>
+#include <fcntl.h>
+#include "timer.h"
+#include "random_seed.h"
+
+uint32_t ff_random_get_seed(void)
+{
+ uint32_t seed;
+ int fd;
+
+ if ((fd = open("/dev/random", O_RDONLY)) == -1)
+ fd = open("/dev/urandom", O_RDONLY);
+ if (fd != -1){
+ read(fd, &seed, 4);
+ close(fd);
+ return seed;
+ }
+#ifdef AV_READ_TIME
+ seed = AV_READ_TIME();
+#endif
+ // XXX what to do ?
+ return seed;
+}