]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
Fix the osx writer on little endian machines.
authorAndre Noll <maan@systemlinux.org>
Sat, 15 Nov 2008 19:26:06 +0000 (20:26 +0100)
committerAndre Noll <maan@systemlinux.org>
Sat, 15 Nov 2008 19:26:06 +0000 (20:26 +0100)
We have to use kLinearPCMFormatFlagIsBigEndian only of we're on a little endian
(intel) system.

osx_write.c

index 6001b8597d8823f1c7d528439580836088b269cf..057526e30b6900b5dbc747919c43401d0aa42c88 100644 (file)
@@ -148,6 +148,12 @@ static OSStatus osx_callback(void * inClientData,
        return 0;
 }
 
+#ifdef WORDS_BIGENDIAN /* ppc */
+#define ENDIAN_FLAGS kLinearPCMFormatFlagIsBigEndian
+#else
+#define ENDIAN_FLAGS 0
+#endif
+
 static int osx_write_open(struct writer_node *wn)
 {
        struct private_osx_write_data *powd = para_calloc(
@@ -195,7 +201,7 @@ static int osx_write_open(struct writer_node *wn)
        /* flags specific to each format */
        format.mFormatFlags = kLinearPCMFormatFlagIsFloat
                | kLinearPCMFormatFlagIsPacked
-               | kLinearPCMFormatFlagIsBigEndian;
+               | ENDIAN_FLAGS;
        if (!conf->channels_given && wng->channels)
                powd->channels = *wng->channels;
        else