mirror of
https://github.com/mpv-player/mpv
synced 2024-11-14 22:48:35 +01:00
common: add macro for checking whether a value is a power of two
I think I repeated this inline in some places (or maybe not), and some experimental but discarded code used it. Add it anyway, maybe it'll be useful. Or it'll give someone a chance to get a contribution into mpv by removing an unused macro.
This commit is contained in:
parent
4291329d56
commit
56f09fa03d
@ -44,6 +44,7 @@
|
||||
#define MP_ALIGN_UP(x, align) (((x) + (align) - 1) & ~((align) - 1))
|
||||
#define MP_ALIGN_DOWN(x, align) ((x) & ~((align) - 1))
|
||||
#define MP_IS_ALIGNED(x, align) (!((x) & ((align) - 1)))
|
||||
#define MP_IS_POWER_OF_2(x) ((x) > 0 && !((x) & ((x) - 1)))
|
||||
|
||||
// Return "a", or if that is NOPTS, return "def".
|
||||
#define MP_PTS_OR_DEF(a, def) ((a) == MP_NOPTS_VALUE ? (def) : (a))
|
||||
|
Loading…
Reference in New Issue
Block a user