mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 11:15:31 +00:00
Use proper GtkDoc notation for NULL/FALSE/TRUE
This commit is contained in:
parent
ebad8c0094
commit
402159fb88
4 changed files with 5 additions and 5 deletions
|
@ -198,7 +198,7 @@ struct _GstBaseTransform {
|
||||||
* member variable. If the buffer is dropped due to QoS, it returns
|
* member variable. If the buffer is dropped due to QoS, it returns
|
||||||
* GST_BASE_TRANSFORM_FLOW_DROPPED. If this input buffer is not
|
* GST_BASE_TRANSFORM_FLOW_DROPPED. If this input buffer is not
|
||||||
* contiguous with any previous input buffer, then @is_discont
|
* contiguous with any previous input buffer, then @is_discont
|
||||||
* is set to #TRUE. (Since 1.6)
|
* is set to %TRUE. (Since 1.6)
|
||||||
* @generate_output: Called after each new input buffer is submitted repeatedly
|
* @generate_output: Called after each new input buffer is submitted repeatedly
|
||||||
* until it either generates an error or fails to generate an output
|
* until it either generates an error or fails to generate an output
|
||||||
* buffer. The default implementation takes the contents of the
|
* buffer. The default implementation takes the contents of the
|
||||||
|
|
|
@ -53,7 +53,7 @@ G_DEFINE_BOXED_TYPE (GstNetTimePacket, gst_net_time_packet,
|
||||||
* caller is responsible for ensuring that @buffer is at least
|
* caller is responsible for ensuring that @buffer is at least
|
||||||
* #GST_NET_TIME_PACKET_SIZE bytes long.
|
* #GST_NET_TIME_PACKET_SIZE bytes long.
|
||||||
*
|
*
|
||||||
* If @buffer is #NULL, the local and remote times will be set to
|
* If @buffer is %NULL, the local and remote times will be set to
|
||||||
* #GST_CLOCK_TIME_NONE.
|
* #GST_CLOCK_TIME_NONE.
|
||||||
*
|
*
|
||||||
* MT safe. Caller owns return value (gst_net_time_packet_free to free).
|
* MT safe. Caller owns return value (gst_net_time_packet_free to free).
|
||||||
|
|
|
@ -85,7 +85,7 @@ gst_clock_time_to_ntp_timestamp_fraction (GstClockTime gst)
|
||||||
* caller is responsible for ensuring that @buffer is at least
|
* caller is responsible for ensuring that @buffer is at least
|
||||||
* #GST_NTP_PACKET_SIZE bytes long.
|
* #GST_NTP_PACKET_SIZE bytes long.
|
||||||
*
|
*
|
||||||
* If @buffer is #NULL, the local and remote times will be set to
|
* If @buffer is %NULL, the local and remote times will be set to
|
||||||
* #GST_CLOCK_TIME_NONE.
|
* #GST_CLOCK_TIME_NONE.
|
||||||
*
|
*
|
||||||
* MT safe. Caller owns return value (gst_ntp_packet_free to free).
|
* MT safe. Caller owns return value (gst_ntp_packet_free to free).
|
||||||
|
|
|
@ -224,8 +224,8 @@ gst_identity_class_init (GstIdentityClass * klass)
|
||||||
/**
|
/**
|
||||||
* GstIdentity:signal-handoffs
|
* GstIdentity:signal-handoffs
|
||||||
*
|
*
|
||||||
* If set to #TRUE, the identity will emit a handoff signal when handling a buffer.
|
* If set to %TRUE, the identity will emit a handoff signal when handling a buffer.
|
||||||
* When set to #FALSE, no signal will be emitted, which might improve performance.
|
* When set to %FALSE, no signal will be emitted, which might improve performance.
|
||||||
*/
|
*/
|
||||||
g_object_class_install_property (gobject_class, PROP_SIGNAL_HANDOFFS,
|
g_object_class_install_property (gobject_class, PROP_SIGNAL_HANDOFFS,
|
||||||
g_param_spec_boolean ("signal-handoffs",
|
g_param_spec_boolean ("signal-handoffs",
|
||||||
|
|
Loading…
Reference in a new issue