aboutsummaryrefslogtreecommitdiff
path: root/silk/decode_frame.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/decode_frame.c
parent7152a9aa9a479ac39053a39548343a8ec2757094 (diff)
downloadlibopus-9925366a2bd61f44e306493d389e2b86d1505c4f.tar.gz
Silence the remaining silk/ GCC warnings.
Diffstat (limited to 'silk/decode_frame.c')
-rw-r--r--silk/decode_frame.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/silk/decode_frame.c b/silk/decode_frame.c
index 413ff832..24786174 100644
--- a/silk/decode_frame.c
+++ b/silk/decode_frame.c
@@ -93,7 +93,7 @@ TOC(decode_core)
/********************************************************/
/* Update PLC state */
/********************************************************/
- silk_PLC( psDec, &sDecCtrl, pOut, L, 0 );
+ silk_PLC( psDec, &sDecCtrl, pOut, 0 );
psDec->lossCnt = 0;
psDec->prevSignalType = psDec->indices.signalType;
@@ -103,7 +103,7 @@ TOC(decode_core)
psDec->first_frame_after_reset = 0;
} else {
/* Handle packet loss by extrapolation */
- silk_PLC( psDec, &sDecCtrl, pOut, L, 1 );
+ silk_PLC( psDec, &sDecCtrl, pOut, 1 );
}
/*************************/