am 371fd13c: Merge "Fix bug 3511256 invalid TTS parameter cache size" into honeycomb-mr1

* commit '371fd13c31b7e067fafc680948b907b6a0a621d7':
  Fix bug 3511256 invalid TTS parameter cache size
This commit is contained in:
Jean-Michel Trivi
2011-03-04 12:08:40 -08:00
committed by Android Git Automerger

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;
}
/**