docs: remove old 0.10 Since markers

They're just confusing.
This commit is contained in:
Tim-Philipp Müller 2013-11-16 13:06:37 +00:00
parent 4af1e064fe
commit b1ff48c1a1
17 changed files with 33 additions and 150 deletions

View file

@ -156,11 +156,9 @@ gst_cd_paranoia_src_class_init (GstCdParanoiaSrcClass * klass)
75, DEFAULT_SEARCH_OVERLAP, 75, DEFAULT_SEARCH_OVERLAP,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/** /**
* GstCdParanoiaSrc:cache-size * GstCdParanoiaSrc:cache-size:
* *
* Set CD cache size to n sectors (-1 = auto) * 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_object_class_install_property (G_OBJECT_CLASS (klass), PROP_CACHE_SIZE,
g_param_spec_int ("cache-size", "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, /* 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 */ * but then we can't check any longer whether anyone is interested in them */
/** /**
* GstCdParanoiaSrc::transport-error * GstCdParanoiaSrc::transport-error:
* @cdparanoia: The CdParanoia instance * @cdparanoia: The CdParanoia instance
* @sector: The sector number at which the error was encountered. * @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), G_STRUCT_OFFSET (GstCdParanoiaSrcClass, transport_error),
NULL, NULL, g_cclosure_marshal_VOID__INT, G_TYPE_NONE, 1, G_TYPE_INT); NULL, NULL, g_cclosure_marshal_VOID__INT, G_TYPE_NONE, 1, G_TYPE_INT);
/** /**
* GstCdParanoiaSrc::uncorrected-error * GstCdParanoiaSrc::uncorrected-error:
* @cdparanoia: The CdParanoia instance * @cdparanoia: The CdParanoia instance
* @sector: The sector number at which the error was encountered. * @sector: The sector number at which the error was encountered.
* *

View file

@ -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, "Shift Y position up or down. Unit is pixels.", G_MININT, G_MAXINT,
DEFAULT_PROP_DELTAY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); DEFAULT_PROP_DELTAY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/** /**
* GstBaseTextOverlay:xpos * GstBaseTextOverlay:xpos:
* *
* Horizontal position of the rendered text when using positioned alignment. * 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_object_class_install_property (G_OBJECT_CLASS (klass), PROP_XPOS,
g_param_spec_double ("xpos", "horizontal position", g_param_spec_double ("xpos", "horizontal position",
"Horizontal position when using position alignment", 0, 1.0, "Horizontal position when using position alignment", 0, 1.0,
DEFAULT_PROP_XPOS, DEFAULT_PROP_XPOS,
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS)); G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
/** /**
* GstBaseTextOverlay:ypos * GstBaseTextOverlay:ypos:
* *
* Vertical position of the rendered text when using positioned alignment. * 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_object_class_install_property (G_OBJECT_CLASS (klass), PROP_YPOS,
g_param_spec_double ("ypos", "vertical position", g_param_spec_double ("ypos", "vertical position",
"Vertical position when using position alignment", 0, 1.0, "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, "for syntax.", DEFAULT_PROP_FONT_DESC,
G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS)); G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS));
/** /**
* GstBaseTextOverlay:color * GstBaseTextOverlay:color:
* *
* Color of the rendered text. * Color of the rendered text.
* */
* Since: 0.10.31
**/
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_COLOR, g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_COLOR,
g_param_spec_uint ("color", "Color", g_param_spec_uint ("color", "Color",
"Color to use for text (big-endian ARGB).", 0, G_MAXUINT32, "Color to use for text (big-endian ARGB).", 0, G_MAXUINT32,
DEFAULT_PROP_COLOR, DEFAULT_PROP_COLOR,
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS)); G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
/** /**
* GstTextOverlay:outline-color * GstTextOverlay:outline-color:
* *
* Color of the outline of the rendered text. * 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_object_class_install_property (G_OBJECT_CLASS (klass), PROP_OUTLINE_COLOR,
g_param_spec_uint ("outline-color", "Text Outline Color", g_param_spec_uint ("outline-color", "Text Outline Color",
"Color to use for outline the text (big-endian ARGB).", 0, "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)); 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) * 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_object_class_install_property (G_OBJECT_CLASS (klass), PROP_LINE_ALIGNMENT,
g_param_spec_enum ("line-alignment", "line alignment", g_param_spec_enum ("line-alignment", "line alignment",
"Alignment of text lines relative to each other.", "Alignment of text lines relative to each other.",
GST_TYPE_BASE_TEXT_OVERLAY_LINE_ALIGN, DEFAULT_PROP_LINE_ALIGNMENT, GST_TYPE_BASE_TEXT_OVERLAY_LINE_ALIGN, DEFAULT_PROP_LINE_ALIGNMENT,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/** /**
* GstBaseTextOverlay:silent * GstBaseTextOverlay:silent:
* *
* If set, no text is rendered. Useful to switch off text rendering * If set, no text is rendered. Useful to switch off text rendering
* temporarily without removing the textoverlay element from the pipeline. * 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" */ /* FIXME 0.11: rename to "visible" or "text-visible" or "render-text" */
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_SILENT, g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_SILENT,
g_param_spec_boolean ("silent", "silent", g_param_spec_boolean ("silent", "silent",
@ -503,14 +491,12 @@ gst_base_text_overlay_class_init (GstBaseTextOverlayClass * klass)
DEFAULT_PROP_SILENT, DEFAULT_PROP_SILENT,
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS)); 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 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 * If video and subtitles are sent in sync, like from the same demuxer, this
* property should be set. * property should be set.
* */
* Since: 0.10.20
**/
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_WAIT_TEXT, g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_WAIT_TEXT,
g_param_spec_boolean ("wait-text", "Wait Text", g_param_spec_boolean ("wait-text", "Wait Text",
"Whether to wait for subtitles", "Whether to wait for subtitles",

View file

@ -126,8 +126,6 @@ gst_theora_parse_class_init (GstTheoraParseClass * klass)
* GstTheoraParse:sychronization-points * GstTheoraParse:sychronization-points
* *
* An array of (granuletime, buffertime) pairs * An array of (granuletime, buffertime) pairs
*
* Since: 0.10.10
*/ */
g_object_class_install_property (gobject_class, PROP_SYNCHRONIZATION_POINTS, g_object_class_install_property (gobject_class, PROP_SYNCHRONIZATION_POINTS,
g_param_spec_value_array ("synchronization-points", g_param_spec_value_array ("synchronization-points",

View file

@ -26,8 +26,6 @@
* For the documentation of the API, please see the * For the documentation of the API, please see the
* <link linkend="gst-plugins-base-libs-appsrc">libgstapp</link> section in the * <link linkend="gst-plugins-base-libs-appsrc">libgstapp</link> section in the
* GStreamer Plugins Base Libraries documentation. * GStreamer Plugins Base Libraries documentation.
*
* Since: 0.10.22
*/ */
/** /**
* SECTION:element-appsink * SECTION:element-appsink
@ -39,8 +37,6 @@
* For the documentation of the API, please see the * For the documentation of the API, please see the
* <link linkend="gst-plugins-base-libs-appsink">libgstapp</link> section in * <link linkend="gst-plugins-base-libs-appsink">libgstapp</link> section in
* the GStreamer Plugins Base Libraries documentation. * the GStreamer Plugins Base Libraries documentation.
*
* Since: 0.10.22
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H

View file

@ -158,13 +158,11 @@ gst_audio_rate_class_init (GstAudioRateClass * klass)
"Don't emit notify for dropped and duplicated frames", DEFAULT_SILENT, "Don't emit notify for dropped and duplicated frames", DEFAULT_SILENT,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/** /**
* GstAudioRate:tolerance * GstAudioRate:tolerance:
* *
* The difference between incoming timestamp and next timestamp must exceed * The difference between incoming timestamp and next timestamp must exceed
* the given value for audiorate to add or drop samples. * the given value for audiorate to add or drop samples.
* */
* Since: 0.10.26
**/
g_object_class_install_property (object_class, ARG_TOLERANCE, g_object_class_install_property (object_class, ARG_TOLERANCE,
g_param_spec_uint64 ("tolerance", "tolerance", g_param_spec_uint64 ("tolerance", "tolerance",
"Only act if timestamp jitter/imperfection exceeds indicated tolerance (ns)", "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: * GstAudioRate:skip-to-first:
* *
* Don't produce buffers before the first one we receive. * 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_object_class_install_property (object_class, ARG_SKIP_TO_FIRST,
g_param_spec_boolean ("skip-to-first", "Skip to first buffer", g_param_spec_boolean ("skip-to-first", "Skip to first buffer",
"Don't produce buffers before the first one we receive", "Don't produce buffers before the first one we receive",

View file

@ -121,12 +121,10 @@ gst_gio_sink_class_init (GstGioSinkClass * klass)
NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/** /**
* GstGioSink:file * GstGioSink:file:
* *
* %GFile to write to. * %GFile to write to.
* */
* Since: 0.10.20
**/
g_object_class_install_property (gobject_class, PROP_FILE, g_object_class_install_property (gobject_class, PROP_FILE,
g_param_spec_object ("file", "File", "GFile to write to", g_param_spec_object ("file", "File", "GFile to write to",
G_TYPE_FILE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); G_TYPE_FILE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));

View file

@ -117,12 +117,10 @@ gst_gio_src_class_init (GstGioSrcClass * klass)
NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/** /**
* GstGioSrc:file * GstGioSrc:file:
* *
* %GFile to read from. * %GFile to read from.
* */
* Since: 0.10.20
**/
g_object_class_install_property (gobject_class, PROP_FILE, g_object_class_install_property (gobject_class, PROP_FILE,
g_param_spec_object ("file", "File", "GFile to read from", g_param_spec_object ("file", "File", "GFile to read from",
G_TYPE_FILE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); G_TYPE_FILE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));

View file

@ -822,8 +822,6 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* @bin: The decodebin * @bin: The decodebin
* *
* This signal is emitted once decodebin has finished decoding all the data. * This signal is emitted once decodebin has finished decoding all the data.
*
* Since: 0.10.16
*/ */
gst_decode_bin_signals[SIGNAL_DRAINED] = gst_decode_bin_signals[SIGNAL_DRAINED] =
g_signal_new ("drained", G_TYPE_FROM_CLASS (klass), 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 * Activate buffering in decodebin. This will instruct the multiqueues behind
* decoders to emit BUFFERING messages. * decoders to emit BUFFERING messages.
* Since: 0.10.26
*/ */
g_object_class_install_property (gobject_klass, PROP_USE_BUFFERING, g_object_class_install_property (gobject_klass, PROP_USE_BUFFERING,
g_param_spec_boolean ("use-buffering", "Use Buffering", g_param_spec_boolean ("use-buffering", "Use Buffering",
@ -864,8 +860,6 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* GstDecodeBin:low-percent * GstDecodeBin:low-percent
* *
* Low threshold percent for buffering to start. * Low threshold percent for buffering to start.
*
* Since: 0.10.26
*/ */
g_object_class_install_property (gobject_klass, PROP_LOW_PERCENT, g_object_class_install_property (gobject_klass, PROP_LOW_PERCENT,
g_param_spec_int ("low-percent", "Low percent", g_param_spec_int ("low-percent", "Low percent",
@ -875,8 +869,6 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* GstDecodeBin:high-percent * GstDecodeBin:high-percent
* *
* High threshold percent for buffering to finish. * High threshold percent for buffering to finish.
*
* Since: 0.10.26
*/ */
g_object_class_install_property (gobject_klass, PROP_HIGH_PERCENT, g_object_class_install_property (gobject_klass, PROP_HIGH_PERCENT,
g_param_spec_int ("high-percent", "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 * GstDecodeBin:max-size-bytes
* *
* Max amount of bytes in the queue (0=automatic). * 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_object_class_install_property (gobject_klass, PROP_MAX_SIZE_BYTES,
g_param_spec_uint ("max-size-bytes", "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 * GstDecodeBin:max-size-buffers
* *
* Max amount of buffers in the queue (0=automatic). * 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_object_class_install_property (gobject_klass, PROP_MAX_SIZE_BUFFERS,
g_param_spec_uint ("max-size-buffers", "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 * GstDecodeBin:max-size-time
* *
* Max amount of time in the queue (in ns, 0=automatic). * 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_object_class_install_property (gobject_klass, PROP_MAX_SIZE_TIME,
g_param_spec_uint64 ("max-size-time", "Max. size (ns)", 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 * GstDecodeBin::post-stream-topology
* *
* Post stream-topology messages on the bus every time the topology changes. * 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_object_class_install_property (gobject_klass, PROP_POST_STREAM_TOPOLOGY,
g_param_spec_boolean ("post-stream-topology", "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 * 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 * match those caps but could have been decoded will not have decoder plugged
* in internally and will not have a pad exposed. * 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_object_class_install_property (gobject_klass, PROP_EXPOSE_ALL_STREAMS,
g_param_spec_boolean ("expose-all-streams", "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 * GstDecodeBin2::connection-speed
* *
* Network connection speed in kbps (0 = unknownw) * Network connection speed in kbps (0 = unknownw)
*
* Since: 0.10.XX
*/ */
g_object_class_install_property (gobject_klass, PROP_CONNECTION_SPEED, g_object_class_install_property (gobject_klass, PROP_CONNECTION_SPEED,
g_param_spec_uint64 ("connection-speed", "Connection Speed", g_param_spec_uint64 ("connection-speed", "Connection Speed",

View file

@ -149,8 +149,7 @@
* value that shows the progress of the buffering process. Applications need * value that shows the progress of the buffering process. Applications need
* to set playbin to PLAYING or PAUSED state in response to these messages. * 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 * 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 * way. Here is how to extract the percentage information from the message:
* (requires GStreamer >= 0.10.11):
* |[ * |[
* switch (GST_MESSAGE_TYPE (msg)) { * switch (GST_MESSAGE_TYPE (msg)) {
* case GST_MESSAGE_BUFFERING: { * 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. * Control the synchronisation offset between the audio and video streams.
* Positive values make the audio ahead of the video and negative values make * Positive values make the audio ahead of the video and negative values make
* the audio go behind the video. * the audio go behind the video.
*
* Since: 0.10.30
*/ */
g_object_class_install_property (gobject_klass, PROP_AV_OFFSET, g_object_class_install_property (gobject_klass, PROP_AV_OFFSET,
g_param_spec_int64 ("av-offset", "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 * The maximum size of the ring buffer in bytes. If set to 0, the ring
* buffer is disabled. Default 0. * buffer is disabled. Default 0.
*
* Since: 0.10.31
*/ */
g_object_class_install_property (gobject_klass, PROP_RING_BUFFER_MAX_SIZE, g_object_class_install_property (gobject_klass, PROP_RING_BUFFER_MAX_SIZE,
g_param_spec_uint64 ("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: * GstPlayBin::force-aspect-ratio:
* *
* Requests the video sink to enforce the video display 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_object_class_install_property (gobject_klass, PROP_FORCE_ASPECT_RATIO,
g_param_spec_boolean ("force-aspect-ratio", "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. * 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() * You can use gst_message_new_application() and gst_element_post_message()
* to notify your application's main thread. * to notify your application's main thread.
*
* Since: 0.10.24
*/ */
gst_play_bin_signals[SIGNAL_VIDEO_TAGS_CHANGED] = gst_play_bin_signals[SIGNAL_VIDEO_TAGS_CHANGED] =
g_signal_new ("video-tags-changed", G_TYPE_FROM_CLASS (klass), 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. * 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() * You can use gst_message_new_application() and gst_element_post_message()
* to notify your application's main thread. * to notify your application's main thread.
*
* Since: 0.10.24
*/ */
gst_play_bin_signals[SIGNAL_AUDIO_TAGS_CHANGED] = gst_play_bin_signals[SIGNAL_AUDIO_TAGS_CHANGED] =
g_signal_new ("audio-tags-changed", G_TYPE_FROM_CLASS (klass), 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. * 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() * You can use gst_message_new_application() and gst_element_post_message()
* to notify your application's main thread. * to notify your application's main thread.
*
* Since: 0.10.24
*/ */
gst_play_bin_signals[SIGNAL_TEXT_TAGS_CHANGED] = gst_play_bin_signals[SIGNAL_TEXT_TAGS_CHANGED] =
g_signal_new ("text-tags-changed", G_TYPE_FROM_CLASS (klass), 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 * This signal is usually emitted from the context of a GStreamer streaming
* thread. * thread.
*
* Since: 0.10.33
*/ */
gst_play_bin_signals[SIGNAL_SOURCE_SETUP] = gst_play_bin_signals[SIGNAL_SOURCE_SETUP] =
g_signal_new ("source-setup", G_TYPE_FROM_CLASS (klass), g_signal_new ("source-setup", G_TYPE_FROM_CLASS (klass),

View file

@ -503,8 +503,6 @@ gst_play_sink_class_init (GstPlaySinkClass * klass)
* Control the synchronisation offset between the audio and video streams. * Control the synchronisation offset between the audio and video streams.
* Positive values make the audio ahead of the video and negative values make * Positive values make the audio ahead of the video and negative values make
* the audio go behind the video. * the audio go behind the video.
*
* Since: 0.10.30
*/ */
g_object_class_install_property (gobject_klass, PROP_AV_OFFSET, g_object_class_install_property (gobject_klass, PROP_AV_OFFSET,
g_param_spec_int64 ("av-offset", "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 * Set the used video sink element. NULL will use the default sink. playsink
* must be in %GST_STATE_NULL * must be in %GST_STATE_NULL
*
* Since: 0.10.36
*/ */
g_object_class_install_property (gobject_klass, PROP_VIDEO_SINK, g_object_class_install_property (gobject_klass, PROP_VIDEO_SINK,
g_param_spec_object ("video-sink", "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 * Set the used audio sink element. NULL will use the default sink. playsink
* must be in %GST_STATE_NULL * must be in %GST_STATE_NULL
*
* Since: 0.10.36
*/ */
g_object_class_install_property (gobject_klass, PROP_AUDIO_SINK, g_object_class_install_property (gobject_klass, PROP_AUDIO_SINK,
g_param_spec_object ("audio-sink", "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 * Set the used text sink element. NULL will use the default sink. playsink
* must be in %GST_STATE_NULL * must be in %GST_STATE_NULL
*
* Since: 0.10.36
*/ */
g_object_class_install_property (gobject_klass, PROP_TEXT_SINK, g_object_class_install_property (gobject_klass, PROP_TEXT_SINK,
g_param_spec_object ("text-sink", "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 * Sets the handling method used for events received from send_event
* function. The default is %MODE_DEFAULT, that uses %GstBin's default * function. The default is %MODE_DEFAULT, that uses %GstBin's default
* handling (push the event to all internal sinks). * handling (push the event to all internal sinks).
*
* Since: 0.10.37
*/ */
g_object_class_install_property (gobject_klass, PROP_SEND_EVENT_MODE, g_object_class_install_property (gobject_klass, PROP_SEND_EVENT_MODE,
g_param_spec_enum ("send-event-mode", "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: * GstPlaySink::force-aspect-ratio:
* *
* Requests the video sink to enforce the video display 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_object_class_install_property (gobject_klass, PROP_FORCE_ASPECT_RATIO,
g_param_spec_boolean ("force-aspect-ratio", "Force Aspect Ratio", g_param_spec_boolean ("force-aspect-ratio", "Force Aspect Ratio",

View file

@ -30,7 +30,7 @@
* The multifdsink element needs to be set into READY, PAUSED or PLAYING state * The multifdsink element needs to be set into READY, PAUSED or PLAYING state
* before operations such as adding clients are possible. * 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 * that allows for more control over what and how much data a client
* initially receives. * initially receives.
* *
@ -62,7 +62,7 @@
* Multifdsink will always keep at least one keyframe in its internal buffers * Multifdsink will always keep at least one keyframe in its internal buffers
* when the sync-mode is set to latest-keyframe. * 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 * property to allow finer control over burst-on-connect behaviour. By selecting
* the 'burst' method a minimum burst size can be chosen, 'burst-keyframe' * the 'burst' method a minimum burst size can be chosen, 'burst-keyframe'
* additionally requires that the burst begin with a keyframe, and * 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 * GstMultiFdSink::handle-read
* *
* Handle read requests from clients and discard the data. * Handle read requests from clients and discard the data.
*
* Since: 0.10.23
*/ */
g_object_class_install_property (gobject_class, PROP_HANDLE_READ, g_object_class_install_property (gobject_class, PROP_HANDLE_READ,
g_param_spec_boolean ("handle-read", "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 * In this callback, @gstmultifdsink has removed all the information
* associated with @fd and it is therefore not possible to call get-stats * 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. * 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] = gst_multi_fd_sink_signals[SIGNAL_CLIENT_FD_REMOVED] =
g_signal_new ("client-fd-removed", G_TYPE_FROM_CLASS (klass), g_signal_new ("client-fd-removed", G_TYPE_FROM_CLASS (klass),

View file

@ -29,7 +29,7 @@
* file descriptors can be added to multihandlesink by emitting the #GstMultiHandleSink::add signal. * 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. * 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 * that allows for more control over what and how much data a client
* initially receives. * initially receives.
* *
@ -61,7 +61,7 @@
* Multisocketsink will always keep at least one keyframe in its internal buffers * Multisocketsink will always keep at least one keyframe in its internal buffers
* when the sync-mode is set to latest-keyframe. * 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 * property to allow finer control over burst-on-connect behaviour. By selecting
* the 'burst' method a minimum burst size can be chosen, 'burst-keyframe' * the 'burst' method a minimum burst size can be chosen, 'burst-keyframe'
* additionally requires that the burst begin with a keyframe, and * 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 * GstMultiHandleSink::resend-streamheader
* *
* Resend the streamheaders to existing clients when they change. * Resend the streamheaders to existing clients when they change.
*
* Since: 0.10.23
*/ */
g_object_class_install_property (gobject_class, PROP_RESEND_STREAMHEADER, g_object_class_install_property (gobject_class, PROP_RESEND_STREAMHEADER,
g_param_spec_boolean ("resend-streamheader", "Resend streamheader", g_param_spec_boolean ("resend-streamheader", "Resend streamheader",

View file

@ -29,7 +29,7 @@
* file descriptors can be added to multioutputsink by emitting the #GstMultiOutputSink::add signal. * 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. * 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 * that allows for more control over what and how much data a client
* initially receives. * initially receives.
* *
@ -61,7 +61,7 @@
* Multioutputsink will always keep at least one keyframe in its internal buffers * Multioutputsink will always keep at least one keyframe in its internal buffers
* when the sync-mode is set to latest-keyframe. * 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 * property to allow finer control over burst-on-connect behaviour. By selecting
* the 'burst' method a minimum burst size can be chosen, 'burst-keyframe' * the 'burst' method a minimum burst size can be chosen, 'burst-keyframe'
* additionally requires that the burst begin with a keyframe, and * 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 * GstMultiOutputSink::handle-read
* *
* Handle read requests from clients and discard the data. * Handle read requests from clients and discard the data.
*
* Since: 0.10.23
*/ */
g_object_class_install_property (gobject_class, PROP_HANDLE_READ, g_object_class_install_property (gobject_class, PROP_HANDLE_READ,
g_param_spec_boolean ("handle-read", "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 * GstMultiOutputSink::resend-streamheader
* *
* Resend the streamheaders to existing clients when they change. * Resend the streamheaders to existing clients when they change.
*
* Since: 0.10.23
*/ */
g_object_class_install_property (gobject_class, PROP_RESEND_STREAMHEADER, g_object_class_install_property (gobject_class, PROP_RESEND_STREAMHEADER,
g_param_spec_boolean ("resend-streamheader", "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 * In this callback, @gstmultioutputsink has removed all the information
* associated with @output and it is therefore not possible to call get-stats * 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. * 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] = gst_multi_output_sink_signals[SIGNAL_CLIENT_OUTPUT_REMOVED] =
g_signal_new ("client-output-removed", G_TYPE_FROM_CLASS (klass), g_signal_new ("client-output-removed", G_TYPE_FROM_CLASS (klass),

View file

@ -29,7 +29,7 @@
* file descriptors can be added to multisocketsink by emitting the #GstMultiSocketSink::add signal. * 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. * 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 * that allows for more control over what and how much data a client
* initially receives. * initially receives.
* *
@ -61,7 +61,7 @@
* Multisocketsink will always keep at least one keyframe in its internal buffers * Multisocketsink will always keep at least one keyframe in its internal buffers
* when the sync-mode is set to latest-keyframe. * 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 * property to allow finer control over burst-on-connect behaviour. By selecting
* the 'burst' method a minimum burst size can be chosen, 'burst-keyframe' * the 'burst' method a minimum burst size can be chosen, 'burst-keyframe'
* additionally requires that the burst begin with a keyframe, and * 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 * In this callback, @gstmultisocketsink has removed all the information
* associated with @socket and it is therefore not possible to call get-stats * 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. * 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] = gst_multi_socket_sink_signals[SIGNAL_CLIENT_SOCKET_REMOVED] =
g_signal_new ("client-socket-removed", G_TYPE_FROM_CLASS (klass), g_signal_new ("client-socket-removed", G_TYPE_FROM_CLASS (klass),

View file

@ -200,8 +200,6 @@ gst_video_rate_class_init (GstVideoRateClass * klass)
* GstVideoRate:skip-to-first: * GstVideoRate:skip-to-first:
* *
* Don't produce buffers before the first one we receive. * 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_object_class_install_property (object_class, PROP_SKIP_TO_FIRST,
g_param_spec_boolean ("skip-to-first", "Skip to first buffer", 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: * GstVideoRate:drop-only:
* *
* Only drop frames, no duplicates are produced. * Only drop frames, no duplicates are produced.
*
* Since: 0.10.36
*/ */
g_object_class_install_property (object_class, PROP_DROP_ONLY, g_object_class_install_property (object_class, PROP_DROP_ONLY,
g_param_spec_boolean ("drop-only", "Only Drop", 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, * Arrange for maximum framerate by dropping frames beyond a certain framerate,
* where the framerate is calculated using a moving average over the * where the framerate is calculated using a moving average over the
* configured. * configured.
*
* Since: 0.10.36
*/ */
g_object_class_install_property (object_class, PROP_AVERAGE_PERIOD, g_object_class_install_property (object_class, PROP_AVERAGE_PERIOD,
g_param_spec_uint64 ("average-period", "Period over which to average", 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: * GstVideoRate:max-rate:
* *
* maximum framerate to pass through * maximum framerate to pass through
*
* Since: 0.10.36
*/ */
g_object_class_install_property (object_class, PROP_MAX_RATE, g_object_class_install_property (object_class, PROP_MAX_RATE,
g_param_spec_int ("max-rate", "maximum framerate", g_param_spec_int ("max-rate", "maximum framerate",

View file

@ -1952,8 +1952,6 @@ gst_ximagesink_class_init (GstXImageSinkClass * klass)
* GstXImageSink:window-width * GstXImageSink:window-width
* *
* Actual width of the video window. * Actual width of the video window.
*
* Since: 0.10.32
*/ */
g_object_class_install_property (gobject_class, PROP_WINDOW_WIDTH, g_object_class_install_property (gobject_class, PROP_WINDOW_WIDTH,
g_param_spec_uint64 ("window-width", "window-width", g_param_spec_uint64 ("window-width", "window-width",
@ -1964,8 +1962,6 @@ gst_ximagesink_class_init (GstXImageSinkClass * klass)
* GstXImageSink:window-height * GstXImageSink:window-height
* *
* Actual height of the video window. * Actual height of the video window.
*
* Since: 0.10.32
*/ */
g_object_class_install_property (gobject_class, PROP_WINDOW_HEIGHT, g_object_class_install_property (gobject_class, PROP_WINDOW_HEIGHT,
g_param_spec_uint64 ("window-height", "window-height", g_param_spec_uint64 ("window-height", "window-height",

View file

@ -1942,8 +1942,6 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
* *
* When enabled, the current frame will always be drawn in response to X * When enabled, the current frame will always be drawn in response to X
* Expose. * Expose.
*
* Since: 0.10.14
*/ */
g_object_class_install_property (gobject_class, PROP_HANDLE_EXPOSE, g_object_class_install_property (gobject_class, PROP_HANDLE_EXPOSE,
g_param_spec_boolean ("handle-expose", "Handle expose", g_param_spec_boolean ("handle-expose", "Handle expose",
@ -1955,8 +1953,6 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
* GstXvImageSink:double-buffer * GstXvImageSink:double-buffer
* *
* Whether to double-buffer the output. * Whether to double-buffer the output.
*
* Since: 0.10.14
*/ */
g_object_class_install_property (gobject_class, PROP_DOUBLE_BUFFER, g_object_class_install_property (gobject_class, PROP_DOUBLE_BUFFER,
g_param_spec_boolean ("double-buffer", "Double-buffer", g_param_spec_boolean ("double-buffer", "Double-buffer",
@ -1966,8 +1962,6 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
* GstXvImageSink:autopaint-colorkey * GstXvImageSink:autopaint-colorkey
* *
* Whether to autofill overlay with colorkey * Whether to autofill overlay with colorkey
*
* Since: 0.10.21
*/ */
g_object_class_install_property (gobject_class, PROP_AUTOPAINT_COLORKEY, g_object_class_install_property (gobject_class, PROP_AUTOPAINT_COLORKEY,
g_param_spec_boolean ("autopaint-colorkey", "Autofill with colorkey", g_param_spec_boolean ("autopaint-colorkey", "Autofill with colorkey",
@ -1977,8 +1971,6 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
* GstXvImageSink:colorkey * GstXvImageSink:colorkey
* *
* Color to use for the overlay mask. * Color to use for the overlay mask.
*
* Since: 0.10.21
*/ */
g_object_class_install_property (gobject_class, PROP_COLORKEY, g_object_class_install_property (gobject_class, PROP_COLORKEY,
g_param_spec_int ("colorkey", "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 * Draw black borders when using GstXvImageSink:force-aspect-ratio to fill
* unused parts of the video area. * unused parts of the video area.
*
* Since: 0.10.21
*/ */
g_object_class_install_property (gobject_class, PROP_DRAW_BORDERS, g_object_class_install_property (gobject_class, PROP_DRAW_BORDERS,
g_param_spec_boolean ("draw-borders", "Colorkey", g_param_spec_boolean ("draw-borders", "Colorkey",
@ -2002,8 +1992,6 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
* GstXvImageSink:window-width * GstXvImageSink:window-width
* *
* Actual width of the video window. * Actual width of the video window.
*
* Since: 0.10.32
*/ */
g_object_class_install_property (gobject_class, PROP_WINDOW_WIDTH, g_object_class_install_property (gobject_class, PROP_WINDOW_WIDTH,
g_param_spec_uint64 ("window-width", "window-width", g_param_spec_uint64 ("window-width", "window-width",
@ -2014,8 +2002,6 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
* GstXvImageSink:window-height * GstXvImageSink:window-height
* *
* Actual height of the video window. * Actual height of the video window.
*
* Since: 0.10.32
*/ */
g_object_class_install_property (gobject_class, PROP_WINDOW_HEIGHT, g_object_class_install_property (gobject_class, PROP_WINDOW_HEIGHT,
g_param_spec_uint64 ("window-height", "window-height", g_param_spec_uint64 ("window-height", "window-height",