diff --git a/ext/cdparanoia/gstcdparanoiasrc.c b/ext/cdparanoia/gstcdparanoiasrc.c
index a2721d2306..4c512beb67 100644
--- a/ext/cdparanoia/gstcdparanoiasrc.c
+++ b/ext/cdparanoia/gstcdparanoiasrc.c
@@ -156,11 +156,9 @@ gst_cd_paranoia_src_class_init (GstCdParanoiaSrcClass * klass)
75, DEFAULT_SEARCH_OVERLAP,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/**
- * GstCdParanoiaSrc:cache-size
+ * GstCdParanoiaSrc:cache-size:
*
* Set CD cache size to n sectors (-1 = auto)
- *
- * Since: 0.10.24
*/
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_CACHE_SIZE,
g_param_spec_int ("cache-size", "Cache size",
@@ -171,7 +169,7 @@ gst_cd_paranoia_src_class_init (GstCdParanoiaSrcClass * klass)
/* FIXME: we don't really want signals for this, but messages on the bus,
* but then we can't check any longer whether anyone is interested in them */
/**
- * GstCdParanoiaSrc::transport-error
+ * GstCdParanoiaSrc::transport-error:
* @cdparanoia: The CdParanoia instance
* @sector: The sector number at which the error was encountered.
*
@@ -184,7 +182,7 @@ gst_cd_paranoia_src_class_init (GstCdParanoiaSrcClass * klass)
G_STRUCT_OFFSET (GstCdParanoiaSrcClass, transport_error),
NULL, NULL, g_cclosure_marshal_VOID__INT, G_TYPE_NONE, 1, G_TYPE_INT);
/**
- * GstCdParanoiaSrc::uncorrected-error
+ * GstCdParanoiaSrc::uncorrected-error:
* @cdparanoia: The CdParanoia instance
* @sector: The sector number at which the error was encountered.
*
diff --git a/ext/pango/gstbasetextoverlay.c b/ext/pango/gstbasetextoverlay.c
index 9dfbbc1083..be1cd6ecc6 100644
--- a/ext/pango/gstbasetextoverlay.c
+++ b/ext/pango/gstbasetextoverlay.c
@@ -417,24 +417,20 @@ gst_base_text_overlay_class_init (GstBaseTextOverlayClass * klass)
"Shift Y position up or down. Unit is pixels.", G_MININT, G_MAXINT,
DEFAULT_PROP_DELTAY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/**
- * GstBaseTextOverlay:xpos
+ * GstBaseTextOverlay:xpos:
*
* Horizontal position of the rendered text when using positioned alignment.
- *
- * Since: 0.10.31
- **/
+ */
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_XPOS,
g_param_spec_double ("xpos", "horizontal position",
"Horizontal position when using position alignment", 0, 1.0,
DEFAULT_PROP_XPOS,
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
/**
- * GstBaseTextOverlay:ypos
+ * GstBaseTextOverlay:ypos:
*
* Vertical position of the rendered text when using positioned alignment.
- *
- * Since: 0.10.31
- **/
+ */
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_YPOS,
g_param_spec_double ("ypos", "vertical position",
"Vertical position when using position alignment", 0, 1.0,
@@ -452,24 +448,20 @@ gst_base_text_overlay_class_init (GstBaseTextOverlayClass * klass)
"for syntax.", DEFAULT_PROP_FONT_DESC,
G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS));
/**
- * GstBaseTextOverlay:color
+ * GstBaseTextOverlay:color:
*
* Color of the rendered text.
- *
- * Since: 0.10.31
- **/
+ */
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_COLOR,
g_param_spec_uint ("color", "Color",
"Color to use for text (big-endian ARGB).", 0, G_MAXUINT32,
DEFAULT_PROP_COLOR,
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
/**
- * GstTextOverlay:outline-color
+ * GstTextOverlay:outline-color:
*
* Color of the outline of the rendered text.
- *
- * Since: 0.10.35
- **/
+ */
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_OUTLINE_COLOR,
g_param_spec_uint ("outline-color", "Text Outline Color",
"Color to use for outline the text (big-endian ARGB).", 0,
@@ -477,25 +469,21 @@ gst_base_text_overlay_class_init (GstBaseTextOverlayClass * klass)
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
/**
- * GstBaseTextOverlay:line-alignment
+ * GstBaseTextOverlay:line-alignment:
*
* Alignment of text lines relative to each other (for multi-line text)
- *
- * Since: 0.10.15
- **/
+ */
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_LINE_ALIGNMENT,
g_param_spec_enum ("line-alignment", "line alignment",
"Alignment of text lines relative to each other.",
GST_TYPE_BASE_TEXT_OVERLAY_LINE_ALIGN, DEFAULT_PROP_LINE_ALIGNMENT,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/**
- * GstBaseTextOverlay:silent
+ * GstBaseTextOverlay:silent:
*
* If set, no text is rendered. Useful to switch off text rendering
* temporarily without removing the textoverlay element from the pipeline.
- *
- * Since: 0.10.15
- **/
+ */
/* FIXME 0.11: rename to "visible" or "text-visible" or "render-text" */
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_SILENT,
g_param_spec_boolean ("silent", "silent",
@@ -503,14 +491,12 @@ gst_base_text_overlay_class_init (GstBaseTextOverlayClass * klass)
DEFAULT_PROP_SILENT,
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
/**
- * GstBaseTextOverlay:wait-text
+ * GstBaseTextOverlay:wait-text:
*
* If set, the video will block until a subtitle is received on the text pad.
* If video and subtitles are sent in sync, like from the same demuxer, this
* property should be set.
- *
- * Since: 0.10.20
- **/
+ */
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_WAIT_TEXT,
g_param_spec_boolean ("wait-text", "Wait Text",
"Whether to wait for subtitles",
diff --git a/ext/theora/gsttheoraparse.c b/ext/theora/gsttheoraparse.c
index b1d0727bb2..d44c55b389 100644
--- a/ext/theora/gsttheoraparse.c
+++ b/ext/theora/gsttheoraparse.c
@@ -126,8 +126,6 @@ gst_theora_parse_class_init (GstTheoraParseClass * klass)
* GstTheoraParse:sychronization-points
*
* An array of (granuletime, buffertime) pairs
- *
- * Since: 0.10.10
*/
g_object_class_install_property (gobject_class, PROP_SYNCHRONIZATION_POINTS,
g_param_spec_value_array ("synchronization-points",
diff --git a/gst/app/gstapp.c b/gst/app/gstapp.c
index 0b9ce60853..0fb9e785ac 100644
--- a/gst/app/gstapp.c
+++ b/gst/app/gstapp.c
@@ -26,8 +26,6 @@
* For the documentation of the API, please see the
* libgstapp section in the
* GStreamer Plugins Base Libraries documentation.
- *
- * Since: 0.10.22
*/
/**
* SECTION:element-appsink
@@ -39,8 +37,6 @@
* For the documentation of the API, please see the
* libgstapp section in
* the GStreamer Plugins Base Libraries documentation.
- *
- * Since: 0.10.22
*/
#ifdef HAVE_CONFIG_H
diff --git a/gst/audiorate/gstaudiorate.c b/gst/audiorate/gstaudiorate.c
index 23999d1643..a0818c9191 100644
--- a/gst/audiorate/gstaudiorate.c
+++ b/gst/audiorate/gstaudiorate.c
@@ -158,13 +158,11 @@ gst_audio_rate_class_init (GstAudioRateClass * klass)
"Don't emit notify for dropped and duplicated frames", DEFAULT_SILENT,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/**
- * GstAudioRate:tolerance
+ * GstAudioRate:tolerance:
*
* The difference between incoming timestamp and next timestamp must exceed
* the given value for audiorate to add or drop samples.
- *
- * Since: 0.10.26
- **/
+ */
g_object_class_install_property (object_class, ARG_TOLERANCE,
g_param_spec_uint64 ("tolerance", "tolerance",
"Only act if timestamp jitter/imperfection exceeds indicated tolerance (ns)",
@@ -175,9 +173,7 @@ gst_audio_rate_class_init (GstAudioRateClass * klass)
* GstAudioRate:skip-to-first:
*
* Don't produce buffers before the first one we receive.
- *
- * Since: 0.10.33
- **/
+ */
g_object_class_install_property (object_class, ARG_SKIP_TO_FIRST,
g_param_spec_boolean ("skip-to-first", "Skip to first buffer",
"Don't produce buffers before the first one we receive",
diff --git a/gst/gio/gstgiosink.c b/gst/gio/gstgiosink.c
index 66919cb658..3f985b83e8 100644
--- a/gst/gio/gstgiosink.c
+++ b/gst/gio/gstgiosink.c
@@ -121,12 +121,10 @@ gst_gio_sink_class_init (GstGioSinkClass * klass)
NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/**
- * GstGioSink:file
+ * GstGioSink:file:
*
* %GFile to write to.
- *
- * Since: 0.10.20
- **/
+ */
g_object_class_install_property (gobject_class, PROP_FILE,
g_param_spec_object ("file", "File", "GFile to write to",
G_TYPE_FILE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
diff --git a/gst/gio/gstgiosrc.c b/gst/gio/gstgiosrc.c
index d0a24d9c8c..d2149050af 100644
--- a/gst/gio/gstgiosrc.c
+++ b/gst/gio/gstgiosrc.c
@@ -117,12 +117,10 @@ gst_gio_src_class_init (GstGioSrcClass * klass)
NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/**
- * GstGioSrc:file
+ * GstGioSrc:file:
*
* %GFile to read from.
- *
- * Since: 0.10.20
- **/
+ */
g_object_class_install_property (gobject_class, PROP_FILE,
g_param_spec_object ("file", "File", "GFile to read from",
G_TYPE_FILE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
diff --git a/gst/playback/gstdecodebin2.c b/gst/playback/gstdecodebin2.c
index 2d4e930591..a723967be5 100644
--- a/gst/playback/gstdecodebin2.c
+++ b/gst/playback/gstdecodebin2.c
@@ -822,8 +822,6 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* @bin: The decodebin
*
* This signal is emitted once decodebin has finished decoding all the data.
- *
- * Since: 0.10.16
*/
gst_decode_bin_signals[SIGNAL_DRAINED] =
g_signal_new ("drained", G_TYPE_FROM_CLASS (klass),
@@ -852,8 +850,6 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
*
* Activate buffering in decodebin. This will instruct the multiqueues behind
* decoders to emit BUFFERING messages.
-
- * Since: 0.10.26
*/
g_object_class_install_property (gobject_klass, PROP_USE_BUFFERING,
g_param_spec_boolean ("use-buffering", "Use Buffering",
@@ -864,8 +860,6 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* GstDecodeBin:low-percent
*
* Low threshold percent for buffering to start.
- *
- * Since: 0.10.26
*/
g_object_class_install_property (gobject_klass, PROP_LOW_PERCENT,
g_param_spec_int ("low-percent", "Low percent",
@@ -875,8 +869,6 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* GstDecodeBin:high-percent
*
* High threshold percent for buffering to finish.
- *
- * Since: 0.10.26
*/
g_object_class_install_property (gobject_klass, PROP_HIGH_PERCENT,
g_param_spec_int ("high-percent", "High percent",
@@ -887,8 +879,6 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* GstDecodeBin:max-size-bytes
*
* Max amount of bytes in the queue (0=automatic).
- *
- * Since: 0.10.26
*/
g_object_class_install_property (gobject_klass, PROP_MAX_SIZE_BYTES,
g_param_spec_uint ("max-size-bytes", "Max. size (bytes)",
@@ -899,8 +889,6 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* GstDecodeBin:max-size-buffers
*
* Max amount of buffers in the queue (0=automatic).
- *
- * Since: 0.10.26
*/
g_object_class_install_property (gobject_klass, PROP_MAX_SIZE_BUFFERS,
g_param_spec_uint ("max-size-buffers", "Max. size (buffers)",
@@ -911,8 +899,6 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* GstDecodeBin:max-size-time
*
* Max amount of time in the queue (in ns, 0=automatic).
- *
- * Since: 0.10.26
*/
g_object_class_install_property (gobject_klass, PROP_MAX_SIZE_TIME,
g_param_spec_uint64 ("max-size-time", "Max. size (ns)",
@@ -924,8 +910,6 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* GstDecodeBin::post-stream-topology
*
* Post stream-topology messages on the bus every time the topology changes.
- *
- * Since: 0.10.26
*/
g_object_class_install_property (gobject_klass, PROP_POST_STREAM_TOPOLOGY,
g_param_spec_boolean ("post-stream-topology", "Post Stream Topology",
@@ -942,8 +926,6 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* caps (see 'caps' property) will have a pad exposed. Streams that do not
* match those caps but could have been decoded will not have decoder plugged
* in internally and will not have a pad exposed.
- *
- * Since: 0.10.30
*/
g_object_class_install_property (gobject_klass, PROP_EXPOSE_ALL_STREAMS,
g_param_spec_boolean ("expose-all-streams", "Expose All Streams",
@@ -955,8 +937,6 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* GstDecodeBin2::connection-speed
*
* Network connection speed in kbps (0 = unknownw)
- *
- * Since: 0.10.XX
*/
g_object_class_install_property (gobject_klass, PROP_CONNECTION_SPEED,
g_param_spec_uint64 ("connection-speed", "Connection Speed",
diff --git a/gst/playback/gstplaybin2.c b/gst/playback/gstplaybin2.c
index fc02ca332d..1805437f0d 100644
--- a/gst/playback/gstplaybin2.c
+++ b/gst/playback/gstplaybin2.c
@@ -149,8 +149,7 @@
* value that shows the progress of the buffering process. Applications need
* to set playbin to PLAYING or PAUSED state in response to these messages.
* They may also want to convey the buffering progress to the user in some
- * way. Here is how to extract the percentage information from the message
- * (requires GStreamer >= 0.10.11):
+ * way. Here is how to extract the percentage information from the message:
* |[
* switch (GST_MESSAGE_TYPE (msg)) {
* case GST_MESSAGE_BUFFERING: {
@@ -942,8 +941,6 @@ gst_play_bin_class_init (GstPlayBinClass * klass)
* Control the synchronisation offset between the audio and video streams.
* Positive values make the audio ahead of the video and negative values make
* the audio go behind the video.
- *
- * Since: 0.10.30
*/
g_object_class_install_property (gobject_klass, PROP_AV_OFFSET,
g_param_spec_int64 ("av-offset", "AV Offset",
@@ -956,8 +953,6 @@ gst_play_bin_class_init (GstPlayBinClass * klass)
*
* The maximum size of the ring buffer in bytes. If set to 0, the ring
* buffer is disabled. Default 0.
- *
- * Since: 0.10.31
*/
g_object_class_install_property (gobject_klass, PROP_RING_BUFFER_MAX_SIZE,
g_param_spec_uint64 ("ring-buffer-max-size",
@@ -970,8 +965,6 @@ gst_play_bin_class_init (GstPlayBinClass * klass)
* GstPlayBin::force-aspect-ratio:
*
* Requests the video sink to enforce the video display aspect ratio.
- *
- * Since: 0.10.37
*/
g_object_class_install_property (gobject_klass, PROP_FORCE_ASPECT_RATIO,
g_param_spec_boolean ("force-aspect-ratio", "Force Aspect Ratio",
@@ -1059,8 +1052,6 @@ gst_play_bin_class_init (GstPlayBinClass * klass)
* This signal may be emitted from the context of a GStreamer streaming thread.
* You can use gst_message_new_application() and gst_element_post_message()
* to notify your application's main thread.
- *
- * Since: 0.10.24
*/
gst_play_bin_signals[SIGNAL_VIDEO_TAGS_CHANGED] =
g_signal_new ("video-tags-changed", G_TYPE_FROM_CLASS (klass),
@@ -1079,8 +1070,6 @@ gst_play_bin_class_init (GstPlayBinClass * klass)
* This signal may be emitted from the context of a GStreamer streaming thread.
* You can use gst_message_new_application() and gst_element_post_message()
* to notify your application's main thread.
- *
- * Since: 0.10.24
*/
gst_play_bin_signals[SIGNAL_AUDIO_TAGS_CHANGED] =
g_signal_new ("audio-tags-changed", G_TYPE_FROM_CLASS (klass),
@@ -1099,8 +1088,6 @@ gst_play_bin_class_init (GstPlayBinClass * klass)
* This signal may be emitted from the context of a GStreamer streaming thread.
* You can use gst_message_new_application() and gst_element_post_message()
* to notify your application's main thread.
- *
- * Since: 0.10.24
*/
gst_play_bin_signals[SIGNAL_TEXT_TAGS_CHANGED] =
g_signal_new ("text-tags-changed", G_TYPE_FROM_CLASS (klass),
@@ -1121,8 +1108,6 @@ gst_play_bin_class_init (GstPlayBinClass * klass)
*
* This signal is usually emitted from the context of a GStreamer streaming
* thread.
- *
- * Since: 0.10.33
*/
gst_play_bin_signals[SIGNAL_SOURCE_SETUP] =
g_signal_new ("source-setup", G_TYPE_FROM_CLASS (klass),
diff --git a/gst/playback/gstplaysink.c b/gst/playback/gstplaysink.c
index 7f21c68385..d192443bef 100644
--- a/gst/playback/gstplaysink.c
+++ b/gst/playback/gstplaysink.c
@@ -503,8 +503,6 @@ gst_play_sink_class_init (GstPlaySinkClass * klass)
* Control the synchronisation offset between the audio and video streams.
* Positive values make the audio ahead of the video and negative values make
* the audio go behind the video.
- *
- * Since: 0.10.30
*/
g_object_class_install_property (gobject_klass, PROP_AV_OFFSET,
g_param_spec_int64 ("av-offset", "AV Offset",
@@ -517,8 +515,6 @@ gst_play_sink_class_init (GstPlaySinkClass * klass)
*
* Set the used video sink element. NULL will use the default sink. playsink
* must be in %GST_STATE_NULL
- *
- * Since: 0.10.36
*/
g_object_class_install_property (gobject_klass, PROP_VIDEO_SINK,
g_param_spec_object ("video-sink", "Video Sink",
@@ -529,8 +525,6 @@ gst_play_sink_class_init (GstPlaySinkClass * klass)
*
* Set the used audio sink element. NULL will use the default sink. playsink
* must be in %GST_STATE_NULL
- *
- * Since: 0.10.36
*/
g_object_class_install_property (gobject_klass, PROP_AUDIO_SINK,
g_param_spec_object ("audio-sink", "Audio Sink",
@@ -542,8 +536,6 @@ gst_play_sink_class_init (GstPlaySinkClass * klass)
*
* Set the used text sink element. NULL will use the default sink. playsink
* must be in %GST_STATE_NULL
- *
- * Since: 0.10.36
*/
g_object_class_install_property (gobject_klass, PROP_TEXT_SINK,
g_param_spec_object ("text-sink", "Text sink",
@@ -556,8 +548,6 @@ gst_play_sink_class_init (GstPlaySinkClass * klass)
* Sets the handling method used for events received from send_event
* function. The default is %MODE_DEFAULT, that uses %GstBin's default
* handling (push the event to all internal sinks).
- *
- * Since: 0.10.37
*/
g_object_class_install_property (gobject_klass, PROP_SEND_EVENT_MODE,
g_param_spec_enum ("send-event-mode", "Send event mode",
@@ -569,8 +559,6 @@ gst_play_sink_class_init (GstPlaySinkClass * klass)
* GstPlaySink::force-aspect-ratio:
*
* Requests the video sink to enforce the video display aspect ratio.
- *
- * Since: 0.10.37
*/
g_object_class_install_property (gobject_klass, PROP_FORCE_ASPECT_RATIO,
g_param_spec_boolean ("force-aspect-ratio", "Force Aspect Ratio",
diff --git a/gst/tcp/gstmultifdsink.c b/gst/tcp/gstmultifdsink.c
index 5f5f8848b8..2d6128b51e 100644
--- a/gst/tcp/gstmultifdsink.c
+++ b/gst/tcp/gstmultifdsink.c
@@ -30,7 +30,7 @@
* The multifdsink element needs to be set into READY, PAUSED or PLAYING state
* before operations such as adding clients are possible.
*
- * As of version 0.10.8, a client can also be added with the #GstMultiFdSink::add-full signal
+ * A client can also be added with the #GstMultiFdSink::add-full signal
* that allows for more control over what and how much data a client
* initially receives.
*
@@ -62,7 +62,7 @@
* Multifdsink will always keep at least one keyframe in its internal buffers
* when the sync-mode is set to latest-keyframe.
*
- * As of version 0.10.8, there are additional values for the #GstMultiFdSink:sync-method
+ * There are additional values for the #GstMultiFdSink:sync-method
* property to allow finer control over burst-on-connect behaviour. By selecting
* the 'burst' method a minimum burst size can be chosen, 'burst-keyframe'
* additionally requires that the burst begin with a keyframe, and
@@ -221,8 +221,6 @@ gst_multi_fd_sink_class_init (GstMultiFdSinkClass * klass)
* GstMultiFdSink::handle-read
*
* Handle read requests from clients and discard the data.
- *
- * Since: 0.10.23
*/
g_object_class_install_property (gobject_class, PROP_HANDLE_READ,
g_param_spec_boolean ("handle-read", "Handle Read",
@@ -354,8 +352,6 @@ gst_multi_fd_sink_class_init (GstMultiFdSinkClass * klass)
* In this callback, @gstmultifdsink has removed all the information
* associated with @fd and it is therefore not possible to call get-stats
* with @fd. It is however safe to close() and reuse @fd in the callback.
- *
- * Since: 0.10.7
*/
gst_multi_fd_sink_signals[SIGNAL_CLIENT_FD_REMOVED] =
g_signal_new ("client-fd-removed", G_TYPE_FROM_CLASS (klass),
diff --git a/gst/tcp/gstmultihandlesink.c b/gst/tcp/gstmultihandlesink.c
index 5f1c469a85..46a618964b 100644
--- a/gst/tcp/gstmultihandlesink.c
+++ b/gst/tcp/gstmultihandlesink.c
@@ -29,7 +29,7 @@
* file descriptors can be added to multihandlesink by emitting the #GstMultiHandleSink::add signal.
* For each descriptor added, the #GstMultiHandleSink::client-added signal will be called.
*
- * As of version 0.10.8, a client can also be added with the #GstMultiHandleSink::add-full signal
+ * A client can also be added with the #GstMultiHandleSink::add-full signal
* that allows for more control over what and how much data a client
* initially receives.
*
@@ -61,7 +61,7 @@
* Multisocketsink will always keep at least one keyframe in its internal buffers
* when the sync-mode is set to latest-keyframe.
*
- * As of version 0.10.8, there are additional values for the #GstMultiHandleSink:sync-method
+ * There are additional values for the #GstMultiHandleSink:sync-method
* property to allow finer control over burst-on-connect behaviour. By selecting
* the 'burst' method a minimum burst size can be chosen, 'burst-keyframe'
* additionally requires that the burst begin with a keyframe, and
@@ -432,8 +432,6 @@ gst_multi_handle_sink_class_init (GstMultiHandleSinkClass * klass)
* GstMultiHandleSink::resend-streamheader
*
* Resend the streamheaders to existing clients when they change.
- *
- * Since: 0.10.23
*/
g_object_class_install_property (gobject_class, PROP_RESEND_STREAMHEADER,
g_param_spec_boolean ("resend-streamheader", "Resend streamheader",
diff --git a/gst/tcp/gstmultioutputsink.c b/gst/tcp/gstmultioutputsink.c
index 22975813bb..3d6d56c63c 100644
--- a/gst/tcp/gstmultioutputsink.c
+++ b/gst/tcp/gstmultioutputsink.c
@@ -29,7 +29,7 @@
* file descriptors can be added to multioutputsink by emitting the #GstMultiOutputSink::add signal.
* For each descriptor added, the #GstMultiOutputSink::client-added signal will be called.
*
- * As of version 0.10.8, a client can also be added with the #GstMultiOutputSink::add-full signal
+ * A client can also be added with the #GstMultiOutputSink::add-full signal
* that allows for more control over what and how much data a client
* initially receives.
*
@@ -61,7 +61,7 @@
* Multioutputsink will always keep at least one keyframe in its internal buffers
* when the sync-mode is set to latest-keyframe.
*
- * As of version 0.10.8, there are additional values for the #GstMultiOutputSink:sync-method
+ * There are additional values for the #GstMultiOutputSink:sync-method
* property to allow finer control over burst-on-connect behaviour. By selecting
* the 'burst' method a minimum burst size can be chosen, 'burst-keyframe'
* additionally requires that the burst begin with a keyframe, and
@@ -424,8 +424,6 @@ gst_multi_output_sink_class_init (GstMultiOutputSinkClass * klass)
* GstMultiOutputSink::handle-read
*
* Handle read requests from clients and discard the data.
- *
- * Since: 0.10.23
*/
g_object_class_install_property (gobject_class, PROP_HANDLE_READ,
g_param_spec_boolean ("handle-read", "Handle Read",
@@ -435,8 +433,6 @@ gst_multi_output_sink_class_init (GstMultiOutputSinkClass * klass)
* GstMultiOutputSink::resend-streamheader
*
* Resend the streamheaders to existing clients when they change.
- *
- * Since: 0.10.23
*/
g_object_class_install_property (gobject_class, PROP_RESEND_STREAMHEADER,
g_param_spec_boolean ("resend-streamheader", "Resend streamheader",
@@ -587,8 +583,6 @@ gst_multi_output_sink_class_init (GstMultiOutputSinkClass * klass)
* In this callback, @gstmultioutputsink has removed all the information
* associated with @output and it is therefore not possible to call get-stats
* with @output. It is however safe to close() and reuse @fd in the callback.
- *
- * Since: 0.10.7
*/
gst_multi_output_sink_signals[SIGNAL_CLIENT_OUTPUT_REMOVED] =
g_signal_new ("client-output-removed", G_TYPE_FROM_CLASS (klass),
diff --git a/gst/tcp/gstmultisocketsink.c b/gst/tcp/gstmultisocketsink.c
index ee28065ca9..06e97790d4 100644
--- a/gst/tcp/gstmultisocketsink.c
+++ b/gst/tcp/gstmultisocketsink.c
@@ -29,7 +29,7 @@
* file descriptors can be added to multisocketsink by emitting the #GstMultiSocketSink::add signal.
* For each descriptor added, the #GstMultiSocketSink::client-added signal will be called.
*
- * As of version 0.10.8, a client can also be added with the #GstMultiSocketSink::add-full signal
+ * A client can also be added with the #GstMultiSocketSink::add-full signal
* that allows for more control over what and how much data a client
* initially receives.
*
@@ -61,7 +61,7 @@
* Multisocketsink will always keep at least one keyframe in its internal buffers
* when the sync-mode is set to latest-keyframe.
*
- * As of version 0.10.8, there are additional values for the #GstMultiSocketSink:sync-method
+ * There are additional values for the #GstMultiSocketSink:sync-method
* property to allow finer control over burst-on-connect behaviour. By selecting
* the 'burst' method a minimum burst size can be chosen, 'burst-keyframe'
* additionally requires that the burst begin with a keyframe, and
@@ -340,8 +340,6 @@ gst_multi_socket_sink_class_init (GstMultiSocketSinkClass * klass)
* In this callback, @gstmultisocketsink has removed all the information
* associated with @socket and it is therefore not possible to call get-stats
* with @socket. It is however safe to close() and reuse @fd in the callback.
- *
- * Since: 0.10.7
*/
gst_multi_socket_sink_signals[SIGNAL_CLIENT_SOCKET_REMOVED] =
g_signal_new ("client-socket-removed", G_TYPE_FROM_CLASS (klass),
diff --git a/gst/videorate/gstvideorate.c b/gst/videorate/gstvideorate.c
index de53b7ad39..baa6baf9a4 100644
--- a/gst/videorate/gstvideorate.c
+++ b/gst/videorate/gstvideorate.c
@@ -200,8 +200,6 @@ gst_video_rate_class_init (GstVideoRateClass * klass)
* GstVideoRate:skip-to-first:
*
* Don't produce buffers before the first one we receive.
- *
- * Since: 0.10.25
*/
g_object_class_install_property (object_class, PROP_SKIP_TO_FIRST,
g_param_spec_boolean ("skip-to-first", "Skip to first buffer",
@@ -212,8 +210,6 @@ gst_video_rate_class_init (GstVideoRateClass * klass)
* GstVideoRate:drop-only:
*
* Only drop frames, no duplicates are produced.
- *
- * Since: 0.10.36
*/
g_object_class_install_property (object_class, PROP_DROP_ONLY,
g_param_spec_boolean ("drop-only", "Only Drop",
@@ -226,8 +222,6 @@ gst_video_rate_class_init (GstVideoRateClass * klass)
* Arrange for maximum framerate by dropping frames beyond a certain framerate,
* where the framerate is calculated using a moving average over the
* configured.
- *
- * Since: 0.10.36
*/
g_object_class_install_property (object_class, PROP_AVERAGE_PERIOD,
g_param_spec_uint64 ("average-period", "Period over which to average",
@@ -239,8 +233,6 @@ gst_video_rate_class_init (GstVideoRateClass * klass)
* GstVideoRate:max-rate:
*
* maximum framerate to pass through
- *
- * Since: 0.10.36
*/
g_object_class_install_property (object_class, PROP_MAX_RATE,
g_param_spec_int ("max-rate", "maximum framerate",
diff --git a/sys/ximage/ximagesink.c b/sys/ximage/ximagesink.c
index 93fe19d7a6..867830efbe 100644
--- a/sys/ximage/ximagesink.c
+++ b/sys/ximage/ximagesink.c
@@ -1952,8 +1952,6 @@ gst_ximagesink_class_init (GstXImageSinkClass * klass)
* GstXImageSink:window-width
*
* Actual width of the video window.
- *
- * Since: 0.10.32
*/
g_object_class_install_property (gobject_class, PROP_WINDOW_WIDTH,
g_param_spec_uint64 ("window-width", "window-width",
@@ -1964,8 +1962,6 @@ gst_ximagesink_class_init (GstXImageSinkClass * klass)
* GstXImageSink:window-height
*
* Actual height of the video window.
- *
- * Since: 0.10.32
*/
g_object_class_install_property (gobject_class, PROP_WINDOW_HEIGHT,
g_param_spec_uint64 ("window-height", "window-height",
diff --git a/sys/xvimage/xvimagesink.c b/sys/xvimage/xvimagesink.c
index de1c1f9c3e..cb48e126a8 100644
--- a/sys/xvimage/xvimagesink.c
+++ b/sys/xvimage/xvimagesink.c
@@ -1942,8 +1942,6 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
*
* When enabled, the current frame will always be drawn in response to X
* Expose.
- *
- * Since: 0.10.14
*/
g_object_class_install_property (gobject_class, PROP_HANDLE_EXPOSE,
g_param_spec_boolean ("handle-expose", "Handle expose",
@@ -1955,8 +1953,6 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
* GstXvImageSink:double-buffer
*
* Whether to double-buffer the output.
- *
- * Since: 0.10.14
*/
g_object_class_install_property (gobject_class, PROP_DOUBLE_BUFFER,
g_param_spec_boolean ("double-buffer", "Double-buffer",
@@ -1966,8 +1962,6 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
* GstXvImageSink:autopaint-colorkey
*
* Whether to autofill overlay with colorkey
- *
- * Since: 0.10.21
*/
g_object_class_install_property (gobject_class, PROP_AUTOPAINT_COLORKEY,
g_param_spec_boolean ("autopaint-colorkey", "Autofill with colorkey",
@@ -1977,8 +1971,6 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
* GstXvImageSink:colorkey
*
* Color to use for the overlay mask.
- *
- * Since: 0.10.21
*/
g_object_class_install_property (gobject_class, PROP_COLORKEY,
g_param_spec_int ("colorkey", "Colorkey",
@@ -1990,8 +1982,6 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
*
* Draw black borders when using GstXvImageSink:force-aspect-ratio to fill
* unused parts of the video area.
- *
- * Since: 0.10.21
*/
g_object_class_install_property (gobject_class, PROP_DRAW_BORDERS,
g_param_spec_boolean ("draw-borders", "Colorkey",
@@ -2002,8 +1992,6 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
* GstXvImageSink:window-width
*
* Actual width of the video window.
- *
- * Since: 0.10.32
*/
g_object_class_install_property (gobject_class, PROP_WINDOW_WIDTH,
g_param_spec_uint64 ("window-width", "window-width",
@@ -2014,8 +2002,6 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
* GstXvImageSink:window-height
*
* Actual height of the video window.
- *
- * Since: 0.10.32
*/
g_object_class_install_property (gobject_class, PROP_WINDOW_HEIGHT,
g_param_spec_uint64 ("window-height", "window-height",