shithub: opus

Download patch

ref: 9f7d17bd118892208591379aaf8a45a3e2c1a736
parent: 5c06f8c585e6c1a8ee206ff02f19613046ed8aeb
author: Ralph Giles <[email protected]>
date: Wed Nov 30 05:28:35 EST 2011

Uncomment the reporting for UADD32 and USUB32 in fixed_debug.h.

--- a/celt/fixed_debug.h
+++ b/celt/fixed_debug.h
@@ -269,12 +269,12 @@
    unsigned long long res;
    if (!VERIFY_UINT(a) || !VERIFY_UINT(b))
    {
-      /*fprintf (stderr, "USUB32: inputs are not int: %llu %llu in %s: line %d\n", (unsigned)a, (unsigned)b, file, line);*/
+      fprintf (stderr, "USUB32: inputs are not int: %llu %llu in %s: line %d\n", (unsigned)a, (unsigned)b, file, line);
    }
    res = a-b;
    if (!VERIFY_UINT(res))
    {
-      /*fprintf (stderr, "USUB32: output is not int: %llu - %llu = %llu in %s: line %d\n", a, b, res, file, line);*/
+      fprintf (stderr, "USUB32: output is not int: %llu - %llu = %llu in %s: line %d\n", a, b, res, file, line);
    }
    celt_mips+=2;
    return res;