Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2011-10-27 07:24:49 +0400
committerRalph Giles <giles@thaumas.net>2011-10-27 07:24:49 +0400
commitda025d5632be80dad0af54af70d2cb0a286802d8 (patch)
tree6b0739d9c6d09418fdc60577f15c6702462703c7 /celt/arch.h
parent4923f3f80ecd77e8f3c549a7fca31c4fd83c9c4d (diff)
Convert tabs to spaces in the opus and celt code.
Also reformat some, but by no means all, of the opus code for line length and three-character indents.
Diffstat (limited to 'celt/arch.h')
-rw-r--r--celt/arch.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/celt/arch.h b/celt/arch.h
index 7bd82777..48428c23 100644
--- a/celt/arch.h
+++ b/celt/arch.h
@@ -103,8 +103,8 @@ typedef opus_val32 celt_ener;
#define VERY_LARGE16 ((opus_val16)32767)
#define Q15_ONE ((opus_val16)32767)
-#define SCALEIN(a) (a)
-#define SCALEOUT(a) (a)
+#define SCALEIN(a) (a)
+#define SCALEOUT(a) (a)
#ifdef FIXED_DEBUG
#include "fixed_debug.h"
@@ -192,8 +192,8 @@ typedef float celt_ener;
#define DIV32_16(a,b) (((opus_val32)(a))/(opus_val16)(b))
#define DIV32(a,b) (((opus_val32)(a))/(opus_val32)(b))
-#define SCALEIN(a) ((a)*CELT_SIG_SCALE)
-#define SCALEOUT(a) ((a)*(1/CELT_SIG_SCALE))
+#define SCALEIN(a) ((a)*CELT_SIG_SCALE)
+#define SCALEOUT(a) ((a)*(1/CELT_SIG_SCALE))
#endif /* !FIXED_POINT */