Commit 7a4b8817 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/texturedsp: Add protective () to RGBA() macro

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b64e7043
......@@ -31,7 +31,7 @@
#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],
uint16_t color0,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment