Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Unified Diff: webrtc/modules/audio_coding/codecs/isac/main/source/intialize.c

Issue 1177993003: iSAC: Move global trig tables into the codec instance (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/codecs/isac/main/source/intialize.c
diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/intialize.c b/webrtc/modules/audio_coding/codecs/isac/main/source/intialize.c
index 6df034d1c7d7d7980e653539e7d8aa1ca7a8f6f9..01e683c573f33d0aeb6c917d9dc82c9c0eee03e1 100644
--- a/webrtc/modules/audio_coding/codecs/isac/main/source/intialize.c
+++ b/webrtc/modules/audio_coding/codecs/isac/main/source/intialize.c
@@ -40,10 +40,6 @@ void WebRtcIsac_InitMasking(MaskFiltstr *maskdata) {
}
maskdata->OldEnergy = 10.0;
-
- /* fill tables for transforms */
- WebRtcIsac_InitTransform();
-
the sun 2015/06/15 15:08:51 I don't know this code. What about the stuff above
kwiberg-webrtc 2015/06/15 21:57:28 No, because it operates on per-instance data.
return;
}

Powered by Google App Engine
This is Rietveld 408576698