1 /* Determining Track Start/End - Header
2 
3  * Copyright (C) 1998 J.A. Bezemer
4  *
5  * Licensed under the terms of the GNU General Public License.
6  * ABSOLUTELY NO WARRANTY.
7  * See the file `COPYING' in this directory.
8  */
9 
10 #ifndef HAVE_TRACKSPLIT_H
11 #define HAVE_TRACKSPLIT_H
12 
13 
14 #define TRACKSPLIT_COMPUTE_HEADERTEXT "Track Location"
15 
16 #ifndef SWIG
17 void tracksplit_main (char *startdir);
18 #else
19 void tracksplit_main (char *filename,
20                       int make_use_rms, int make_graphs, long blocklen,
21                       int global_silence_factor,
22                       int local_silence_threshold,
23                       int min_silence_blocks,
24                       int min_track_blocks, int extra_blocks_start,
25                       int extra_blocks_end);
26 #endif
27 
28 #endif /* HAVE_TARACKSPLIT_H */
29