mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
oss4: minor cleanup
Remove fixed FIXME, change finalise to finalize for consistency.
This commit is contained in:
parent
fa7d38c438
commit
d56126931f
1 changed files with 3 additions and 7 deletions
|
@ -42,10 +42,6 @@
|
|||
* Since: 0.10.7
|
||||
*/
|
||||
|
||||
/* TODO: - add "volume" property for stream volume control and intercept tags
|
||||
* to set stream title
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
@ -72,7 +68,7 @@ GST_DEBUG_CATEGORY_EXTERN (oss4sink_debug);
|
|||
|
||||
static void gst_oss4_sink_init_interfaces (GType type);
|
||||
static void gst_oss4_sink_dispose (GObject * object);
|
||||
static void gst_oss4_sink_finalise (GObject * object);
|
||||
static void gst_oss4_sink_finalize (GObject * object);
|
||||
|
||||
static void gst_oss4_sink_get_property (GObject * object, guint prop_id,
|
||||
GValue * value, GParamSpec * pspec);
|
||||
|
@ -148,7 +144,7 @@ gst_oss4_sink_class_init (GstOss4SinkClass * klass)
|
|||
GObjectClass *gobject_class = (GObjectClass *) klass;
|
||||
|
||||
gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_oss4_sink_dispose);
|
||||
gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_oss4_sink_finalise);
|
||||
gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_oss4_sink_finalize);
|
||||
gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_oss4_sink_get_property);
|
||||
gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_oss4_sink_set_property);
|
||||
|
||||
|
@ -203,7 +199,7 @@ gst_oss4_sink_init (GstOss4Sink * osssink, GstOss4SinkClass * klass)
|
|||
}
|
||||
|
||||
static void
|
||||
gst_oss4_sink_finalise (GObject * object)
|
||||
gst_oss4_sink_finalize (GObject * object)
|
||||
{
|
||||
GstOss4Sink *osssink = GST_OSS4_SINK (object);
|
||||
|
||||
|
|
Loading…
Reference in a new issue