summaryrefslogtreecommitdiff
path: root/gst/videofilters/gstvideofiltersbad.c
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2013-05-10 17:30:48 -0700
committerDavid Schleef <ds@schleef.org>2013-05-10 17:40:17 -0700
commite79b977fdb2071298af011fd4b9debebc4220a34 (patch)
treed6200f533d11543f9877f6f9f4e6ad677674fa6a /gst/videofilters/gstvideofiltersbad.c
parent4b7f0d99f02731793116e35c3b37ff722c949848 (diff)
downloadgstreamer-plugins-bad-e79b977fdb2071298af011fd4b9debebc4220a34.tar.gz
videofilters: Add videodiff element
Diffstat (limited to 'gst/videofilters/gstvideofiltersbad.c')
-rw-r--r--gst/videofilters/gstvideofiltersbad.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/videofilters/gstvideofiltersbad.c b/gst/videofilters/gstvideofiltersbad.c
index b65b4d5d1..1f361e498 100644
--- a/gst/videofilters/gstvideofiltersbad.c
+++ b/gst/videofilters/gstvideofiltersbad.c
@@ -25,6 +25,7 @@
#include <gst/base/gstbasetransform.h>
#include "gstscenechange.h"
#include "gstzebrastripe.h"
+#include "gstvideodiff.h"
static gboolean
@@ -35,6 +36,8 @@ plugin_init (GstPlugin * plugin)
gst_scene_change_get_type ());
gst_element_register (plugin, "zebrastripe", GST_RANK_NONE,
gst_zebra_stripe_get_type ());
+ return gst_element_register (plugin, "videodiff", GST_RANK_NONE,
+ GST_TYPE_VIDEO_DIFF);
return TRUE;
}