aboutsummaryrefslogtreecommitdiff
path: root/silk/decode_frame.c
diff options
context:
space:
mode:
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 );
}
/*************************/