1
0
Fork 0
forked from len0rd/rockbox

rbutil: improve voice and talk generation.

- introduce a talkgenerator to better share code between voice and talk generation.
- name intermediate .talkfiles after the md5sum of the text. (prevents naming problems).
- do not directly use the logger, instead emit signals.
- move talkfile and voicefile generation to base/

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21524 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Wenger 2009-06-26 20:40:51 +00:00
parent 73d25744fb
commit 20bf8aaf18
11 changed files with 874 additions and 802 deletions

View file

@ -53,7 +53,8 @@ SOURCES += rbutilqt.cpp \
base/zipinstaller.cpp \
progressloggergui.cpp \
installtalkwindow.cpp \
talkfile.cpp \
base/talkfile.cpp \
base/talkgenerator.cpp \
base/autodetection.cpp \
../ipodpatcher/ipodpatcher.c \
../sansapatcher/sansapatcher.c \
@ -69,7 +70,7 @@ SOURCES += rbutilqt.cpp \
base/tts.cpp \
../../tools/wavtrim.c \
../../tools/voicefont.c \
voicefile.cpp \
base/voicefile.cpp \
createvoicewindow.cpp \
base/rbsettings.cpp \
base/rbunzip.cpp \
@ -97,7 +98,8 @@ HEADERS += rbutilqt.h \
version.h \
base/zipinstaller.h \
installtalkwindow.h \
talkfile.h \
base/talkfile.h \
base/talkgenerator.h \
base/autodetection.h \
progressloggerinterface.h \
progressloggergui.h \
@ -121,7 +123,7 @@ HEADERS += rbutilqt.h \
base/tts.h \
../../tools/wavtrim.h \
../../tools/voicefont.h \
voicefile.h \
base/voicefile.h \
createvoicewindow.h \
base/rbsettings.h \
base/rbunzip.h \