summaryrefslogtreecommitdiffstats
path: root/ext/raw1394/gst1394.c
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2008-08-11 14:36:13 +0000
committerEdward Hervey <bilboed@bilboed.com>2008-08-11 14:36:13 +0000
commitf9c6c528e1eaa779a7f1e2f9a59e611c625006e0 (patch)
treee02a2d3a52e2a1c5a33b86a4df34395638186bf2 /ext/raw1394/gst1394.c
parent9b7172ae9e6aa18ac3ee79ea0286324b0b4d236f (diff)
ext/raw1394/: mpeg2-ts (HDV) variant of firewire capture element.
Original commit message from CVS: * ext/raw1394/Makefile.am: * ext/raw1394/gst1394.c: (plugin_init): * ext/raw1394/gsthdv1394src.c: (_do_init), (gst_hdv1394src_base_init), (gst_hdv1394src_class_init), (gst_hdv1394src_init), (gst_hdv1394src_dispose), (gst_hdv1394src_set_property), (gst_hdv1394src_get_property), (gst_hdv1394src_from_raw1394handle), (gst_hdv1394src_iec61883_receive), (gst_hdv1394src_bus_reset), (gst_hdv1394src_create), (gst_hdv1394src_discover_avc_node), (gst_hdv1394src_start), (gst_hdv1394src_stop), (gst_hdv1394src_unlock), (gst_hdv1394src_update_device_name), (gst_hdv1394src_uri_get_type), (gst_hdv1394src_uri_get_protocols), (gst_hdv1394src_uri_get_uri), (gst_hdv1394src_uri_set_uri), (gst_hdv1394src_uri_handler_init): * ext/raw1394/gsthdv1394src.h: mpeg2-ts (HDV) variant of firewire capture element. Fixes #350830
Diffstat (limited to 'ext/raw1394/gst1394.c')
-rw-r--r--ext/raw1394/gst1394.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/raw1394/gst1394.c b/ext/raw1394/gst1394.c
index 3143a59b..87163df3 100644
--- a/ext/raw1394/gst1394.c
+++ b/ext/raw1394/gst1394.c
@@ -25,6 +25,7 @@
#include "gstdv1394src.h"
+#include "gsthdv1394src.h"
static gboolean
plugin_init (GstPlugin * plugin)
@@ -32,6 +33,9 @@ plugin_init (GstPlugin * plugin)
if (!gst_element_register (plugin, "dv1394src", GST_RANK_NONE,
GST_TYPE_DV1394SRC))
return FALSE;
+ if (!gst_element_register (plugin, "hdv1394src", GST_RANK_NONE,
+ GST_TYPE_HDV1394SRC))
+ return FALSE;
return TRUE;
}
@@ -39,5 +43,5 @@ plugin_init (GstPlugin * plugin)
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"1394",
- "Source for DV data via IEEE1394 interface",
+ "Source for video data via IEEE1394 interface",
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);