summaryrefslogtreecommitdiff
path: root/silk/debug.h
diff options
context:
space:
mode:
authorRalph Giles <giles@mozilla.com>2011-11-25 13:02:00 -0800
committerJean-Marc Valin <jmvalin@jmvalin.ca>2011-12-02 12:31:36 -0500
commit120800f8fa478d75ad9f94d91dae775386c6b0d5 (patch)
tree12d06687371998fa8d682443f25b3f1d1ac6a054 /silk/debug.h
parente1be1920bac28c897a940be55319abbb1bed0f51 (diff)
downloadopus-120800f8fa478d75ad9f94d91dae775386c6b0d5.tar.gz
Rename '_FOO' to avoid potentional collisions with reserved identifiers.
C reserves identifiers of the from _[A-Z]+ and we have a number of those in the code. This patch renames the various function arguments, MACROS and preprocessor symbols to avoid the reserved form. It also removes the CHANNELS() macro altogether. This was a minor optimization for TI DSP to force a mono-only build, as were the associated local 'const' versions. Since stereo support is manditory, it wasn't worth keeping. Thanks to John Ridges for raising the issue, and Jean-Marc Valin and Greg Maxwell for reviewing the changes.
Diffstat (limited to 'silk/debug.h')
-rw-r--r--silk/debug.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/silk/debug.h b/silk/debug.h
index a3ea5cd2..5a6b1a15 100644
--- a/silk/debug.h
+++ b/silk/debug.h
@@ -25,8 +25,8 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
***********************************************************************/
-#ifndef _SILK_DEBUG_H_
-#define _SILK_DEBUG_H_
+#ifndef SILK_DEBUG_H
+#define SILK_DEBUG_H
#ifdef _WIN32
#define _CRT_SECURE_NO_DEPRECATE 1
@@ -284,4 +284,4 @@ extern int silk_debug_store_count;
}
#endif
-#endif /* _SILK_DEBUG_H_ */
+#endif /* SILK_DEBUG_H */