summaryrefslogtreecommitdiffstats
path: root/ext/flac/gstflac.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/flac/gstflac.c')
-rw-r--r--ext/flac/gstflac.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/flac/gstflac.c b/ext/flac/gstflac.c
index bcbc60cb..0435b2cf 100644
--- a/ext/flac/gstflac.c
+++ b/ext/flac/gstflac.c
@@ -23,6 +23,7 @@
#include "gstflacenc.h"
#include "gstflacdec.h"
+#include "gstflactag.h"
#include "flac_compat.h"
@@ -41,6 +42,8 @@ plugin_init (GstPlugin *plugin)
if (!gst_element_register (plugin, "flacdec", GST_RANK_PRIMARY, GST_TYPE_FLACDEC))
return FALSE;
+ if (!gst_element_register (plugin, "flactag", GST_RANK_PRIMARY, gst_flac_tag_get_type ()))
+ return FALSE;
return TRUE;
}