00001 /* 00002 * Copyright (C) 2001 Dan Dennedy <dan@dennedy.org> 00003 * 00004 * This program is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published by 00006 * the Free Software Foundation; either version 2 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program; if not, write to the Free Software Foundation, 00016 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00017 */ 00018 00019 #ifndef PREFERENCES_H 00020 #define PREFERENCES_H 1 00021 00022 #include <glib.h> 00023 00024 enum { AVI, PLAYLIST, RAW_DV, QT, UNKNOWN_FORMAT }; 00025 enum { PAL_FORMAT, NTSC_FORMAT, AVI_DV1_FORMAT, AVI_DV2_FORMAT, QT_FORMAT, RAW_FORMAT, TEST_FORMAT, UNDEFINED }; 00026 enum { DISPLAY_XX, DISPLAY_GDKRGB, DISPLAY_GDKRGB32, DISPLAY_XV, DISPLAY_SDL }; 00027 00028 enum { NORM_UNSPECIFIED = 0, NORM_PAL = 1, NORM_NTSC = 2 }; 00029 enum { AUDIO_32KHZ = 0, AUDIO_44KHZ = 1, AUDIO_48KHZ = 2 }; 00030 enum { ASPECT_43 = 0, ASPECT_169 = 1 }; 00031 00032 #endif
1.4.7