From b8a30f9ca3776b71adf3a8b344c2351e40256b15 Mon Sep 17 00:00:00 2001
From: Ralph Giles <giles@thaumas.net>
Date: Tue, 2 Aug 2011 10:17:44 -0700
Subject: [PATCH] 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.
---
 src/opus.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/opus.c b/src/opus.c
index a7d842789..432e6509b 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;
 }
-- 
GitLab