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
path: root/src
diff options
context:
space:
mode:
authorMatt Brubeck <mbrubeck@limpet.net>2017-08-24 22:03:11 +0300
committerRalph Giles <giles@thaumas.net>2017-08-29 22:53:34 +0300
commit1b9be1a616f38f21f61f2c6b0d51e8763f0c785e (patch)
tree94f2f3620a889b344d03af2b65ee822c9e1f8943 /src
parent492fc927268752da4cae855652b34cbaa93ebe44 (diff)
Fix typo in a comment in opus_decoder.c
Signed-off-by: Ralph Giles <giles@thaumas.net>
Diffstat (limited to 'src')
-rw-r--r--src/opus_decoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opus_decoder.c b/src/opus_decoder.c
index 149ae7f2..2cdadaa4 100644
--- a/src/opus_decoder.c
+++ b/src/opus_decoder.c
@@ -104,7 +104,7 @@ int opus_decoder_init(OpusDecoder *st, opus_int32 Fs, int channels)
return OPUS_BAD_ARG;
OPUS_CLEAR((char*)st, opus_decoder_get_size(channels));
- /* Initialize SILK encoder */
+ /* Initialize SILK decoder */
ret = silk_Get_Decoder_Size(&silkDecSizeBytes);
if (ret)
return OPUS_INTERNAL_ERROR;