<html>
    <head>
      <base href="https://bugs.freedesktop.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - big endian support in webrtc-audio-processing"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=95738#c4">Comment # 4</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - big endian support in webrtc-audio-processing"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=95738">bug 95738</a>
              from <span class="vcard"><a class="email" href="mailto:than@redhat.com" title="than <than@redhat.com>"> <span class="fn">than</span></a>
</span></b>
        <pre>(In reply to Felipe Sateler from <a href="show_bug.cgi?id=95738#c2">comment #2</a>)
<span class="quote">> The attached patch does not fix the issue fully:


> <a href="https://buildd.debian.org/status/logs.php?pkg=webrtc-audio-processing&ver=0">https://buildd.debian.org/status/logs.php?pkg=webrtc-audio-processing&ver=0</a>.
> 2-2&suite=experimental</span >

it's another issue. please try following patch which should fix your issue


diff -up webrtc-audio-processing-0.2/webrtc/typedefs.h.typedef
webrtc-audio-processing-0.2/webrtc/typedefs.h
--- webrtc-audio-processing-0.2/webrtc/typedefs.h.typedef       2016-05-12
09:08:53.885000410 -0500
+++ webrtc-audio-processing-0.2/webrtc/typedefs.h       2016-05-12
09:12:38.006851953 -0500
@@ -48,7 +48,19 @@
 #define WEBRTC_ARCH_32_BITS
 #define WEBRTC_ARCH_LITTLE_ENDIAN
 #else
-#error Please add support for your architecture in typedefs.h
+/* instead of failing, use typical unix defines... */
+#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
+#define WEBRTC_ARCH_LITTLE_ENDIAN
+#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
+#define WEBRTC_ARCH_BIG_ENDIAN
+#else
+#error __BYTE_ORDER__ is not defined
+#endif
+#if defined(__LP64__)
+#define WEBRTC_ARCH_64_BITS
+#else
+#define WEBRTC_ARCH_32_BITS
+#endif
 #endif

 #if !(defined(WEBRTC_ARCH_LITTLE_ENDIAN) ^ defined(WEBRTC_ARCH_BIG_ENDIAN))</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the QA Contact for the bug.</li>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>