summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjbuethe <jbuethe@amazon.de>2023-02-15 17:19:43 +0000
committerjbuethe <jbuethe@amazon.de>2023-02-15 17:19:43 +0000
commit5082f88dc8d9f5b10f3f6277f452ce3f39404098 (patch)
treee36696e0b3d9c4dd1dff61bc01976362302090f6
parentb13b82f56fd003afcd659227f117f799365b679e (diff)
downloadopus-5082f88dc8d9f5b10f3f6277f452ce3f39404098.tar.gz
simplification
-rw-r--r--silk/decode_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/silk/decode_core.c b/silk/decode_core.c
index 71f55c7c..b156e69a 100644
--- a/silk/decode_core.c
+++ b/silk/decode_core.c
@@ -148,7 +148,7 @@ void silk_decode_core(
}
/* periods */
- itmp = signalType == TYPE_VOICED ? lag = psDecCtrl->pitchL[ k ] : 0;
+ itmp = signalType == TYPE_VOICED ? psDecCtrl->pitchL[ k ] : 0;
fwrite(&itmp, sizeof(itmp), 1, fperiod);
}