mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 16:58:38 +09:00
ffvpx: update ffmpeg to 3.4.4 with AVC/AAC/HEVC/FLAC added.
This commit is contained in:
parent
eb361970c5
commit
113a86e60a
377 changed files with 133192 additions and 291 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue