mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Remove a pointless/bad "static".
It has no advantage and seems to cause compile issues with some combinations of compiler/compiler flags/PIC. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
parent
3c3daf4d19
commit
f04d4345da
@ -30,7 +30,7 @@ typedef struct YuvPixel {
|
|||||||
} YuvPixel;
|
} YuvPixel;
|
||||||
|
|
||||||
static int mp_yuv_to_rgb(int y, int v, int u, int clip_rgb) {
|
static int mp_yuv_to_rgb(int y, int v, int u, int clip_rgb) {
|
||||||
static const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
|
const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
|
||||||
int r, g, b;
|
int r, g, b;
|
||||||
|
|
||||||
r = (1000 * y + 701 * v) / 1000;
|
r = (1000 * y + 701 * v) / 1000;
|
||||||
|
Loading…
Reference in New Issue
Block a user