00001 /* 00002 * audacity.h -- Audacity label file parser portion of the Mp3Splt utility 00003 * Utility for mp3/ogg splitting without decoding 00004 * 00005 * Copyright (c) 2002-2004 M. Trotta - <matteo.trotta@lib.unimib.it> 00006 * Copyright (c) 2007 Federico Grau - <donfede@casagrau.org> 00007 * 00008 * http://mp3splt.sourceforge.net 00009 * http://audacity.sourceforge.net/ 00010 */ 00011 00012 /********************************************************** 00013 * 00014 * This program is free software; you can redistribute it and/or 00015 * modify it under the terms of the GNU General Public License 00016 * as published by the Free Software Foundation; either version 2 00017 * of the License, or (at your option) any later version. 00018 * 00019 * This program is distributed in the hope that it will be useful, 00020 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00022 * GNU General Public License for more details. 00023 * 00024 * You should have received a copy of the GNU General Public License 00025 * along with this program; if not, write to the Free Software 00026 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 00027 * 02111-1307, 00028 * USA. 00029 * 00030 *********************************************************/ 00031 00032 #ifndef _MP3SPLT_AUDACITY_H 00033 00034 int splt_audacity_put_splitpoints(const char *file, splt_state *state, int *error); 00035 00036 typedef struct { 00037 long begin; 00038 long end; 00039 char *name; 00040 } splt_audacity; 00041 00042 #define _MP3SPLT_AUDACITY_H 00043 #endif 00044