mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
playbin3: Clarify documentation of combiner properties
This commit is contained in:
parent
4ed0708f78
commit
7b8cfb9e53
1 changed files with 12 additions and 10 deletions
|
@ -784,32 +784,34 @@ gst_play_bin3_class_init (GstPlayBin3Class * klass)
|
|||
/**
|
||||
* GstPlayBin3:video-stream-combiner
|
||||
*
|
||||
* Get or set the current video stream combiner. By default, an input-selector
|
||||
* is created and deleted as-needed.
|
||||
* Get or set the current video stream combiner. By default, no
|
||||
* element is used and the selected stream is used directly.
|
||||
*/
|
||||
g_object_class_install_property (gobject_klass, PROP_VIDEO_STREAM_COMBINER,
|
||||
g_param_spec_object ("video-stream-combiner", "Video stream combiner",
|
||||
"Current video stream combiner (NULL = input-selector)",
|
||||
"Current video stream combiner (default: none)",
|
||||
GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
|
||||
/**
|
||||
* GstPlayBin3:audio-stream-combiner
|
||||
*
|
||||
* Get or set the current audio stream combiner. By default, an input-selector
|
||||
* is created and deleted as-needed.
|
||||
* Get or set the current audio stream combiner. By default, no
|
||||
* element is used and the selected stream is used directly.
|
||||
*/
|
||||
g_object_class_install_property (gobject_klass, PROP_AUDIO_STREAM_COMBINER,
|
||||
g_param_spec_object ("audio-stream-combiner", "Audio stream combiner",
|
||||
"Current audio stream combiner (NULL = input-selector)",
|
||||
"Current audio stream combiner (default: none))",
|
||||
GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
|
||||
/**
|
||||
* GstPlayBin3:text-stream-combiner
|
||||
*
|
||||
* Get or set the current text stream combiner. By default, an input-selector
|
||||
* is created and deleted as-needed.
|
||||
* Get or set the current text stream combiner. By default, no
|
||||
* element is used and the selected stream is used directly.
|
||||
*/
|
||||
g_object_class_install_property (gobject_klass, PROP_TEXT_STREAM_COMBINER,
|
||||
g_param_spec_object ("text-stream-combiner", "Text stream combiner",
|
||||
"Current text stream combiner (NULL = input-selector)",
|
||||
"Current text stream combiner (default: none)",
|
||||
GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue