Skip to content
Snippets Groups Projects
Commit 03885978 authored by Leo P. Singer's avatar Leo P. Singer
Browse files

cairovis: removed unused tag initialization code

parent 1cf0ad2e
No related branches found
No related tags found
No related merge requests found
......@@ -73,16 +73,6 @@ static gboolean plugin_init(GstPlugin *plugin)
{"cairovis_waterfall", CAIROVIS_WATERFALL_TYPE},
{NULL, 0},
};
struct {
const gchar *name;
GstTagFlag flag;
GType type;
const gchar *nick;
const gchar *blurb;
GstTagMergeFunc func;
} *tagarg, tagargs[] = {
{NULL,},
};
/*
* Tell GStreamer about the elements.
......@@ -92,13 +82,6 @@ static gboolean plugin_init(GstPlugin *plugin)
if(!gst_element_register(plugin, element->name, GST_RANK_NONE, element->type))
return FALSE;
/*
* Tell GStreamer about the custom tags.
*/
for(tagarg = tagargs; tagarg->name; tagarg++)
gst_tag_register(tagarg->name, tagarg->flag, tagarg->type, tagarg->nick, tagarg->blurb, tagarg->func);
/*
* Done.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment