nathan@0: /* nathan@0: * MP3/MPlayer plugin to VDR (C++) nathan@0: * nathan@0: * (C) 2001-2005 Stefan Huelswitt nathan@0: * nathan@0: * This code is free software; you can redistribute it and/or nathan@0: * modify it under the terms of the GNU General Public License nathan@0: * as published by the Free Software Foundation; either version 2 nathan@0: * of the License, or (at your option) any later version. nathan@0: * nathan@0: * This code is distributed in the hope that it will be useful, nathan@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of nathan@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the nathan@0: * GNU General Public License for more details. nathan@0: * nathan@0: * You should have received a copy of the GNU General Public License nathan@0: * along with this program; if not, write to the Free Software nathan@0: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. nathan@0: * Or, point your browser to http://www.gnu.org/copyleft/gpl.html nathan@0: */ nathan@0: nathan@0: // This files contains some option switches/values for compile time nathan@0: // configuration of the MP3/MPlayer plugin. You should only alter nathan@0: // this file, if you have understand the source code parts which deal nathan@0: // with the changed value. nathan@0: nathan@0: // After changing this file you should do a "make plugins-clean ; make plugins" nathan@0: // to recompile vdr. nathan@0: nathan@0: #ifndef ___CONFIG_H nathan@0: #define ___CONFIG_H nathan@0: nathan@0: // Uncomment to enable generic debugging messages to the console. This may slow nathan@0: // down operation in some cases. nathan@0: #define DEBUG nathan@0: //#define NO_DEBUG nathan@0: nathan@0: // Defines the filename extention to use for playlist files. nathan@0: #define PLAYLISTEXT ".m3u" nathan@0: nathan@0: // Defines the text to identify WinAmp-Style playlists. nathan@0: #define WINAMPEXT "#EXTM3U" nathan@0: nathan@0: // Defines the timeout in seconds for functions which use a single key nathan@0: // (e.g. openning the playlist window). If the key is repressed during nathan@0: // the timeout, the secondary function is activated. nathan@0: #define MULTI_TIMEOUT 3 nathan@0: nathan@0: // Defines the timeout in ms for entering the single digits in direct song nathan@0: // selection. nathan@0: #define SELECT_TIMEOUT 1000 nathan@0: nathan@0: // If the progress display is closed on direct song selection, the display nathan@0: // is opend temporarily. This defines the time in seconds after the display nathan@0: // is closed again. nathan@0: #define SELECTHIDE_TIMEOUT 3 nathan@0: nathan@0: // Defines the time in seconds to jump inside a song with left/right. nathan@0: #define JUMPSIZE 3 nathan@0: nathan@0: #endif //___CONFIG_H