~misono/nvdajp/MiscellaneousDependencies

« back to all changes in this revision

Viewing changes to include/espeak/src/wavegen.cpp

  • Committer: Takuya Nishimoto
  • Date: 2012-05-06 14:35:57 UTC
  • Revision ID: nishimotz@gmail.com-20120506143557-1h0itsvl96dsnd4s
imporeted espeak-1.46.17 05.May.2012

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
int outbuf_size = 0;
131
131
 
132
132
// the queue of operations passed to wavegen from sythesize
133
 
long wcmdq[N_WCMDQ][4];
 
133
long64 wcmdq[N_WCMDQ][4];
134
134
int wcmdq_head=0;
135
135
int wcmdq_tail=0;
136
136
 
1868
1868
// return: 0  output buffer has been filled
1869
1869
// return: 1  input command queue is now empty
1870
1870
 
1871
 
        long *q;
 
1871
        long64 *q;
1872
1872
        int length;
1873
1873
        int result;
1874
1874
        int marker_type;
1972
1972
                        break;
1973
1973
 
1974
1974
                case WCMD_VOICE:
1975
 
                        WavegenSetVoice((voice_t *)q[1]);
1976
 
                        free((voice_t *)q[1]);
 
1975
                        WavegenSetVoice((voice_t *)q[2]);
 
1976
                        free((voice_t *)q[2]);
1977
1977
                        break;
1978
1978
 
1979
1979
                case WCMD_EMBEDDED: