]> git.sesse.net Git - vlc/blobdiff - include/config.h
Nettoyage.
[vlc] / include / config.h
index f9fb7deff2f1212cacd9dd19d539d78872de834f..57008cdb918f8945d4044bddf82823aa93edf5b0 100644 (file)
@@ -45,7 +45,7 @@
 /* Program version and copyright message */
 #define PROGRAM_VERSION                        "1.0-dev"
 #define COPYRIGHT_MESSAGE              "VideoLAN Client v" PROGRAM_VERSION " (" __DATE__ ") - " \
-                                        PROGRAM_OPTIONS " - (c)1999 VideoLAN"
+                                        PROGRAM_OPTIONS " - (c)1999-2000 VideoLAN"
 
 /*******************************************************************************
  * General compilation options
 /* Base delay in micro second for interface sleeps */
 #define INTF_IDLE_SLEEP                 100000
 
+/* Step for changing gamma, and minimum and maximum values */
+#define INTF_GAMMA_STEP                 .1
+#define INTF_GAMMA_MAX                  3
+
+/* Factor for changing aspect ratio, and minimum and maximum values */
+#define INTF_RATIO_FACTOR               1.1
+#define INTF_RATIO_MIN                  .1
+#define INTF_RATIO_MAX                  10
+
 /*
  * X11 settings
  */
 #define VOUT_GRAYSCALE_VAR              "vlc_grayscale"
 #define VOUT_GRAYSCALE_DEFAULT          0
 
+/* Default gamma */
+#define VOUT_GAMMA                      0.
+
 /*
  * Time settings
  */
 /* Number of macroblock buffers available. It should be always greater than
  * twice the number of macroblocks in a picture. VFIFO_SIZE + 1 should also
  * be a power of two. */
-#define VFIFO_SIZE                      4095
+#define VFIFO_SIZE                      8191
 
 /* Maximum number of macroblocks in a picture. */
-#define MAX_MB                          32767
+#define MAX_MB                          2048
 
 /*******************************************************************************
  * Video decoder configuration