summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--ext/flac/gstflac.c1
-rw-r--r--ext/flac/gstflacdec.c4
-rw-r--r--ext/flac/gstflacdec.h1
-rw-r--r--ext/flac/gstflacenc.h1
5 files changed, 11 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 8d158505..80909d9d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-01-31 Jeremy Simon <jesimon@libertysurf.fr>
+
+ * ext/flac/gstflac.c: (plugin_init):
+ * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
+ * ext/flac/gstflacdec.h:
+ * ext/flac/gstflacenc.h:
+ Fix typos
+
2004-01-30 David I. Lehn <dlehn@users.sourceforge.net>
* examples/gstplay/player.c: s/gstplay.h/play.h/
diff --git a/ext/flac/gstflac.c b/ext/flac/gstflac.c
index 0435b2cf..3c06cacf 100644
--- a/ext/flac/gstflac.c
+++ b/ext/flac/gstflac.c
@@ -42,6 +42,7 @@ 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;
diff --git a/ext/flac/gstflacdec.c b/ext/flac/gstflacdec.c
index b4d857ba..efffa002 100644
--- a/ext/flac/gstflacdec.c
+++ b/ext/flac/gstflacdec.c
@@ -163,10 +163,10 @@ static void
gst_flacdec_class_init (FlacDecClass *klass)
{
GstElementClass *gstelement_class;
- GObjectClass *gobject_class;
+ GObjectClass *gobject_class;
gstelement_class = (GstElementClass*)klass;
- gobject_class = (GObjectClass*) klass;
+ gobject_class = (GObjectClass*) klass;
parent_class = g_type_class_ref(GST_TYPE_ELEMENT);
diff --git a/ext/flac/gstflacdec.h b/ext/flac/gstflacdec.h
index ba62e52c..5b5fd110 100644
--- a/ext/flac/gstflacdec.h
+++ b/ext/flac/gstflacdec.h
@@ -74,5 +74,4 @@ GType flacdec_get_type(void);
}
#endif /* __cplusplus */
-
#endif /* __FLACDEC_H__ */
diff --git a/ext/flac/gstflacenc.h b/ext/flac/gstflacenc.h
index cc404ded..27dbb3b0 100644
--- a/ext/flac/gstflacenc.h
+++ b/ext/flac/gstflacenc.h
@@ -72,5 +72,4 @@ GType flacenc_get_type(void);
}
#endif /* __cplusplus */
-
#endif /* __FLACENC_H__ */