From ed4ec2d29360c7657ecc64d1f0a2b74bbd9068cc Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Fri, 12 Apr 2002 09:24:37 +0000 Subject: [PATCH] various include fixes, adding a doc on why as well Original commit message from CVS: various include fixes, adding a doc on why as well --- libs/gst/bytestream/bstest.c | 2 +- libs/gst/bytestream/bytestream.c | 2 +- libs/gst/control/dparam.c | 4 ++-- libs/gst/control/dparam.h | 2 +- libs/gst/control/dparam_smooth.c | 4 ++-- libs/gst/control/dparam_smooth.h | 2 +- libs/gst/control/dplinearinterp.c | 2 +- libs/gst/control/dplinearinterp.h | 2 +- libs/gst/getbits/getbits.c | 2 +- libs/gst/getbits/gstgetbits_generic.c | 2 +- libs/gst/putbits/putbits.c | 2 +- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/libs/gst/bytestream/bstest.c b/libs/gst/bytestream/bstest.c index 6f2acf8dca..559081b6d4 100644 --- a/libs/gst/bytestream/bstest.c +++ b/libs/gst/bytestream/bstest.c @@ -21,7 +21,7 @@ */ #include -#include +#include "bytestream.h" #define GST_TYPE_IDENTITY \ (gst_identity_get_type()) diff --git a/libs/gst/bytestream/bytestream.c b/libs/gst/bytestream/bytestream.c index 370d220a1a..eb1887cacf 100644 --- a/libs/gst/bytestream/bytestream.c +++ b/libs/gst/bytestream/bytestream.c @@ -24,7 +24,7 @@ #include #include -#include +#include "bytestream.h" /*#define BS_DEBUG */ diff --git a/libs/gst/control/dparam.c b/libs/gst/control/dparam.c index 38a5c6a3a1..24da2473dd 100644 --- a/libs/gst/control/dparam.c +++ b/libs/gst/control/dparam.c @@ -23,8 +23,8 @@ #include #include -#include -#include +#include "dparam.h" +#include "dparammanager.h" static void gst_dparam_class_init (GstDParamClass *klass); static void gst_dparam_init (GstDParam *dparam); diff --git a/libs/gst/control/dparam.h b/libs/gst/control/dparam.h index f3ada56e61..bc0f9b87e6 100644 --- a/libs/gst/control/dparam.h +++ b/libs/gst/control/dparam.h @@ -24,7 +24,7 @@ #include #include -#include +#include "dparamcommon.h" #ifdef __cplusplus extern "C" { diff --git a/libs/gst/control/dparam_smooth.c b/libs/gst/control/dparam_smooth.c index 77485c1ff7..c975a6f9d3 100644 --- a/libs/gst/control/dparam_smooth.c +++ b/libs/gst/control/dparam_smooth.c @@ -23,8 +23,8 @@ #include #include -#include -#include +#include "dparam_smooth.h" +#include "dparammanager.h" static void gst_dpsmooth_class_init (GstDParamSmoothClass *klass); static void gst_dpsmooth_init (GstDParamSmooth *dparam); diff --git a/libs/gst/control/dparam_smooth.h b/libs/gst/control/dparam_smooth.h index 7deb063ddf..f9e8539065 100644 --- a/libs/gst/control/dparam_smooth.h +++ b/libs/gst/control/dparam_smooth.h @@ -22,7 +22,7 @@ #ifndef __GST_DPSMOOTH_H__ #define __GST_DPSMOOTH_H__ -#include +#include "dparam.h" #ifdef __cplusplus extern "C" { diff --git a/libs/gst/control/dplinearinterp.c b/libs/gst/control/dplinearinterp.c index d595bebeed..53bdd7c9be 100644 --- a/libs/gst/control/dplinearinterp.c +++ b/libs/gst/control/dplinearinterp.c @@ -19,7 +19,7 @@ * Boston, MA 02111-1307, USA. */ -#include +#include "dplinearinterp.h" static void gst_dp_linint_class_init (GstDParamClass *klass); static void gst_dp_linint_base_class_init (GstDParamClass *klass); diff --git a/libs/gst/control/dplinearinterp.h b/libs/gst/control/dplinearinterp.h index db50f826d8..ae6d2f9664 100644 --- a/libs/gst/control/dplinearinterp.h +++ b/libs/gst/control/dplinearinterp.h @@ -24,7 +24,7 @@ #define __GST_DP_LININT_H__ #include -#include +#include "dparam.h" #ifdef __cplusplus extern "C" { diff --git a/libs/gst/getbits/getbits.c b/libs/gst/getbits/getbits.c index 7ac83a5a9d..b5644be3bb 100644 --- a/libs/gst/getbits/getbits.c +++ b/libs/gst/getbits/getbits.c @@ -1,6 +1,6 @@ #include "config.h" -#include +#include "getbits.h" /* Defined in gstgetbits_i386.s */ extern unsigned long _gst_get1bit_i386(gst_getbits_t *gb, unsigned long bits); diff --git a/libs/gst/getbits/gstgetbits_generic.c b/libs/gst/getbits/gstgetbits_generic.c index a38bea03a5..c630311341 100644 --- a/libs/gst/getbits/gstgetbits_generic.c +++ b/libs/gst/getbits/gstgetbits_generic.c @@ -1,4 +1,4 @@ -#include +#include "getbits.h" unsigned long _gst_getbits_int_cb(gst_getbits_t *gb, unsigned long bits); unsigned long _gst_get1bit_int(gst_getbits_t *gb, unsigned long bits); diff --git a/libs/gst/putbits/putbits.c b/libs/gst/putbits/putbits.c index 5ecb0a1fe9..572f19f4a6 100644 --- a/libs/gst/putbits/putbits.c +++ b/libs/gst/putbits/putbits.c @@ -29,7 +29,7 @@ #include #include -#include +#include "putbits.h" #include #include