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: #include nathan@0: nathan@0: #include "common.h" nathan@0: #include "setup-mp3.h" nathan@0: nathan@0: cMP3Setup MP3Setup; nathan@0: nathan@0: // --- cMP3Setup --------------------------------------------------------------- nathan@0: nathan@0: cMP3Setup::cMP3Setup(void) nathan@0: { nathan@0: InitLoopMode = 0; nathan@0: InitShuffleMode = 0; nathan@0: AudioMode = 1; nathan@0: BgrScan = 2; nathan@0: EditorMode = 1; nathan@0: DisplayMode = 3; nathan@0: BackgrMode = 1; nathan@0: MenuMode = 0; nathan@0: TargetLevel = DEFAULT_TARGET_LEVEL; nathan@0: LimiterLevel = DEFAULT_LIMITER_LEVEL; nathan@0: Only48kHz = 0; nathan@0: UseProxy = 0; nathan@0: strcpy(ProxyHost,"localhost"); nathan@0: ProxyPort = 8080; nathan@0: UseCddb = 1; nathan@0: strcpy(CddbHost,"freedb.freedb.org"); nathan@0: CddbPort = 888; nathan@0: AudioOutMode = 0; nathan@0: AbortAtEOL = 1; nathan@0: ReplayDisplay = 0; nathan@0: HideMainMenu = 0; nathan@0: KeepSelect = 0; nathan@0: TitleArtistOrder = 0; nathan@30: EnqueueSongs = 1; nathan@0: }