edtpdvsrc: create source for EDT PDV frame grabbers

This commit is contained in:
Joshua M. Doe
2013-10-31 16:09:07 -04:00
parent f11372da5a
commit da31713498
7 changed files with 571 additions and 2 deletions

View File

@@ -3,6 +3,7 @@
#endif
#include "gstedtpdvsink.h"
#include "gstedtpdvsrc.h"
#define GST_CAT_DEFAULT gst_gstedt_debug
GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
@@ -18,6 +19,11 @@ plugin_init (GstPlugin * plugin)
return FALSE;
}
if (!gst_element_register (plugin, "edtpdvsrc", GST_RANK_NONE,
GST_TYPE_EDT_PDV_SRC)) {
return FALSE;
}
return TRUE;
}
@@ -25,4 +31,4 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR,
edt,
"EDT PDV elements",
plugin_init, VERSION, "LGPL", PACKAGE_NAME, GST_PACKAGE_ORIGIN)
plugin_init, VERSION, "LGPL", PACKAGE_NAME, GST_PACKAGE_ORIGIN)