mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Add missing parentheses in MKTAG and MKBETAG macros.
Originally committed as revision 23711 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9290f15d00
commit
1c7c0e2d40
@ -178,8 +178,8 @@ static inline av_const int av_ceil_log2(int x)
|
|||||||
return av_log2((x - 1) << 1);
|
return av_log2((x - 1) << 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define MKTAG(a,b,c,d) (a | (b << 8) | (c << 16) | (d << 24))
|
#define MKTAG(a,b,c,d) ((a) | ((b) << 8) | ((c) << 16) | ((d) << 24))
|
||||||
#define MKBETAG(a,b,c,d) (d | (c << 8) | (b << 16) | (a << 24))
|
#define MKBETAG(a,b,c,d) ((d) | ((c) << 8) | ((b) << 16) | ((a) << 24))
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \def GET_UTF8(val, GET_BYTE, ERROR)
|
* \def GET_UTF8(val, GET_BYTE, ERROR)
|
||||||
|
Loading…
Reference in New Issue
Block a user