mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-02 10:51:45 +02:00
move message dir into common
This commit is contained in:
parent
3f16a6ce88
commit
54a8ca824f
23 changed files with 14 additions and 12 deletions
47
common/endian.hpp
Normal file
47
common/endian.hpp
Normal file
|
@ -0,0 +1,47 @@
|
|||
#ifndef ENDIAN_H
|
||||
#define ENDIAN_H
|
||||
|
||||
#ifdef IS_BIG_ENDIAN
|
||||
# define SWAP_16(x) (__builtin_bswap16(x))
|
||||
# define SWAP_32(x) (__builtin_bswap32(x))
|
||||
# define SWAP_64(x) (__builtin_bswap64(x))
|
||||
#else
|
||||
# define SWAP_16(x) x
|
||||
# define SWAP_32(x) x
|
||||
# define SWAP_64(x) x
|
||||
#endif
|
||||
|
||||
namespace endian
|
||||
{
|
||||
|
||||
template <typename T>
|
||||
T swap(const T&);
|
||||
|
||||
template <>
|
||||
inline int8_t swap(const int8_t& val)
|
||||
{
|
||||
return val;
|
||||
}
|
||||
|
||||
template <>
|
||||
inline int16_t swap(const int16_t& val)
|
||||
{
|
||||
return SWAP_16(val);
|
||||
}
|
||||
|
||||
template <>
|
||||
inline int32_t swap(const int32_t& val)
|
||||
{
|
||||
return SWAP_32(val);
|
||||
}
|
||||
|
||||
template <>
|
||||
inline int64_t swap(const int64_t& val)
|
||||
{
|
||||
return SWAP_64(val);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue