diff options
author | Lennart Poettering <lennart@poettering.net> | 2007-09-22 01:16:14 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2007-09-22 01:16:14 +0000 |
commit | c6b43bf119d59b05cc270027080bd616b560db1b (patch) | |
tree | 26c80bd64c7167a1c4430522bc030aa730ffa9dc /src/pulsecore/sconv.c | |
parent | 668340099c1ebc6d3d28bf04dce5249ee28b223a (diff) |
prefix by order macros with PA_
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1884 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/pulsecore/sconv.c')
-rw-r--r-- | src/pulsecore/sconv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pulsecore/sconv.c b/src/pulsecore/sconv.c index 933192b6..7f5da63f 100644 --- a/src/pulsecore/sconv.c +++ b/src/pulsecore/sconv.c @@ -94,7 +94,7 @@ static void float32re_to_float32ne(unsigned n, const float *a, float *b) { pa_assert(b); for (; n > 0; n--, a++, b++) - *((uint32_t *) b) = UINT32_SWAP(*((uint32_t *) a)); + *((uint32_t *) b) = PA_UINT32_SWAP(*((uint32_t *) a)); } /* s16 */ @@ -111,7 +111,7 @@ static void s16re_to_s16ne(unsigned n, const int16_t *a, int16_t *b) { pa_assert(b); for (; n > 0; n--, a++, b++) - *b = UINT16_SWAP(*a); + *b = PA_UINT16_SWAP(*a); } /* ulaw */ |