diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2012-05-08 14:17:06 +0100 |
---|---|---|
committer | Luis de Bethencourt <luis@debethencourt.com> | 2012-05-09 13:18:52 +0100 |
commit | b2e3e417a5f0b1a4430ce0502c65401ec0759be8 (patch) | |
tree | 66e62b4716b5abaecd96d69ba2c3f8d0f1292ff5 | |
parent | 171321c5ebef7f79f41a802aacf311c2a0338cb0 (diff) | |
download | gstreamer-plugins-bad-b2e3e417a5f0b1a4430ce0502c65401ec0759be8.tar.gz |
controller: port to new controller location and api
-rw-r--r-- | gst/gaudieffects/gstburn.c | 3 | ||||
-rw-r--r-- | gst/gaudieffects/gstchromium.c | 1 | ||||
-rw-r--r-- | gst/gaudieffects/gstdilate.c | 1 | ||||
-rw-r--r-- | gst/gaudieffects/gstdodge.c | 1 | ||||
-rw-r--r-- | gst/gaudieffects/gstexclusion.c | 1 | ||||
-rw-r--r-- | gst/gaudieffects/gstgaussblur.c | 1 | ||||
-rw-r--r-- | gst/gaudieffects/gstsolarize.c | 1 |
7 files changed, 1 insertions, 8 deletions
diff --git a/gst/gaudieffects/gstburn.c b/gst/gaudieffects/gstburn.c index 2aedfffb3..bee6c1c68 100644 --- a/gst/gaudieffects/gstburn.c +++ b/gst/gaudieffects/gstburn.c @@ -1,7 +1,7 @@ /* * GStreamer * Copyright (C) 2010 Luis de Bethencourt <luis@debethencourt.com> - * + * * Burn - curve adjustment video effect. * Based on Pete Warden's FreeFrame plugin with the same name. * @@ -68,7 +68,6 @@ #include "gstburn.h" #include <gst/video/video.h> -#include <gst/controller/gstcontroller.h> GST_DEBUG_CATEGORY_STATIC (gst_burn_debug); #define GST_CAT_DEFAULT gst_burn_debug diff --git a/gst/gaudieffects/gstchromium.c b/gst/gaudieffects/gstchromium.c index ea8e01a9d..b8870fc4c 100644 --- a/gst/gaudieffects/gstchromium.c +++ b/gst/gaudieffects/gstchromium.c @@ -63,7 +63,6 @@ #include <math.h> #include <gst/gst.h> -#include <gst/controller/gstcontroller.h> #include "gstplugin.h" #include "gstchromium.h" diff --git a/gst/gaudieffects/gstdilate.c b/gst/gaudieffects/gstdilate.c index 321709979..527cdc2b7 100644 --- a/gst/gaudieffects/gstdilate.c +++ b/gst/gaudieffects/gstdilate.c @@ -68,7 +68,6 @@ #include "gstdilate.h" #include <gst/video/video.h> -#include <gst/controller/gstcontroller.h> GST_DEBUG_CATEGORY_STATIC (gst_dilate_debug); #define GST_CAT_DEFAULT gst_dilate_debug diff --git a/gst/gaudieffects/gstdodge.c b/gst/gaudieffects/gstdodge.c index ff61aa7e5..5e9231cbd 100644 --- a/gst/gaudieffects/gstdodge.c +++ b/gst/gaudieffects/gstdodge.c @@ -68,7 +68,6 @@ #include "gstdodge.h" #include <gst/video/video.h> -#include <gst/controller/gstcontroller.h> GST_DEBUG_CATEGORY_STATIC (gst_dodge_debug); #define GST_CAT_DEFAULT gst_dodge_debug diff --git a/gst/gaudieffects/gstexclusion.c b/gst/gaudieffects/gstexclusion.c index bfdebdfe2..9ed04a9c3 100644 --- a/gst/gaudieffects/gstexclusion.c +++ b/gst/gaudieffects/gstexclusion.c @@ -68,7 +68,6 @@ #include "gstexclusion.h" #include <gst/video/video.h> -#include <gst/controller/gstcontroller.h> GST_DEBUG_CATEGORY_STATIC (gst_exclusion_debug); #define GST_CAT_DEFAULT gst_exclusion_debug diff --git a/gst/gaudieffects/gstgaussblur.c b/gst/gaudieffects/gstgaussblur.c index 861bbf9dd..ef6774211 100644 --- a/gst/gaudieffects/gstgaussblur.c +++ b/gst/gaudieffects/gstgaussblur.c @@ -4,7 +4,6 @@ #include <math.h> #include <gst/gst.h> -#include <gst/controller/gstcontroller.h> #include "gstplugin.h" #include "gstgaussblur.h" diff --git a/gst/gaudieffects/gstsolarize.c b/gst/gaudieffects/gstsolarize.c index e5023d22b..a6fa49191 100644 --- a/gst/gaudieffects/gstsolarize.c +++ b/gst/gaudieffects/gstsolarize.c @@ -68,7 +68,6 @@ #include "gstsolarize.h" #include <gst/video/video.h> -#include <gst/controller/gstcontroller.h> GST_DEBUG_CATEGORY_STATIC (gst_solarize_debug); #define GST_CAT_DEFAULT gst_solarize_debug |