Fix typo in log message in TTS SynthProxy.

Change-Id: Ica7dbf6cb3db2e07958fadad476571b91bde2c24
This commit is contained in:
Jean-Michel Trivi
2010-03-07 14:29:58 -08:00
parent 796325b619
commit c6120193ef

View File

@@ -50,7 +50,7 @@ public class SynthProxy {
*/
public SynthProxy(String nativeSoLib) {
boolean applyFilter = nativeSoLib.toLowerCase().contains("pico");
Log.v(TtsService.SERVICE_TAG, "1000 about to load "+ nativeSoLib + ", applyFilter="+applyFilter);
Log.v(TtsService.SERVICE_TAG, "About to load "+ nativeSoLib + ", applyFilter="+applyFilter);
native_setup(new WeakReference<SynthProxy>(this), nativeSoLib);
native_setLowShelf(applyFilter, PICO_FILTER_GAIN, PICO_FILTER_LOWSHELF_ATTENUATION,
PICO_FILTER_TRANSITION_FREQ, PICO_FILTER_SHELF_SLOPE);