From 42ef0518eb05ca18fccae4d6fb79f2db0d7730d1 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 9 Nov 2007 01:30:25 +0000 Subject: add a few missing macro definitions git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@2034 fefdeb5f-60dc-0310-8127-8f9354f1896f --- src/pulsecore/endianmacros.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/pulsecore') diff --git a/src/pulsecore/endianmacros.h b/src/pulsecore/endianmacros.h index 8f7cfade..05d3262f 100644 --- a/src/pulsecore/endianmacros.h +++ b/src/pulsecore/endianmacros.h @@ -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) -- cgit