ffvpx: update ffmpeg to 3.4.4 with AVC/AAC/HEVC/FLAC added.

This commit is contained in:
Roy Tam 2019-02-22 21:56:49 +08:00
commit 113a86e60a
377 changed files with 133192 additions and 291 deletions

View file

@ -28,7 +28,7 @@
#include "common.h"
#include "eval.h"
#include "log.h"
/* #include "random_seed.h" */
#include "ff_random_seed.h"
#include "time_internal.h"
#include "parseutils.h"
#include "fftime.h"
@ -373,7 +373,7 @@ int av_parse_color(uint8_t *rgba_color, const char *color_string, int slen,
rgba_color[3] = 255;
if (!av_strcasecmp(color_string2, "random") || !av_strcasecmp(color_string2, "bikeshed")) {
int rgba = 0xffffffff; /* av_get_random_seed(); */
int rgba = av_get_random_seed();
rgba_color[0] = rgba >> 24;
rgba_color[1] = rgba >> 16;
rgba_color[2] = rgba >> 8;