aboutsummaryrefslogtreecommitdiff
path: root/celt
diff options
context:
space:
mode:
authorTimothy B. Terriberry <tterribe@xiph.org>2015-02-20 12:44:10 -0800
committerTimothy B. Terriberry <tterribe@xiph.org>2015-02-20 12:44:10 -0800
commit75d81f5bb3705135a0259be0e9602820f1c6cb5c (patch)
tree34f57559d9d1ceac94522ca378f2f04db4a03103 /celt
parent45cbdff36f0d0c2a395326d09e4dd375601e28cb (diff)
downloadlibopus-75d81f5bb3705135a0259be0e9602820f1c6cb5c.tar.gz
Document how to tell if your build is fixed-point.
This way we won't break this by accident.
Diffstat (limited to 'celt')
-rw-r--r--celt/celt.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/celt/celt.c b/celt/celt.c
index c0a1e0da..a610de4f 100644
--- a/celt/celt.c
+++ b/celt/celt.c
@@ -280,6 +280,9 @@ const char *opus_strerror(int error)
const char *opus_get_version_string(void)
{
return "libopus " PACKAGE_VERSION
+ /* Applications may rely on the presence of this substring in the version
+ string to determine if they have a fixed-point or floating-point build
+ at runtime. */
#ifdef FIXED_POINT
"-fixed"
#endif