config.h
branchtrunk
changeset 0 474a1293c3c0
equal deleted inserted replaced
-1:000000000000 0:474a1293c3c0
       
     1 /*
       
     2  * MP3/MPlayer plugin to VDR (C++)
       
     3  *
       
     4  * (C) 2001-2005 Stefan Huelswitt <s.huelswitt@gmx.de>
       
     5  *
       
     6  * This code is free software; you can redistribute it and/or
       
     7  * modify it under the terms of the GNU General Public License
       
     8  * as published by the Free Software Foundation; either version 2
       
     9  * of the License, or (at your option) any later version.
       
    10  *
       
    11  * This code is distributed in the hope that it will be useful,
       
    12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    14  * GNU General Public License for more details.
       
    15  *
       
    16  * You should have received a copy of the GNU General Public License
       
    17  * along with this program; if not, write to the Free Software
       
    18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
       
    19  * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
       
    20  */
       
    21 
       
    22 // This files contains some option switches/values for compile time
       
    23 // configuration of the MP3/MPlayer plugin. You should only alter
       
    24 // this file, if you have understand the source code parts which deal
       
    25 // with the changed value.
       
    26 
       
    27 // After changing this file you should do a "make plugins-clean ; make plugins"
       
    28 // to recompile vdr.
       
    29 
       
    30 #ifndef ___CONFIG_H
       
    31 #define ___CONFIG_H
       
    32 
       
    33 // Uncomment to enable generic debugging messages to the console. This may slow
       
    34 // down operation in some cases.
       
    35 #define DEBUG
       
    36 //#define NO_DEBUG
       
    37 
       
    38 // Defines the filename extention to use for playlist files.
       
    39 #define PLAYLISTEXT ".m3u"
       
    40 
       
    41 // Defines the text to identify WinAmp-Style playlists.
       
    42 #define WINAMPEXT "#EXTM3U"
       
    43 
       
    44 // Defines the timeout in seconds for functions which use a single key
       
    45 // (e.g. openning the playlist window). If the key is repressed during
       
    46 // the timeout, the secondary function is activated.
       
    47 #define MULTI_TIMEOUT 3
       
    48 
       
    49 // Defines the timeout in ms for entering the single digits in direct song
       
    50 // selection.
       
    51 #define SELECT_TIMEOUT 1000
       
    52 
       
    53 // If the progress display is closed on direct song selection, the display
       
    54 // is opend temporarily. This defines the time in seconds after the display
       
    55 // is closed again.
       
    56 #define SELECTHIDE_TIMEOUT 3
       
    57 
       
    58 // Defines the time in seconds to jump inside a song with left/right.
       
    59 #define JUMPSIZE 3
       
    60 
       
    61 #endif //___CONFIG_H