diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2017-08-24 12:03:11 -0700 |
---|---|---|
committer | Ralph Giles <giles@thaumas.net> | 2017-08-29 12:53:34 -0700 |
commit | 1b9be1a616f38f21f61f2c6b0d51e8763f0c785e (patch) | |
tree | 94f2f3620a889b344d03af2b65ee822c9e1f8943 /src/opus_decoder.c | |
parent | 492fc927268752da4cae855652b34cbaa93ebe44 (diff) | |
download | opus-1b9be1a616f38f21f61f2c6b0d51e8763f0c785e.tar.gz |
Fix typo in a comment in opus_decoder.c
Signed-off-by: Ralph Giles <giles@thaumas.net>
Diffstat (limited to 'src/opus_decoder.c')
-rw-r--r-- | src/opus_decoder.c | 2 |
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; |