mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-25 16:21:13 +00:00
avcodec/texturedsp: Add protective () to RGBA() macro
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b64e70436e
commit
7a4b8817fe
@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
#include "texturedsp.h"
|
#include "texturedsp.h"
|
||||||
|
|
||||||
#define RGBA(r, g, b, a) (r) | ((g) << 8) | ((b) << 16) | ((a) << 24)
|
#define RGBA(r, g, b, a) ((r) | ((g) << 8) | ((b) << 16) | ((a) << 24))
|
||||||
|
|
||||||
static av_always_inline void extract_color(uint32_t colors[4],
|
static av_always_inline void extract_color(uint32_t colors[4],
|
||||||
uint16_t color0,
|
uint16_t color0,
|
||||||
|
Loading…
Reference in New Issue
Block a user