Remove all config.h includes from header files, add it to each source file and remove...
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>
Fri, 7 Nov 2003 12:47:01 +0000 (12:47 +0000)
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>
Fri, 7 Nov 2003 12:47:01 +0000 (12:47 +0000)
Original commit message from CVS:
Remove all config.h includes from header files, add it to each source file and remove duplicate config.h includes from several source files

56 files changed:
ext/aalib/gstaasink.c
ext/flac/gstflac.c
ext/flac/gstflacdec.h
ext/flac/gstflacenc.h
ext/ladspa/gstladspa.h
ext/ladspa/load.c
ext/ladspa/search.c
ext/mikmod/drv_gst.c
ext/mikmod/gstmikmod.h
ext/mikmod/mikmod_reader.c
ext/mikmod/mikmod_types.c
ext/pango/gsttimeoverlay.c
ext/pango/gsttimeoverlay.h
ext/raw1394/gstdv1394src.h
ext/speex/gstspeexdec.h
ext/speex/gstspeexenc.h
gst/auparse/gstauparse.h
gst/avi/gstavidemux.h
gst/avi/gstavimux.c
gst/cutter/gstcutter.h
gst/flx/flx_color.c
gst/goom/filters.c
gst/goom/graphic.c
gst/goom/gstgoom.c
gst/goom/lines.c
gst/law/alaw-decode.h
gst/law/alaw-encode.h
gst/law/mulaw-conversion.c
gst/law/mulaw-decode.h
gst/law/mulaw-encode.h
gst/level/demo.c
gst/level/gstlevel.h
gst/level/plot.c
gst/median/gstmedian.h
gst/monoscope/convolve.c
gst/monoscope/gstmonoscope.c
gst/monoscope/monoscope.c
gst/smpte/barboxwipes.c
gst/smpte/gstmask.c
gst/smpte/paint.c
gst/udp/gstudp.c
gst/udp/gstudpsink.h
gst/udp/gstudpsrc.h
gst/videofilter/gstvideobalance.c
gst/videofilter/gstvideobalance.h
gst/videofilter/gstvideofilter.c
gst/videofilter/gstvideofilter.h
gst/videofilter/gstvideoflip.h
gst/videofilter/gstvideotemplate.c
gst/videofilter/gstvideotemplate.h
gst/videoflip/gstvideoflip.h
gst/videoflip/videoflip.c
gst/wavenc/gstwavenc.h
gst/wavparse/gstwavparse.h
sys/oss/gstossgst.h
sys/v4l2/v4l2src_calls.c

index 7aa8fa512ef851f1dd834482ffb6eb56a6ea64f4..4a7d8a4014b44a647bdf8a4e1ca4360dc0d1cc3d 100644 (file)
@@ -20,7 +20,6 @@
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
-#include <config.h>
 
 #include <string.h>
 #include <sys/time.h>
index eeed9c08061952d7dc9af4d506fc3b2952d5562c..6b399eff366702a1fd2de28a3fd9e9b608aa7471 100644 (file)
@@ -17,6 +17,9 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include "gstflacenc.h"
 #include "gstflacdec.h"
index 67742ac6dd12500567031ca0fb378b250e5bfd9f..b5a1e17771012384e43702d2f1a2a0919983b229 100644 (file)
@@ -22,7 +22,6 @@
 #define __FLACDEC_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 #include <gst/bytestream/bytestream.h>
 
index 9c724b9c72b6a8a9a6cc52b6ee1f0d232fdb75df..ac3254b0618f72123b345651d22b06a603ed680f 100644 (file)
@@ -22,7 +22,6 @@
 #define __FLACENC_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 
 #include <FLAC/all.h>
index 89a039e9c4f2eb694c4573263a8e3a8d57a79cc9..b588ffa4eca856b4cd2d8918b5bb4c3c36f27cf2 100644 (file)
@@ -24,7 +24,6 @@
 #define __GST_LADSPA_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 #include <gst/bytestream/bytestream.h>
 
index c912106fa92f2874ece96c01b80107c4c0cbf949..bf52eb1fdbc9f4337a27ffee35b71497b23e614b 100644 (file)
@@ -5,6 +5,10 @@
 
 /*****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <dlfcn.h>
 #include <stdio.h>
 #include <stdlib.h>
index aac4381b604c29dcfe775a854a9a1bf75bafa713..08b28d121fb2e98a7fdd956cd6e64747d8d7b97f 100644 (file)
@@ -5,6 +5,10 @@
 
 /*****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <dirent.h>
 #include <dlfcn.h>
 #include <stdio.h>
index 122de610e1ae6aef3e95f625ca8027aec408af4a..83d475ba790d50fc62d314a4af99495b05522442 100644 (file)
@@ -1,3 +1,7 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <stdlib.h>
 
 #include "gstmikmod.h"
index 686c484a046abf551bcd07eeaa750dc5d79b12f1..9d5db8a52c08d6c7a1fd88ecc10660ac92b7f549 100644 (file)
@@ -21,7 +21,6 @@
 #ifndef __GST_MIKMOD_H__
 #define __GST_MIKMOD_H__
 
-#include <config.h>
 #include <mikmod.h>
 #include <gst/gst.h>
 
index b850f502407ca5df65cda444ab0f6cf85a48f427..38b8402c0243b3358140c48d3dc3514bd7c0093b 100644 (file)
@@ -1,3 +1,7 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <unistd.h>
 #include <string.h>
 
index 8c4045d8bfb5142bfafcdf7983776a6498871fbd..f583d0823bfd06420dfc5d944dc134f13d4d62c4 100644 (file)
  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  * Boston, MA 02111-1307, USA.
  */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <gst/gst.h>
 #include "mikmod_types.h"
 #include <string.h>            /* memcmp */
index dba7561242ea29651a82f46848f74aaeea28de10..6e1b7484d1bc5b46d98bb83e454ffc9041c521ac 100644 (file)
@@ -27,6 +27,9 @@
  * Copyright (C) 2001 Sun Microsystems
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 /*#define DEBUG_ENABLED */
 #include <gsttimeoverlay.h>
index bc3371536840e8331edd804f123253c8b8931c5a..505f8f049d61370cbbbd0749887fd15ddaf05b20 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_TIMEOVERLAY_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 #include <pango/pango.h>
 
index 8de7c54defaa421a59041e450c11573c1bd35ff5..72d0e1925ed8e3fc04eb586c1f79fedbeb42580a 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_GST1394_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 #include <libraw1394/raw1394.h>
 
index c6fe3e969a4a67c4686cd588fb214f6ca9c0fd5d..c679dc188e0e19a1691cdb759f79200050a89b9f 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_SPEEXDEC_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 #include <speex.h>
 
index a7fa772ced51afc30940e7bb81e33eec3730caf8..4677f6a1d3835358736c9d987d0763c509c147cd 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_SPEEXENC_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 
 #include <speex.h>
index 7b529c20a16bf314692410913193aa32c4b587ae..d6e5a082f65db08c3b3f8a41bd4c60c9eda014c7 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_AUPARSE_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 
 
index d1c1d5829de894e0ec0d0f78a48a9f70e9e36dca..a9334283df39f096c08c0a58051b32ceaccc422c 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_AVI_DEMUX_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 #include <gst/bytestream/bytestream.h>
 #include <gst/riff/riff.h>
index 8c8a4eaf054515d6db769a60f25e78cf5147c6ff..ce4969320412b119ab1c13d12a3dda9c2261c9b2 100644 (file)
@@ -28,7 +28,6 @@
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
-#include <config.h>
 
 #include <stdlib.h>
 #include <string.h>
@@ -170,6 +169,7 @@ GST_PAD_TEMPLATE_FACTORY (audio_sink_factory,
   GST_CAPS_NEW (
     "avimux_sink_audio_mpeg",
     "audio/mpeg",
+      "mpegversion",      GST_PROPS_INT (1),
       "layer",           GST_PROPS_INT_RANGE (1, 3),
       "rate",             GST_PROPS_INT_RANGE (1000, 96000),
       "channels",         GST_PROPS_INT_RANGE (1, 2)
index 124cd0f4de9bd4ad984186c9fdaf389f51c69d11..84166636beeeb7864bf1b97678b55dae3e1a8050 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_CUTTER_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 /* #include <gst/meta/audioraw.h> */
 
index 8a84d2b0981511c916dba072df4b3838c72d7b3d..b64c90c441686c0e7cb4b0fcc3fec0a8bda14d27 100644 (file)
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <string.h>
 #include <gst/gst.h>
 
-
 #include "flx_color.h"
 
 FlxColorSpaceConverter *
index 8fdabc180b7bb0aa646c1deccaa713d74521f489..5d74b622666451d7472d3be83f9010d8e7431bfe 100644 (file)
 
 /*#define _DEBUG_PIXEL; */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include "filters.h"
 #include "graphic.h"
 #include "goom_tools.h"
index 4223c67bd73045f4c1025e3e7c463f27964f3717..cd24d49f297dd7344d018a440e52cd42f2d2be0d 100644 (file)
@@ -1,3 +1,7 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include "graphic.h"
 
 const Color BLACK = {0,0,0} ;
index a634633a5706319ba1a0fc0b590e5ce7bc04a870..bb048401114886be7dbce8340a2c8ffaedce026b 100644 (file)
@@ -20,7 +20,7 @@
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
-#include <config.h>
+
 #include <gst/gst.h>
 #include <gst/video/video.h>
 #include "goom_core.h"
index cadf9203331067145a0bd43289d976b75259c5bf..131fd002ed863ec3f59d2379cd256b8bb3dda8ef 100644 (file)
@@ -7,6 +7,10 @@
  *
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include "lines.h"
 #include <math.h>
 
index 88c39adbe8c7731879790168ae02cb336836b3e4..aa3a418c292065254f6cb0b6b12ec91b15ac5918 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_ALAWDECODE_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 /* #include <gst/meta/audioraw.h> */
 
index a0eac9f7417b66e1c3d6006e8816dafabb2f08ba..e08010364c31248294b6f799b03d5c659c7576fe 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_ALAWENCODE_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 /* #include <gst/meta/audioraw.h> */
 
index ad3fcce695873a652fb779e1bd2991d6a2983324..e921fb88a1acf454c39d52d7a4b1f65e42d52f7f 100644 (file)
  * Output: 8 bit ulaw sample
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <glib.h>
 
 #define ZEROTRAP    /* turn on the trap as per the MIL-STD */
index dc3045e244dea0331fa68f521f70fb54bc3705af..d34c8c068f5ba1c25ff5f548a25e6ee97775863f 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_MULAWDECODE_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 /* #include <gst/meta/audioraw.h> */
 
index b601888775a60da5a377615d1d46a0a8fcf2b96b..6d99759b50a7763ccc537630d76962c87655682b 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_MULAWENCODE_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 /* #include <gst/meta/audioraw.h> */
 
index 542e2d67113e4b4e6d51a958e850035e0443e7b6..98781b46774b4d75eeb3d8ff18451c0bf932850c 100644 (file)
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <gst/gst.h>
 #include <gtk/gtk.h>
 
index 3714327502250179d6e130b6700dbbc18004591d..59427c7dd32f96ed059d255da90af5a66465b194 100644 (file)
@@ -26,7 +26,6 @@
 #define __GST_LEVEL_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 
 #include "gstlevel-marshal.h"
index 4e770326be572efbdc1ca8c9df71e1267ccb2531..27ecd01ac99796ed79e97bb4cbeb02ee0bd1e4c9 100644 (file)
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <gst/gst.h>
 #include <gtk/gtk.h>
 
index 26a2258f442c37a73c83500bdc844f9541acd5fd..c22b80d1e9744162b7966e9a3941f276303c46d1 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_MEDIAN_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 
 
index aefffa3ed9515fca78ee0964c2a1890478e62323..b707621b9b3edae78542b071a265672abbff6661 100644 (file)
  * convolution", or "combine these three length 2^n outputs into one
  * 2^{n+1} output." */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <stdlib.h>
 #include "convolve.h"
 
index b4169c2fda49a2e5cfcf4ffe8507d2acdd3783ac..27e3039aa77ae8e2f3d790008ac6d05c09aa6647 100644 (file)
@@ -20,7 +20,7 @@
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
-#include <config.h>
+
 #include <gst/gst.h>
 #include <gst/video/video.h>
 #include "monoscope.h"
index 383581ea981727935a04591e40708ff490bbd234..eb0e728a78e49d0db3233c0ade89e1a3febd753d 100644 (file)
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include "monoscope.h"
 
 #include <string.h>
index e1cab9d071f65b3265dc00a292fd52e93de6b97b..a490f632a6055808d60fc09fa9f6d9173009f2f7 100644 (file)
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include "paint.h"
 #include "gstmask.h"
 
index 6430f420d2cccf5cced2e2017cdb6f0ec79b7ed4..13c79b34495df7d79d74d4b04493b7fe35e09df4 100644 (file)
@@ -17,6 +17,9 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include "gstmask.h"
 #include "paint.h"
index e912dfdf5849483d3d0007ff4427c78d6fb05b33..dae3c6f199246332fdba10fe8381b7113fa4ce7a 100644 (file)
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <math.h>
 #include <stdlib.h>
 #include "paint.h"
index f74b4b2dffe33a4149a6c96767bc8454d4cf6fe4..d4d90bc267bbfb79cb6091887c25e48db2239818 100644 (file)
@@ -17,6 +17,9 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include "gstudpsrc.h"
 #include "gstudpsink.h"
index fe3a9f873a88e2a64b3251571e6333423dca33e2..f49b4efe0dcbc2f5ca6415b3012b0c83cdbae450 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_UDPSINK_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 
 #ifdef __cplusplus
index 3311db7f1468840b1973eb8feb20c2280fe903dd..f16673df3bcb527ad1e39b42415acf62701e69ca 100644 (file)
@@ -21,7 +21,6 @@
 #ifndef __GST_UDPSRC_H__
 #define __GST_UDPSRC_H__
 
-#include <config.h>
 #include <gst/gst.h>
 
 #ifdef __cplusplus
index 41fd93f6bef185874789b1fabc32c7d0a244c44c..498e1e5a30e9f82b36271da5a9864fbe0be62028 100644 (file)
@@ -18,6 +18,9 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 /*#define DEBUG_ENABLED */
 #include <gstvideobalance.h>
index 75bc1125225c64e3b5398ea41bfa12f5abb817a9..5c8b3cf40298e92b2ed0015154b8497a389e085a 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_VIDEOBALANCE_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 
 #include "gstvideofilter.h"
index a7446887a92014cfeb7c58e43fb2b3670c7a26d9..3eb92f9a24fd41fe41443495dc673598ee440b7c 100644 (file)
@@ -18,6 +18,9 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 /*#define DEBUG_ENABLED */
 #include <gstvideofilter.h>
index 786783506e80df9d6b3da0d466a3bdacc19a0836..fa708328482ffbfa1bfdd9f4eabf5df07d657b36 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_VIDEOFILTER_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 
 
index 9260a8c8d74d1d5e6b12d5631621deee6ee4f7b9..b6aad296ae7c1713974cc329919f8c3c8a896580 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_VIDEOFLIP_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 
 #include "gstvideofilter.h"
index b37fa71e98fb33f2823b3cf0b7c7c47e68fe6210..cc06b942b2c55642cf4d3c7e9213f2aa0df8f5f2 100644 (file)
@@ -18,6 +18,9 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 /*#define DEBUG_ENABLED */
 #include <gstvideotemplate.h>
index 625ac1f30727fd7017994e82a3c79360683400ce..1a2c0a2dbbc609282b0b8707651e891c9b6a0486 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_VIDEOTEMPLATE_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 
 #include "gstvideofilter.h"
index e3463e5ed42c5b6866fa414093d0dc16e7ca131a..b14b0bd3a16390bf89ec054f3ecd99ce6d5459b0 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_VIDEOFLIP_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 
 
index b5ab9e07dd25ed0cb521cc56f95d8f1e44b1eb4a..f108ea622521ccb1351e297f799a0869eb305732 100644 (file)
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
+
 #include <gst/gst.h>
 #include <stdlib.h>
 #include <math.h>
 #include <videoflip.h>
 #include <string.h>
 
-#include "config.h"
 #include "gstvideoflip.h"
 
 static void gst_videoflip_planar411 (GstVideoflip *scale, unsigned char *dest, unsigned char *src);
index a379155a1c5afa6166499e6ab80712021dc3d3ee..6c3f56f080399f6e10dff413fb57f4d2e84c7299 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_WAVENC_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 
 G_BEGIN_DECLS
index 485c7554a6bf8a7eb52a096e7e26ce776eedf63c..d45cde51c80bf9804c90e64e3c7e857d9b9cd14f 100644 (file)
@@ -22,7 +22,6 @@
 #define __GST_WAVPARSE_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 #include <riff.h>
 #include <gst/bytestream/bytestream.h>
index df0a8e15bc6506d36334ddc2960f98681c38ac74..d521ea048b6d3113c1ce4e8090d9dfc9e4eae039 100644 (file)
@@ -25,7 +25,6 @@
 #define __GST_OSSGST_H__
 
 
-#include <config.h>
 #include <gst/gst.h>
 
 #include <sys/types.h>
index 521196cf4a7df6fb755585954910d074035aa77a..576b0c0bdf73e557f074f3ebe0718e21e850a0a3 100644 (file)
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <stdlib.h>
 #include <sys/types.h>
 #include <sys/stat.h>