summaryrefslogtreecommitdiff
path: root/silk/PLC.c
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2011-09-27 23:30:18 -0400
committerGregory Maxwell <greg@xiph.org>2011-09-27 23:30:18 -0400
commit9925366a2bd61f44e306493d389e2b86d1505c4f (patch)
treedd473b327600d846ee67037ceca12869f4f904f0 /silk/PLC.c
parent7152a9aa9a479ac39053a39548343a8ec2757094 (diff)
downloadopus-9925366a2bd61f44e306493d389e2b86d1505c4f.tar.gz
Silence the remaining silk/ GCC warnings.
Diffstat (limited to 'silk/PLC.c')
-rw-r--r--silk/PLC.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/silk/PLC.c b/silk/PLC.c
index 9fe5a87f..d4029fb0 100644
--- a/silk/PLC.c
+++ b/silk/PLC.c
@@ -48,7 +48,6 @@ void silk_PLC(
silk_decoder_state *psDec, /* I Decoder state */
silk_decoder_control *psDecCtrl, /* I Decoder control */
opus_int16 frame[], /* O Concealed signal */
- opus_int length, /* I length of residual */
opus_int lost /* I Loss flag */
)
{
@@ -62,7 +61,7 @@ void silk_PLC(
/****************************/
/* Generate Signal */
/****************************/
- silk_PLC_conceal( psDec, psDecCtrl, frame, length );
+ silk_PLC_conceal( psDec, psDecCtrl, frame );
psDec->lossCnt++;
} else {
@@ -151,8 +150,7 @@ void silk_PLC_update(
void silk_PLC_conceal(
silk_decoder_state *psDec, /* I/O Decoder state */
silk_decoder_control *psDecCtrl, /* I/O Decoder control */
- opus_int16 frame[], /* O concealed signal */
- opus_int length /* I length of residual */
+ opus_int16 frame[] /* O concealed signal */
)
{
opus_int i, j, k;