VoiceDefMBROLA.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. Copyright 2011 Tobias "Tomoko" Platen
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 3 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #ifndef VOICEDEF_MBROLA_H
  15. #define VOICEDEF_MBROLA_H
  16. #include <sekai/VoiceSampler.h>
  17. #include <map>
  18. #include <string>
  19. struct diphone {
  20. int begin;
  21. int middle;
  22. int end;
  23. };
  24. class VoiceDefMBROLA : public VoiceDef {
  25. public:
  26. VoiceDefMBROLA(std::string path);
  27. virtual ~VoiceDefMBROLA();
  28. void getImpulseResponse(float pos, float* impulseResponse,
  29. int* impulseResponseLength,float morph);
  30. float getLength();
  31. diphone* getDiphone(std::string index);
  32. int getSamplerate() { return _samplerate; }
  33. virtual std::string getPhoLine(int index){return "";}
  34. private:
  35. short* _voice_data;
  36. uint32_t _voice_data_length;
  37. std::map<std::string, diphone*> _diphone_map;
  38. int _samplerate;
  39. int _mbrperiod;
  40. };
  41. // realtime_demo needs upgrade
  42. #endif