summaryrefslogtreecommitdiff
path: root/gst/inter/gstinter.c
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2011-08-09 09:19:10 -0700
committerDavid Schleef <ds@schleef.org>2012-01-22 15:49:44 -0800
commitf02ee5b4036c63971c980034a98f0134f7e8dda5 (patch)
treeb301a43145882f22be11875800602722a187646e /gst/inter/gstinter.c
parent6786f8c7bfafad5a95a7b257a233dae2fdcfc913 (diff)
downloadgstreamer-plugins-bad-f02ee5b4036c63971c980034a98f0134f7e8dda5.tar.gz
inter: Add subtitle inter elements
Diffstat (limited to 'gst/inter/gstinter.c')
-rw-r--r--gst/inter/gstinter.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/gst/inter/gstinter.c b/gst/inter/gstinter.c
index 60c5bd6a7..bae82bc0f 100644
--- a/gst/inter/gstinter.c
+++ b/gst/inter/gstinter.c
@@ -1,5 +1,5 @@
/* GStreamer
- * Copyright (C) 2011 David A. Schleef <ds@schleef.org>
+ * Copyright (C) 2011 David Schleef <ds@entropywave.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -23,6 +23,8 @@
#include "gstinteraudiosrc.h"
#include "gstinteraudiosink.h"
+#include "gstintersubsrc.h"
+#include "gstintersubsink.h"
#include "gstintervideosrc.h"
#include "gstintervideosink.h"
#include "gstintersurface.h"
@@ -34,6 +36,10 @@ plugin_init (GstPlugin * plugin)
GST_TYPE_INTER_AUDIO_SRC);
gst_element_register (plugin, "interaudiosink", GST_RANK_NONE,
GST_TYPE_INTER_AUDIO_SINK);
+ gst_element_register (plugin, "intersubsrc", GST_RANK_NONE,
+ GST_TYPE_INTER_SUB_SRC);
+ gst_element_register (plugin, "intersubsink", GST_RANK_NONE,
+ GST_TYPE_INTER_SUB_SINK);
gst_element_register (plugin, "intervideosrc", GST_RANK_NONE,
GST_TYPE_INTER_VIDEO_SRC);
gst_element_register (plugin, "intervideosink", GST_RANK_NONE,