diff options
-rw-r--r-- | gst/gstbus.c | 2 | ||||
-rw-r--r-- | gst/gstevent.c | 2 | ||||
-rw-r--r-- | gst/gsttracer.c | 2 | ||||
-rw-r--r-- | gst/gsttracerutils.h | 2 | ||||
-rw-r--r-- | gst/gstvalue.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/gst/gstbus.c b/gst/gstbus.c index baccd904c..6699e05c6 100644 --- a/gst/gstbus.c +++ b/gst/gstbus.c @@ -769,7 +769,7 @@ no_replace: * Gets the file descriptor from the bus which can be used to get notified about * messages being available with functions like g_poll(), and allows integration * into other event loops based on file descriptors. - * Whenever a message is available, the %POLLIN / %G_IO_IN event is set. + * Whenever a message is available, the POLLIN / %G_IO_IN event is set. * * Warning: NEVER read or write anything to the returned fd but only use it * for getting notifications via g_poll() or similar and then use the normal diff --git a/gst/gstevent.c b/gst/gstevent.c index 71cfab001..41e5b0b1e 100644 --- a/gst/gstevent.c +++ b/gst/gstevent.c @@ -591,7 +591,7 @@ gst_event_parse_flush_stop (GstEvent * event, gboolean * reset_time) * The list of @streams corresponds to the "Stream ID" of each stream to be * activated. Those ID can be obtained via the #GstStream objects present * in #GST_EVENT_STREAM_START, #GST_EVENT_STREAM_COLLECTION or - * #GST_MESSSAGE_STREAM_COLLECTION. + * #GST_MESSAGE_STREAM_COLLECTION. * * Note: The list of @streams can not be empty. * diff --git a/gst/gsttracer.c b/gst/gsttracer.c index 25cc94f80..958007f62 100644 --- a/gst/gsttracer.c +++ b/gst/gsttracer.c @@ -25,7 +25,7 @@ * @short_description: Tracing base class * * Tracing modules will subclass #GstTracer and register through - * gst_tracing_register(). Modules can attach to various hook-types - see + * gst_tracer_register(). Modules can attach to various hook-types - see * gst_tracing_register_hook(). When invoked they receive hook specific * contextual data, which they must not modify. * diff --git a/gst/gsttracerutils.h b/gst/gsttracerutils.h index 426bc53ba..bbb1a0d2d 100644 --- a/gst/gsttracerutils.h +++ b/gst/gsttracerutils.h @@ -358,7 +358,7 @@ typedef void (*GstTracerHookElementQueryPost) (GObject *self, GstClockTime ts, * @ts: the current timestamp * @element: the element * - * Hook for gst_element_new() named "element-new". + * Hook for whenever a new element is created, named "element-new". */ typedef void (*GstTracerHookElementNew) (GObject *self, GstClockTime ts, GstElement *element); diff --git a/gst/gstvalue.h b/gst/gstvalue.h index 6beee7a2b..756b32328 100644 --- a/gst/gstvalue.h +++ b/gst/gstvalue.h @@ -215,7 +215,7 @@ G_BEGIN_DECLS * GST_FLAG_SET_MASK_EXACT: (value 4294967295) (type guint) * * A mask value with all bits set, for use as a - * #GstFlagSet mask where all flag bits must match + * GstFlagSet mask where all flag bits must match * exactly * * Since: 1.6 |