summaryrefslogtreecommitdiffstats
path: root/tts
Commit message (Collapse)AuthorAgeFilesLines
* Restructuring the TTS files so that it works as a ServiceCharles Chen2009-06-106-1637/+0
|
* Simplify the TTS for Donut releaseCharles Chen2009-06-082-127/+76
|
* Moving the Tts java class from the android.tts package to the ↵Jean-Michel Trivi2009-06-081-605/+0
| | | | | | | android.speech.tts package. The Tts class (still hidden at this point) is the only Text-To-Speech class that will be exposed to application developers.
* Updating TtsEngine.h and SynthProxy.cpp so that buffer memoryCharles Chen2009-06-051-9/+30
| | | | management is handled on the system side.
* Cleaning up makefile for libttssynthproxy for the simulator.Jean-Michel Trivi2009-06-031-7/+4
|
* Corrected the name of the native library the SynthProxy class loads ↵Jean-Michel Trivi2009-06-021-1/+1
| | | | (libttssynthproxy instead of libsynthproxy) to match the lib name from frameworks/base/tts/jni/Android.mk.
* Addressed comments of change 2515 for the TtsService class:Jean-Michel Trivi2009-06-021-635/+635
| | | | | | - made the SpeechItem and SoundResource inner classes static, - prefixed the TtsService member variables by 'm', - changed indentation from 2 to 4 characters.
* Trying to fix sim-eng build: when building the simulator on linux, link ↵Jean-Michel Trivi2009-06-021-0/+4
| | | | (only) with libdl, as opposed to also making libdl a build target.
* Trying to fix the build for simulator: modifying makefile to not link ↵Jean-Michel Trivi2009-06-021-1/+5
| | | | against libdl.
* Merge change 2515 into donutAndroid (Google) Code Review2009-06-021-0/+783
|\ | | | | | | | | * changes: Adding the TtsService class for text-to-speech synthesis.
| * Adding the TtsService class for text-to-speech synthesis.Charles Chen2009-06-021-0/+783
| |
* | Adding java/jni code for the Java TTS SynthProxy class, which relays calls ↵Jean-Michel Trivi2009-06-013-0/+793
| | | | | | | | from the TTS service to the native TTS plugin library.
* | Adding proxy class to communicate with the TTS service through the ITts ↵Jean-Michel Trivi2009-05-271-0/+605
|/ | | | interface.
* Add AIDL files for the TTS service and the associated callback service (to ↵Jean-Michel Trivi2009-05-222-0/+86
signal synthesis completion).