Merge "Fix bug 3511256 invalid TTS parameter cache size" into honeycomb-mr1

This commit is contained in:
Jean-Michel Trivi
2011-03-04 12:06:22 -08:00
committed by Android (Google) Code Review

View File

@ -414,8 +414,10 @@ public class TextToSpeech {
/**
* {@hide}
* Total number of cached speech parameters.
* This number should be equal to (max param position/2) + 1.
*/
protected static final int NB_CACHED_PARAMS = 20;
protected static final int NB_CACHED_PARAMS = 10;
}
/**