]> git.sesse.net Git - vlc/commitdiff
fixed compilation on debian etch.
authorYohann Martineau <yohann.martineau@gmail.com>
Mon, 23 Jun 2008 22:19:07 +0000 (00:19 +0200)
committerAntoine Cellerier <dionoea@videolan.org>
Tue, 24 Jun 2008 07:43:12 +0000 (09:43 +0200)
config.h is now included first, before any other header.

Signed-off-by: Antoine Cellerier <dionoea@videolan.org>
30 files changed:
modules/access_output/file.c
modules/audio_filter/channel_mixer/headphone.c
modules/audio_filter/channel_mixer/mono.c
modules/audio_filter/equalizer.c
modules/audio_filter/normvol.c
modules/audio_filter/param_eq.c
modules/audio_output/file.c
modules/audio_output/oss.c
modules/control/motion.c
modules/demux/demuxdump.c
modules/demux/mp4/drms.c
modules/mux/mpeg/pes.c
modules/stream_out/mosaic_bridge.c
modules/video_chroma/i420_rgb.c
modules/video_chroma/i420_ymga.c
modules/video_filter/adjust.c
modules/video_filter/colorthres.c
modules/video_filter/deinterlace.c
modules/video_filter/gradient.c
modules/video_filter/psychedelic.c
modules/video_filter/ripple.c
modules/video_filter/rotate.c
modules/video_filter/wave.c
modules/video_output/fb.c
modules/video_output/opengl.c
modules/video_output/x11/glx.c
src/misc/filter_chain.c
src/misc/image.c
src/misc/md5.c
src/text/iso_lang.c

index 639954889bc8ac6c17b56ca89bfd9634123319d3..9abce9b8848255546f0d77b7674f7640bf19aa3e 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <time.h>
 #include <fcntl.h>
 #include <errno.h>
 
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_sout.h>
index 4f903e8fbb1ba0af986853d294d2d01f354222a4..b57876a5c4f9e8a4b920db9e1a2f009af7a4a26e 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <math.h>                                        /* sqrt */
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <math.h>                                        /* sqrt */
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_aout.h>
index a6633249bee976d0e808d40edc33df988cae7597..5948f052239454e287f1c3272827d5936d915fa0 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <math.h>                                        /* sqrt */
 
 #ifdef HAVE_STDINT_H
 #   include <unistd.h>
 #endif
 
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_es.h>
index 9c9b08d5defb91b5f1ce1bcd6794bd1120d69b77..999796a715e5e079b98d3714b7ddb78b9e40a18f 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <math.h>
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <math.h>
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 
index 97ed3c78ac6fc9d16ebfee1297f284a4e233d8e0..0c57c0b97acc844c9ebfd8b3937f8078bbef185b 100644 (file)
  * Preamble
  *****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <errno.h>                                                 /* ENOMEM */
 #include <ctype.h>
 #include <signal.h>
 #include <math.h>
 
 
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 
index acd04de903a85e81d28e3444cd0e7f8d46138810..53c000f0e739162ef0f43e7db13c07b2bdcc4729 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <math.h>
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <math.h>
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_aout.h>
index c8af6f5f9085db382f3fde07644be8847dc051b2..07da0fe1384492ef5aeeea22a6e2eff31fb3b626 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <errno.h>
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <errno.h>
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_aout.h>
index db1e28e63ec12d0672ee0cfd0f40d85dc1ea35c8..fcd3ca0ea208abc5ce2a38db892c544fb188b988 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <errno.h>                                                 /* ENOMEM */
-#include <fcntl.h>                                       /* open(), O_WRONLY */
-#include <sys/ioctl.h>                                            /* ioctl() */
-#include <unistd.h>                                      /* write(), close() */
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <errno.h>                                                 /* ENOMEM */
+#include <fcntl.h>                                       /* open(), O_WRONLY */
+#include <sys/ioctl.h>                                            /* ioctl() */
+#include <unistd.h>                                      /* write(), close() */
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 
index ccecf4d0829637af6728c253c20afbb0d3e7e183..59d6ba2c516f5ffcdcee03407d25e0ae1f2613f8 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <math.h>
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <math.h>
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index 93d695dd18dfa63ba965ba3b7884fa5c9ddf3cc2..5f2a5f01b14711d9a0a965453a04a32e53529527 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <errno.h>
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <errno.h>
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_demux.h>
index ecc6fa19bdebb7452a06e0355085aea56090b906..520c6bb8dced85930dc0a5ea7eb2da52bf35c953 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-
-#ifdef WIN32
-#   include <io.h>
-#else
-#   include <stdio.h>
-#endif
-
 #ifdef __LIBVLC__
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #   include "drmsvl.h"
 #endif
 
+#ifdef WIN32
+#   include <io.h>
+#else
+#   include <stdio.h>
+#endif
+
 #ifdef HAVE_ERRNO_H
 #   include <errno.h>
 #endif
index 9f77b6a52b4ebe0000449349a5d54be03516bc23..c4b6ca5ce8c4eb1c29a61debf4f4abb8e9b8d937 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <errno.h>
-#include <fcntl.h>
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <errno.h>
+#include <fcntl.h>
+
 #include <vlc_common.h>
 #include <vlc_sout.h>
 #include <vlc_block.h>
index 147d4d0881ae43cb61edd86c798e691aa15c00d1..12f0309cef6dddb140b0530ba8fbb8f5a0ea0a11 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <errno.h>                                                 /* ENOMEM */
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <errno.h>                                                 /* ENOMEM */
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_sout.h>
index e84d24803c9e6146dbb5106fcd0db6e54f84dc82..6c608bb2bb9ef7b05d045c3e7fdae17f9e1dd99c 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <math.h>                                            /* exp(), pow() */
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <math.h>                                            /* exp(), pow() */
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_filter.h>
index 63d09a8cf1a7e53ee61dbe67a055cd87349a65d4..4efc6a6420f3f3ca676b26b940bca9ccc3baacfd 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <errno.h>                                                 /* ENOMEM */
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <errno.h>                                                 /* ENOMEM */
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_filter.h>
index 9d5ff526e6f8113d7b416b4ca810072d914838ad..a3588e82cb0806bceda3b72092f6dd314561dd75 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <errno.h>
-#include <math.h>
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <errno.h>
+#include <math.h>
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_sout.h>
index 73b81d301c0562cac2613c3e717a7bf0dea10953..31f90f07b34ebb29dfcde7ca7a22c7f1941b7254 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <errno.h>
-#include <math.h>
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <errno.h>
+#include <math.h>
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_sout.h>
index 380d0f01efdf75453e644ad30f51bb48dadd4833..256462d24a9a1f55fb836dfa387dadba448ad093 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <errno.h>
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <errno.h>
+
 #ifdef HAVE_ALTIVEC_H
 #   include <altivec.h>
 #endif
index e060b3f73c044025edd68a07df8ffa01433916c7..ade94b9252ab828540df080ec329dc8c3ecdf33b 100644 (file)
  * Preamble
  *****************************************************************************/
 
-#include <math.h>                                            /* sin(), cos() */
-
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <math.h>                                            /* sin(), cos() */
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_sout.h>
index 8be202a2182fc5a40c61cb517fde5d4f786f0c74..271533de8de8594ea6e053ed5bef2ce6fe5aa5e3 100644 (file)
  * Preamble
  *****************************************************************************/
 
-#include <math.h>                                            /* sin(), cos() */
-
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <math.h>                                            /* sin(), cos() */
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 
index 5dcbcb0ba005b303572f0bf5fe33cd0e7259e1ce..00108565401be8a5d1df385c0501beec77a629c0 100644 (file)
  * Preamble
  *****************************************************************************/
 
-#include <math.h>                                            /* sin(), cos() */
-
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <math.h>                                            /* sin(), cos() */
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_vout.h>
index 38f3c062df1ca59e1d15893a4b19fcc561f88f94..e185a33ce4b5909ff641f8370cc998184fa90801 100644 (file)
  * Preamble
  *****************************************************************************/
 
-#include <math.h>                                            /* sin(), cos() */
-
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <math.h>                                            /* sin(), cos() */
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_vout.h>
index 3a9c0a54393c071d4899dd13d4b0c669f1c79088..36f740c2c8f4c184984c34cec1f77e9dec28dac4 100644 (file)
  * Preamble
  *****************************************************************************/
 
-#include <math.h>                                            /* sin(), cos() */
-
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <math.h>                                            /* sin(), cos() */
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_vout.h>
index 03d94b3c6e2d824ec000a32b122a3fdb4d469bd1..e3a8fb967e966acff3455b065fb41a18bc5cd9e6 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <errno.h>                                                 /* ENOMEM */
 #include <signal.h>                                      /* SIGUSR1, SIGUSR2 */
 #include <fcntl.h>                                                 /* open() */
 #include <linux/vt.h>                                                /* VT_* */
 #include <linux/kd.h>                                                 /* KD* */
 
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_vout.h>
index deab0f79fca2b7bc727b748f8fe1a49c1a6e7e77..d9eaac159b8ab426b5187f4fb19e272b5db746f2 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <errno.h>                                                 /* ENOMEM */
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <errno.h>                                                 /* ENOMEM */
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_vout.h>
index 9339e6ff0e2160cbef2fe841894b61ce4451926a..fe5d122d3304e95f5c1c815e3edce668fd3c7055 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <errno.h>                                                 /* ENOMEM */
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <errno.h>                                                 /* ENOMEM */
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index 7c204536293b57897118bb5b04bf027ce4520da3..e59e0b60983663e3e06b65b5639d261abb617c30 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <vlc_filter.h>
 #include <vlc_arrays.h>
 
index aa8a30152a8db0f010c9cf25f1c6e73e73aa1ba8..5a1a80fce8cc5adefb2fadedbc3e2ca3ded72d35 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <ctype.h>
-#include <errno.h>
+
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <ctype.h>
+#include <errno.h>
+
 #include <vlc_common.h>
 #include <vlc_codec.h>
 #include <vlc_filter.h>
index cb57f7b6522df0960a924193cfca438c03a92521..f4f93fff818bfdfb1e7c1c35d86fb6d1fa735494 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#include <string.h>
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <string.h>
+
 #include <vlc_common.h>
 #include <vlc_md5.h>
 
index 5e7a6c6a1543180e4c2691d24f79d2be67193c5e..eaae385ea01aaba081134776b9f2e45e50135f30 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <stdio.h>
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
+#include <stdio.h>
+
 #include <vlc_common.h>
 
 #include "vlc_iso_lang.h"