]> git.sesse.net Git - vlc/blobdiff - include/vlc_config.h
Shrink channel reordering tables to 9-10 bytes (from 36-40 bytes)
[vlc] / include / vlc_config.h
index b411776e2588183d6e7e03d63e0b9c00bacbb188..2a3629dad17cc0108599d5b3982f29a0c352ebf2 100644 (file)
@@ -2,24 +2,24 @@
  * vlc_config.h: limits and configuration
  * Defines all compilation-time configuration constants and size limits
  *****************************************************************************
- * Copyright (C) 1999-2003 the VideoLAN team
+ * Copyright (C) 1999-2003 VLC authors and VideoLAN
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *          Samuel Hocevar <sam@via.ecp.fr>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /**
 /* Base delay in micro second for interface sleeps */
 #define INTF_IDLE_SLEEP                 (CLOCK_FREQ/20)
 
-/* Step for changing gamma, and minimum and maximum values */
-#define INTF_GAMMA_STEP                 .1
-#define INTF_GAMMA_LIMIT                3
-
 /*****************************************************************************
  * Input thread configuration
  *****************************************************************************/
  * Messages and console interfaces configuration
  *****************************************************************************/
 
-/* Maximal size of a message to be stored in the mesage queue,
- * it is needed when vasprintf is not available */
-#define INTF_MAX_MSG_SIZE               512
-
-/* Maximal size of the message queue - in case of overflow, all messages in the
- * queue are printed, but not sent to the threads */
-#define VLC_MSG_QSIZE                   256
-
 /* Maximal depth of the object tree output by vlc_dumpstructure */
 #define MAX_DUMPSTRUCTURE_DEPTH         100