00001 /********************************************************** 00002 * 00003 * libmp3splt -- library based on mp3splt, 00004 * for mp3/ogg splitting without decoding 00005 * 00006 * Copyright (c) 2010 David Belohrad 00007 * Copyright (c) 2010-2012 Alexandru Munteanu - io_fx@yahoo.fr 00008 * 00009 * http://mp3splt.sourceforge.net 00010 * 00011 *********************************************************/ 00012 00013 /********************************************************** 00014 * 00015 * This program is free software; you can redistribute it and/or 00016 * modify it under the terms of the GNU General Public License 00017 * as published by the Free Software Foundation; either version 2 00018 * of the License, or (at your option) any later version. 00019 * 00020 * This program is distributed in the hope that it will be useful, 00021 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 * GNU General Public License for more details. 00024 * 00025 * You should have received a copy of the GNU General Public License 00026 * along with this program; if not, write to the Free Software 00027 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 00028 * 02111-1307, 00029 * USA. 00030 * 00031 *********************************************************/ 00032 00033 #ifndef NO_PCRE 00034 00035 #ifndef SPLT_FILENAME_REGEX_H 00036 00037 splt_tags *splt_fr_parse_from_state(splt_state *state, int *error); 00038 splt_tags *splt_fr_parse(splt_state *state, const char *filename, const char *regex, 00039 const char *default_comment, const char *default_genre, int *error); 00040 00041 #define SPLT_FILENAME_REGEX_H 00042 00043 #endif 00044 00045 #endif 00046