mp3splt-gtk
special_split.h
1 /**********************************************************
2  *
3  * mp3splt-gtk -- utility based on mp3splt,
4  * for mp3/ogg splitting without decoding
5  *
6  * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr
7  *
8  *
9  * http://mp3splt.sourceforge.net/
10  *
11  *********************************************************/
12 
13 /**********************************************************
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
28  * USA.
29  *
30  *********************************************************/
31 
32 #ifndef SPECIAL_SPLIT_H
33 
34 #define FILE_MODE_SINGLE 1
35 #define FILE_MODE_MULTIPLE 0
36 
37 #define SELECTED_SPLIT_TRIM_SILENCE 6
38 #define SELECTED_SPLIT_SILENCE 5
39 #define SELECTED_SPLIT_EQUAL_TIME_TRACKS 4
40 #define SELECTED_SPLIT_NORMAL 3
41 #define SELECTED_SPLIT_TIME 2
42 #define SELECTED_SPLIT_WRAP 1
43 #define SELECTED_SPLIT_ERROR 0
44 
45 #define NUMBER_OF_SPLIT_MODES 6
46 
47 void select_split_mode(int split_mode);
48 
49 void deactivate_silence_parameters();
50 void activate_silence_parameters();
51 void split_mode_changed (GtkToggleButton *radio_b, gpointer data);
52 GtkWidget *create_special_split_page();
53 
54 #define SPECIAL_SPLIT_H
55 #endif
56