123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- /*
- * Copyright (C) 2005 to 2007 by Jonathan Duddington
- * email: [email protected]
- * Copyright (C) 2013-2015 Reece H. Dunn
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write see:
- * <http://www.gnu.org/licenses/>.
- */
-
- #ifdef __cplusplus
- extern "C"
- {
- #endif
-
- #define FRAME_WIDTH 1000 // max width for 8000kHz frame
- #define MAX_DISPLAY_FREQ 9500
- #define FRAME_HEIGHT 240
-
-
- #define T_ZOOMOUT 301
- #define T_ZOOMIN 302
- #define T_USEPITCHENV 303
- #define T_SAMPRATE 304
- #define T_PITCH1 305
- #define T_PITCH2 306
- #define T_DURATION 307
- #define T_AMPLITUDE 308
- #define T_AMPFRAME 309
- #define T_TIMEFRAME 310
- #define T_TIMESEQ 311
-
- #define T_AV 312
- #define T_AVP 313
- #define T_FRIC 314
- #define T_FRICBP 315
- #define T_ASPR 316
- #define T_TURB 317
- #define T_SKEW 318
- #define T_TILT 319
- #define T_KOPEN 320
- #define T_FNZ 321
-
-
- #define FILEID1_SPECTSEQ 0x43455053
- #define FILEID2_SPECTSEQ 0x51455354 // for eSpeak sequence
- #define FILEID2_SPECTSEK 0x4b455354 // for Klatt sequence
- #define FILEID2_SPECTSQ2 0x32515354 // with Klatt data
-
- #define FILEID1_SPC2 0x32435053 // an old format for spectrum files
-
- #define FILEID1_PITCHENV 0x43544950
- #define FILEID2_PITCHENV 0x564e4548
-
- #define FILEID1_PRAATSEQ 0x41415250
- #define FILEID2_PRAATSEQ 0x51455354
-
-
- typedef struct {
- unsigned short pitch1;
- unsigned short pitch2;
- unsigned char env[128];
- } PitchEnvelope;
-
- typedef struct {
- short freq;
- short bandw;
- } formant_t;
-
- typedef struct {
- short pkfreq;
- short pkheight;
- short pkwidth;
- short pkright;
- short klt_bw;
- short klt_ap;
- short klt_bp;
- } peak_t;
-
-
- typedef struct
- {
- int keyframe;
- short amp_adjust;
- float length_adjust;
- double rms;
-
- float time;
- float pitch;
- float length;
- float dx;
- unsigned short nx;
- short markers;
- int max_y;
- USHORT *spect; // sqrt of harmonic amplitudes, 1-nx at 'pitch'
-
- short klatt_param[N_KLATTP2];
-
- formant_t formants[N_PEAKS]; // this is just the estimate given by Praat
- peak_t peaks[N_PEAKS];
- } SpectFrame;
-
- double GetFrameRms(SpectFrame *frame, int amp);
-
- typedef struct
- {
- int numframes;
- short amplitude;
- int spare;
- char *name;
-
- SpectFrame **frames;
- PitchEnvelope pitchenv;
- int pitch1;
- int pitch2;
- int duration;
- int grid;
- int bass_reduction;
- int max_x;
- short max_y;
- int file_format;
- } SpectSeq;
-
- SpectSeq *SpectSeqCreate();
- void SpectSeqDestroy(SpectSeq *spect);
- int LoadSpectSeq(SpectSeq *spect, const char *filename);
-
- #ifdef __cplusplus
- }
- #endif
|