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-08-02 21:17:44 +0400
committerRalph Giles <giles@thaumas.net>2011-08-02 21:17:44 +0400
commitb8a30f9ca3776b71adf3a8b344c2351e40256b15 (patch)
tree94b3e3fe32832885eeb5208cff31370e49794fde /src/opus.c
parenta57e0b986e0ffdfc3fdacb5095689b8a12b20a4c (diff)
Use 'libopus' rather than 'Opus' in the version string.
This better distinguishes the reference implementation, which is what this string is meant to do. Thanks to Greg Maxwell for the suggestion.
Diffstat (limited to 'src/opus.c')
-rw-r--r--src/opus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/opus.c b/src/opus.c
index a7d84278..432e6509 100644
--- a/src/opus.c
+++ b/src/opus.c
@@ -32,7 +32,7 @@
#include "opus.h"
#ifndef OPUS_VERSION
-#define OPUS_VERSION "Opus version unknown"
+#define OPUS_VERSION "libopus version unknown"
#endif
const char *opus_strerror(int error)
@@ -55,5 +55,5 @@ const char *opus_strerror(int error)
const char *opus_get_version_string(void)
{
- return "Opus " OPUS_VERSION;
+ return "libopus " OPUS_VERSION;
}