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
880391ed
Commit
880391ed
authored
Aug 06, 2013
by
Rémi Denis-Courmont
Committed by
Anton Khirnov
Aug 07, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libavutil: use avpriv_open()
Signed-off-by:
Anton Khirnov
<
anton@khirnov.net
>
parent
869b04e8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
random_seed.c
libavutil/random_seed.c
+2
-1
No files found.
libavutil/random_seed.c
View file @
880391ed
...
...
@@ -30,13 +30,14 @@
#include <fcntl.h>
#include <math.h>
#include <time.h>
#include "internal.h"
#include "timer.h"
#include "random_seed.h"
static
int
read_random
(
uint32_t
*
dst
,
const
char
*
file
)
{
#if HAVE_UNISTD_H
int
fd
=
open
(
file
,
O_RDONLY
);
int
fd
=
avpriv_
open
(
file
,
O_RDONLY
);
int
err
=
-
1
;
if
(
fd
==
-
1
)
...
...
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