Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
16bfbfd0
Commit
16bfbfd0
authored
Jul 01, 2010
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
random_seed: simplify
Originally committed as revision 23932 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
9958096e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
random_seed.c
libavutil/random_seed.c
+3
-5
No files found.
libavutil/random_seed.c
View file @
16bfbfd0
...
@@ -40,12 +40,10 @@ static int read_random(uint32_t *dst, const char *file)
...
@@ -40,12 +40,10 @@ static int read_random(uint32_t *dst, const char *file)
uint32_t
av_get_random_seed
(
void
)
uint32_t
av_get_random_seed
(
void
)
{
{
uint32_t
seed
;
uint32_t
seed
;
int
err
;
err
=
read_random
(
&
seed
,
"/dev/urandom"
);
if
(
read_random
(
&
seed
,
"/dev/urandom"
)
==
sizeof
(
seed
))
if
(
err
!=
sizeof
(
seed
))
return
seed
;
err
=
read_random
(
&
seed
,
"/dev/random"
);
if
(
read_random
(
&
seed
,
"/dev/random"
)
==
sizeof
(
seed
))
if
(
err
==
sizeof
(
seed
))
return
seed
;
return
seed
;
#ifdef AV_READ_TIME
#ifdef AV_READ_TIME
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment