diff options
author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2012-01-06 19:19:32 +0000 |
---|---|---|
committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2012-01-06 19:19:32 +0000 |
commit | be0e197190c0d4af347c5532b8ab8229279d940e (patch) | |
tree | 39b9030d4e5df8c8b736af0492e7e69ac2a1d8e7 /rbutil/rbutilqt/base/talkgenerator.h | |
parent | f860b571437fc514bfefa1444dbdbf09583f8f9b (diff) |
Split up encoders sources.
Create a separate source / header file for each supported encoder and the base
class and rename classes for better readability. This should also make it
easier adding new encoders.
Remove a few trailing spaces while at it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31592 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutilqt/base/talkgenerator.h')
-rw-r--r-- | rbutil/rbutilqt/base/talkgenerator.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rbutil/rbutilqt/base/talkgenerator.h b/rbutil/rbutilqt/base/talkgenerator.h index a446a26342..5fe036e2f1 100644 --- a/rbutil/rbutilqt/base/talkgenerator.h +++ b/rbutil/rbutilqt/base/talkgenerator.h @@ -25,7 +25,7 @@ #include <QtCore> #include "progressloggerinterface.h" -#include "encoders.h" +#include "encoderbase.h" #include "ttsbase.h" //! \brief Talk generator, generates .wav and .talk files out of a list. @@ -57,9 +57,9 @@ public: * for error checking */ struct { - EncBase* encoder; + EncoderBase* encoder; TTSBase* tts; - TalkGenerator* generator; + TalkGenerator* generator; int wavtrim; } refs; }; @@ -92,7 +92,7 @@ private: static void ttsEntryPoint(TalkEntry& entry); TTSBase* m_tts; - EncBase* m_enc; + EncoderBase* m_enc; bool m_ttsWarnings; bool m_userAborted; |