mirror of https://git.ffmpeg.org/ffmpeg.git
random_seed: use proper #includes
Use <> for system headers, add needed math.h, drop unnecessary avutil.h. Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
08e09ed7db
commit
172ee1da2b
|
@ -20,10 +20,10 @@
|
||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
#include <math.h>
|
||||||
|
#include <time.h>
|
||||||
#include "timer.h"
|
#include "timer.h"
|
||||||
#include "time.h"
|
|
||||||
#include "random_seed.h"
|
#include "random_seed.h"
|
||||||
#include "avutil.h"
|
|
||||||
|
|
||||||
static int read_random(uint32_t *dst, const char *file)
|
static int read_random(uint32_t *dst, const char *file)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue