mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
fix typo
Original commit message from CVS: fix typo
This commit is contained in:
parent
e0d86774fd
commit
fab88aed9f
2 changed files with 5 additions and 5 deletions
|
@ -66,7 +66,7 @@ GST_BOILERPLATE_FULL (GstFdSink, gst_fd_sink_, GstElement, GST_TYPE_ELEMENT,
|
|||
|
||||
static void gst_fd_sink__set_property (GObject * object, guint prop_id,
|
||||
const GValue * value, GParamSpec * pspec);
|
||||
static void gst_fd_sink__get_property (GObject * object, guint prop_id,
|
||||
static void gst_fd_sink_get_property (GObject * object, guint prop_id,
|
||||
GValue * value, GParamSpec * pspec);
|
||||
|
||||
static void gst_fd_sink__chain (GstPad * pad, GstData * _data);
|
||||
|
@ -89,7 +89,7 @@ gst_fd_sink__class_init (GstFdSinkClass * klass)
|
|||
gobject_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
gobject_class->set_property = gst_fd_sink__set_property;
|
||||
gobject_class->get_property = gst_fd_sink__get_property;
|
||||
gobject_class->get_property = gst_fd_sink_get_property;
|
||||
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FD,
|
||||
g_param_spec_int ("fd", "fd", "An open file descriptor to write to",
|
||||
|
@ -151,7 +151,7 @@ gst_fd_sink__set_property (GObject * object, guint prop_id,
|
|||
}
|
||||
|
||||
static void
|
||||
gst_fd_sink__get_property (GObject * object, guint prop_id, GValue * value,
|
||||
gst_fd_sink_get_property (GObject * object, guint prop_id, GValue * value,
|
||||
GParamSpec * pspec)
|
||||
{
|
||||
GstFdSink *fdsink;
|
||||
|
|
|
@ -30,7 +30,7 @@ G_BEGIN_DECLS
|
|||
|
||||
|
||||
#define GST_TYPE_FD_SINK \
|
||||
(gst_fd_sink__get_type())
|
||||
(gst_fd_sink_get_type())
|
||||
#define GST_FD_SINK(obj) \
|
||||
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FD_SINK,GstFdSink))
|
||||
#define GST_FD_SINK_CLASS(klass) \
|
||||
|
@ -55,7 +55,7 @@ struct _GstFdSinkClass {
|
|||
GstElementClass parent_class;
|
||||
};
|
||||
|
||||
GType gst_fd_sink__get_type(void);
|
||||
GType gst_fd_sink_get_type(void);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
|
Loading…
Reference in a new issue