mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
add a few missing macro definitions
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@2034 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
cb66762d6d
commit
42ef0518eb
1 changed files with 12 additions and 0 deletions
|
|
@ -63,9 +63,15 @@
|
|||
#define PA_UINT16_FROM_LE(x) PA_UINT16_SWAP(x)
|
||||
#define PA_UINT16_FROM_BE(x) ((uint16_t)(x))
|
||||
|
||||
#define PA_UINT16_TO_LE(x) PA_UINT16_SWAP(x)
|
||||
#define PA_UINT16_TO_BE(x) ((uint16_t)(x))
|
||||
|
||||
#define PA_INT32_FROM_LE(x) PA_INT32_SWAP(x)
|
||||
#define PA_INT32_FROM_BE(x) ((int32_t)(x))
|
||||
|
||||
#define PA_INT32_TO_LE(x) PA_INT32_SWAP(x)
|
||||
#define PA_INT32_TO_BE(x) ((int32_t)(x))
|
||||
|
||||
#define PA_UINT32_FROM_LE(x) PA_UINT32_SWAP(x)
|
||||
#define PA_UINT32_FROM_BE(x) ((uint32_t)(x))
|
||||
|
||||
|
|
@ -81,9 +87,15 @@
|
|||
#define PA_UINT16_FROM_LE(x) ((uint16_t)(x))
|
||||
#define PA_UINT16_FROM_BE(x) PA_UINT16_SWAP(x)
|
||||
|
||||
#define PA_UINT16_TO_LE(x) ((uint16_t)(x))
|
||||
#define PA_UINT16_TO_BE(x) PA_UINT16_SWAP(x)
|
||||
|
||||
#define PA_INT32_FROM_LE(x) ((int32_t)(x))
|
||||
#define PA_INT32_FROM_BE(x) PA_INT32_SWAP(x)
|
||||
|
||||
#define PA_INT32_TO_LE(x) ((int32_t)(x))
|
||||
#define PA_INT32_TO_BE(x) PA_INT32_SWAP(x)
|
||||
|
||||
#define PA_UINT32_FROM_LE(x) ((uint32_t)(x))
|
||||
#define PA_UINT32_FROM_BE(x) PA_UINT32_SWAP(x)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue