mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst/playback/gstplaybasebin.c: Fix property doc markup (its not a signal).
Original commit message from CVS: * gst/playback/gstplaybasebin.c: Fix property doc markup (its not a signal). * sys/xvimage/xvimagesink.c: Add since tag for new proeprties (also add sice tags fro the last two other additions).
This commit is contained in:
parent
95376f9130
commit
feea3e0b1c
3 changed files with 39 additions and 1 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2008-07-29 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
* gst/playback/gstplaybasebin.c:
|
||||||
|
Fix property doc markup (its not a signal).
|
||||||
|
|
||||||
|
* sys/xvimage/xvimagesink.c:
|
||||||
|
Add since tag for new proeprties (also add sice tags fro the last two
|
||||||
|
other additions).
|
||||||
|
|
||||||
2008-07-29 Stefan Kost <ensonic@users.sf.net>
|
2008-07-29 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
* sys/xvimage/xvimagesink.c:
|
* sys/xvimage/xvimagesink.c:
|
||||||
|
|
|
@ -201,7 +201,7 @@ gst_play_base_bin_class_init (GstPlayBaseBinClass * klass)
|
||||||
"ISO-8859-15 will be assumed.", NULL,
|
"ISO-8859-15 will be assumed.", NULL,
|
||||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
/**
|
/**
|
||||||
* GstPlayBin::connection-speed
|
* GstPlayBin:connection-speed
|
||||||
*
|
*
|
||||||
* Network connection speed in kbps (0 = unknown)
|
* Network connection speed in kbps (0 = unknown)
|
||||||
*
|
*
|
||||||
|
|
|
@ -3168,19 +3168,48 @@ gst_xvimagesink_class_init (GstXvImageSinkClass * klass)
|
||||||
g_param_spec_string ("device-name", "Adaptor name",
|
g_param_spec_string ("device-name", "Adaptor name",
|
||||||
"The name of the video adaptor", NULL,
|
"The name of the video adaptor", NULL,
|
||||||
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
||||||
|
/**
|
||||||
|
* GstXvImageSink:handle-expose
|
||||||
|
*
|
||||||
|
* 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, ARG_HANDLE_EXPOSE,
|
g_object_class_install_property (gobject_class, ARG_HANDLE_EXPOSE,
|
||||||
g_param_spec_boolean ("handle-expose", "Handle expose",
|
g_param_spec_boolean ("handle-expose", "Handle expose",
|
||||||
"When enabled, "
|
"When enabled, "
|
||||||
"the current frame will always be drawn in response to X Expose "
|
"the current frame will always be drawn in response to X Expose "
|
||||||
"events", TRUE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
"events", TRUE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
|
/**
|
||||||
|
* GstXvImageSink:double-buffer
|
||||||
|
*
|
||||||
|
* Whether to double-buffer the output.
|
||||||
|
*
|
||||||
|
* Since: 0.10.14
|
||||||
|
*/
|
||||||
g_object_class_install_property (gobject_class, ARG_DOUBLE_BUFFER,
|
g_object_class_install_property (gobject_class, ARG_DOUBLE_BUFFER,
|
||||||
g_param_spec_boolean ("double-buffer", "Double-buffer",
|
g_param_spec_boolean ("double-buffer", "Double-buffer",
|
||||||
"Whether to double-buffer the output", TRUE,
|
"Whether to double-buffer the output", TRUE,
|
||||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
|
/**
|
||||||
|
* GstXvImageSink:autopaint-colorkey
|
||||||
|
*
|
||||||
|
* Whether to autofill overlay with colorkey
|
||||||
|
*
|
||||||
|
* Since: 0.10.21
|
||||||
|
*/
|
||||||
g_object_class_install_property (gobject_class, ARG_AUTOPAINT_COLORKEY,
|
g_object_class_install_property (gobject_class, ARG_AUTOPAINT_COLORKEY,
|
||||||
g_param_spec_boolean ("autopaint-colorkey", "Autofill with colorkey",
|
g_param_spec_boolean ("autopaint-colorkey", "Autofill with colorkey",
|
||||||
"Whether to autofill overlay with colorkey", TRUE,
|
"Whether to autofill overlay with colorkey", TRUE,
|
||||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
|
/**
|
||||||
|
* GstXvImageSink:colorkey
|
||||||
|
*
|
||||||
|
* Color to use for the overlay mask.
|
||||||
|
*
|
||||||
|
* Since: 0.10.21
|
||||||
|
*/
|
||||||
g_object_class_install_property (gobject_class, ARG_COLORKEY,
|
g_object_class_install_property (gobject_class, ARG_COLORKEY,
|
||||||
g_param_spec_int ("colorkey", "Colorkey",
|
g_param_spec_int ("colorkey", "Colorkey",
|
||||||
"Color to use for the overlay mask", G_MININT, G_MAXINT, 0,
|
"Color to use for the overlay mask", G_MININT, G_MAXINT, 0,
|
||||||
|
|
Loading…
Reference in a new issue