diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-05-29 14:35:24 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-05-29 14:35:24 +0000 |
commit | 2c98438c994b119256ded007808f153a4a5b6f6a (patch) | |
tree | cec3d0eb0bc69a3aa6bdfd5cafab8fa81de69b93 /sys/dxr3/gstdxr3.c | |
parent | bbd6f9804b1465a921dfe9c141ae511f1ebcb3e4 (diff) | |
download | gst-plugins-bad-2c98438c994b119256ded007808f153a4a5b6f6a.tar.gz gst-plugins-bad-2c98438c994b119256ded007808f153a4a5b6f6a.tar.bz2 gst-plugins-bad-2c98438c994b119256ded007808f153a4a5b6f6a.zip |
I'm too lazy to comment this
Original commit message from CVS:
New dxr3 plugins from Martin Soto <soto@informatik.uni-kl.de>
Diffstat (limited to 'sys/dxr3/gstdxr3.c')
-rw-r--r-- | sys/dxr3/gstdxr3.c | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/sys/dxr3/gstdxr3.c b/sys/dxr3/gstdxr3.c deleted file mode 100644 index 4d2cc00f..00000000 --- a/sys/dxr3/gstdxr3.c +++ /dev/null @@ -1,38 +0,0 @@ -#include "gstdxr3videosink.h" - -/* elementfactory information */ -static GstElementDetails dxr3_video_sink_details = { - "dxr3/Hollywood+ mpeg decoder board plugin", - "video/mpeg", - "GPL", - "Outputs PAL/NTSC video via the dxr3/Hollywood+ mpeg decoder board", - VERSION, - "Rehan Khwaja <rehankhwaja@yahoo.com>", - "(C) 2002", -}; - - -static gboolean -plugin_init (GModule *module, GstPlugin *plugin) -{ - GstElementFactory *video_factory; - - video_factory = gst_element_factory_new("dxr3videosink", GST_TYPE_DXR3_VIDEO_SINK, &dxr3_video_sink_details); - g_return_val_if_fail(video_factory != NULL, FALSE); - - gst_element_factory_add_pad_template (video_factory, GST_PAD_TEMPLATE_GET (dxr3_video_sink_factory)); - - gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (video_factory)); - - return TRUE; -} - - -GstPluginDesc plugin_desc = { - GST_VERSION_MAJOR, - GST_VERSION_MINOR, - "dxr3", - plugin_init -}; - - |