2 terminatorX - realtime audio scratching software
3 Copyright (C) 1999 Alexander König
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 Description: Header to tX_global.c / defines the heavily used
26 21 Jul 1999: Introduced the lowpass globals.
34 #endif /* __cplusplus */
45 char scratch_name[PATH_MAX];
46 unsigned int scratch_size; // In Bytes
47 unsigned int scratch_len; // In samples
48 int16_t *scratch_data;
50 char loop_name[PATH_MAX];
51 unsigned int loop_len;
52 unsigned int loop_size;
55 char prefix[PATH_MAX];
56 char audio_device[PATH_MAX];
59 char xinput_device[256]; // If your device's name is longer than that
60 // you are insane and you simply don't deserve
61 // running terminatorX ;) (said the guy who invented 8+3)
71 int rec_size; // In Bytes
79 f_prec vtt_default_speed;
93 char last_fn[PATH_MAX];
108 char tables_filename[PATH_MAX];
109 char record_filename[PATH_MAX];
114 extern tx_global globals;
116 extern void load_globals();
117 extern void store_globals();
121 #endif /* __cplusplus */