From: Evan Nemerson Date: Fri, 15 Jun 2012 23:56:46 +0000 (-0700) Subject: introspection: assorted introspection and documentation fixes in base X-Git-Tag: RELEASE-0.11.93~302 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8f6b6b8ab54d9caab4f4ce121cdbaec0d279a0e6;p=platform%2Fupstream%2Fgstreamer.git introspection: assorted introspection and documentation fixes in base --- diff --git a/libs/gst/base/gstbasesink.c b/libs/gst/base/gstbasesink.c index 3fd88fd..f9c66fe 100644 --- a/libs/gst/base/gstbasesink.c +++ b/libs/gst/base/gstbasesink.c @@ -20,7 +20,7 @@ */ /** - * SECTION:gstbasesink + * SECTION:gstbasesink: * @short_description: Base class for sink elements * @see_also: #GstBaseTransform, #GstBaseSrc * @@ -430,7 +430,7 @@ gst_base_sink_class_init (GstBaseSinkClass * klass) "Generate Quality-of-Service events upstream", DEFAULT_QOS, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); /** - * GstBaseSink:async + * GstBaseSink:async: * * If set to #TRUE, the basesink will perform asynchronous state changes. * When set to #FALSE, the sink will not signal the parent when it prerolls. @@ -444,7 +444,7 @@ gst_base_sink_class_init (GstBaseSinkClass * klass) "Go asynchronously to PAUSED", DEFAULT_ASYNC, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); /** - * GstBaseSink:ts-offset + * GstBaseSink:ts-offset: * * Controls the final synchronisation, a negative value will render the buffer * earlier while a positive value delays playback. This property can be @@ -458,7 +458,7 @@ gst_base_sink_class_init (GstBaseSinkClass * klass) DEFAULT_TS_OFFSET, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); /** - * GstBaseSink:enable-last-sample + * GstBaseSink:enable-last-sample: * * Enable the last-sample property. If FALSE, basesink doesn't keep a * reference to the last buffer arrived and the last-sample property is always @@ -473,7 +473,7 @@ gst_base_sink_class_init (GstBaseSinkClass * klass) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); /** - * GstBaseSink:last-sample + * GstBaseSink:last-sample: * * The last buffer that arrived in the sink and was used for preroll or for * rendering. This property can be used to generate thumbnails. This property @@ -486,7 +486,7 @@ gst_base_sink_class_init (GstBaseSinkClass * klass) "The last sample received in the sink", GST_TYPE_SAMPLE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)); /** - * GstBaseSink:blocksize + * GstBaseSink:blocksize: * * The amount of bytes to pull when operating in pull mode. * @@ -498,7 +498,7 @@ gst_base_sink_class_init (GstBaseSinkClass * klass) "Size in bytes to pull per buffer (0 = default)", 0, G_MAXUINT, DEFAULT_BLOCKSIZE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); /** - * GstBaseSink:render-delay + * GstBaseSink:render-delay: * * The additional delay between synchronisation and actual rendering of the * media. This property will add additional latency to the device in order to @@ -511,7 +511,7 @@ gst_base_sink_class_init (GstBaseSinkClass * klass) "Additional render delay of the sink in nanoseconds", 0, G_MAXUINT64, DEFAULT_RENDER_DELAY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); /** - * GstBaseSink:throttle-time + * GstBaseSink:throttle-time: * * The time to insert between buffers. This property can be used to control * the maximum amount of buffers per second to render. Setting this property diff --git a/libs/gst/base/gstbasesrc.c b/libs/gst/base/gstbasesrc.c index a832802..2c77b7c 100644 --- a/libs/gst/base/gstbasesrc.c +++ b/libs/gst/base/gstbasesrc.c @@ -3084,7 +3084,7 @@ could_not_start: /** * gst_base_src_start_complete: - * @src: base source instance + * @basesrc: base source instance * @ret: a #GstFlowReturn * * Complete an asynchronous start operation. When the subclass overrides the @@ -3214,8 +3214,7 @@ error: /** * gst_base_src_start_wait: - * @src: base source instance - * @ret: a #GstFlowReturn + * @basesrc: base source instance * * Wait until the start operation completes. * diff --git a/libs/gst/base/gstbytewriter.c b/libs/gst/base/gstbytewriter.c index fc41bbc..ba100aa 100644 --- a/libs/gst/base/gstbytewriter.c +++ b/libs/gst/base/gstbytewriter.c @@ -160,8 +160,7 @@ gst_byte_writer_init_with_size (GstByteWriter * writer, guint size, /** * gst_byte_writer_init_with_data: * @writer: #GstByteWriter instance - * @data: (in callee-allocated) (array length=size) (transfer none): Memory - * area for writing + * @data: (array length=size) (transfer none): Memory area for writing * @size: Size of @data in bytes * @initialized: If %TRUE the complete data can be read from the beginning *