summaryrefslogtreecommitdiffstats
path: root/ext/flac/gstflac.c
diff options
context:
space:
mode:
authorChristophe Fergeau <teuf@gnome.org>2003-12-07 21:40:11 +0000
committerChristophe Fergeau <teuf@gnome.org>2003-12-07 21:40:11 +0000
commit06c6f3be60ec2cf3cbcb8225c0bd25ac75129c60 (patch)
treee38dda10cecd7749adbc4d0ee8a705ffa481d179 /ext/flac/gstflac.c
parent12e856c26d690c02cc05a2e945b49e2df538307a (diff)
Added element to rewrite vorbiscomments embedded in flac files. It currently doesn't honour the tag merge mode setting.
Original commit message from CVS: Added element to rewrite vorbiscomments embedded in flac files. It currently doesn't honour the tag merge mode setting. Changed application/x-flac to audio/x-flac in gstflacenc.c
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;
}