mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-05 23:59:55 +00:00
ext/flac/: Fix typos
Original commit message from CVS: 2004-01-31 Jeremy Simon <jesimon@libertysurf.fr> * ext/flac/gstflacdec.c: (gst_flacdec_class_init): * ext/flac/gstflacdec.h: * ext/flac/gstflacenc.h: Fix typos
This commit is contained in:
parent
8068692b10
commit
348c3d52cf
5 changed files with 11 additions and 4 deletions
|
@ -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/
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -74,5 +74,4 @@ GType flacdec_get_type(void);
|
|||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
|
||||
#endif /* __FLACDEC_H__ */
|
||||
|
|
|
@ -72,5 +72,4 @@ GType flacenc_get_type(void);
|
|||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
|
||||
#endif /* __FLACENC_H__ */
|
||||
|
|
Loading…
Reference in a new issue