summaryrefslogtreecommitdiffstats
path: root/byteswap.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2007-05-18 00:10:02 +0000
committerLennart Poettering <lennart@poettering.net>2007-05-18 00:10:02 +0000
commit284516185f90412c22dfa9a28cb93fb344af591b (patch)
tree54dff69f36e31198b1daa722424412f835bee6fd /byteswap.c
parent30562d7cba51a9879489ce88840c5f67ff873026 (diff)
really prefix everything with "sa_"
git-svn-id: file:///home/lennart/svn/public/libsydney/trunk@28 9ba3c220-e4d3-45a2-8aa3-73fcc9aff6ce
Diffstat (limited to 'byteswap.c')
-rw-r--r--byteswap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/byteswap.c b/byteswap.c
index addd572..8ae0b7a 100644
--- a/byteswap.c
+++ b/byteswap.c
@@ -41,9 +41,9 @@ static void byteswap32(void *_dst, size_t dstr, const void *_src, size_t sstr, s
}
}
-byteswap_func_t get_byteswap_func(sa_pcm_format_t f) {
+sa_byteswap_func_t sa_get_byteswap_func(sa_pcm_format_t f) {
- static const byteswap_func_t funcs[_SA_PCM_FORMAT_MAX] = {
+ static const sa_byteswap_func_t funcs[_SA_PCM_FORMAT_MAX] = {
[SA_PCM_FORMAT_S16_RE] = byteswap16,
[SA_PCM_FORMAT_S24_RE] = byteswap24,
[SA_PCM_FORMAT_S32_RE] = byteswap32,