config.h
branchtrunk
changeset 0 474a1293c3c0
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config.h	Sat Dec 29 14:47:40 2007 +0100
     1.3 @@ -0,0 +1,61 @@
     1.4 +/*
     1.5 + * MP3/MPlayer plugin to VDR (C++)
     1.6 + *
     1.7 + * (C) 2001-2005 Stefan Huelswitt <s.huelswitt@gmx.de>
     1.8 + *
     1.9 + * This code is free software; you can redistribute it and/or
    1.10 + * modify it under the terms of the GNU General Public License
    1.11 + * as published by the Free Software Foundation; either version 2
    1.12 + * of the License, or (at your option) any later version.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful,
    1.15 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.16 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.17 + * GNU General Public License for more details.
    1.18 + *
    1.19 + * You should have received a copy of the GNU General Public License
    1.20 + * along with this program; if not, write to the Free Software
    1.21 + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
    1.22 + * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
    1.23 + */
    1.24 +
    1.25 +// This files contains some option switches/values for compile time
    1.26 +// configuration of the MP3/MPlayer plugin. You should only alter
    1.27 +// this file, if you have understand the source code parts which deal
    1.28 +// with the changed value.
    1.29 +
    1.30 +// After changing this file you should do a "make plugins-clean ; make plugins"
    1.31 +// to recompile vdr.
    1.32 +
    1.33 +#ifndef ___CONFIG_H
    1.34 +#define ___CONFIG_H
    1.35 +
    1.36 +// Uncomment to enable generic debugging messages to the console. This may slow
    1.37 +// down operation in some cases.
    1.38 +#define DEBUG
    1.39 +//#define NO_DEBUG
    1.40 +
    1.41 +// Defines the filename extention to use for playlist files.
    1.42 +#define PLAYLISTEXT ".m3u"
    1.43 +
    1.44 +// Defines the text to identify WinAmp-Style playlists.
    1.45 +#define WINAMPEXT "#EXTM3U"
    1.46 +
    1.47 +// Defines the timeout in seconds for functions which use a single key
    1.48 +// (e.g. openning the playlist window). If the key is repressed during
    1.49 +// the timeout, the secondary function is activated.
    1.50 +#define MULTI_TIMEOUT 3
    1.51 +
    1.52 +// Defines the timeout in ms for entering the single digits in direct song
    1.53 +// selection.
    1.54 +#define SELECT_TIMEOUT 1000
    1.55 +
    1.56 +// If the progress display is closed on direct song selection, the display
    1.57 +// is opend temporarily. This defines the time in seconds after the display
    1.58 +// is closed again.
    1.59 +#define SELECTHIDE_TIMEOUT 3
    1.60 +
    1.61 +// Defines the time in seconds to jump inside a song with left/right.
    1.62 +#define JUMPSIZE 3
    1.63 +
    1.64 +#endif //___CONFIG_H