summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2017-10-03 13:54:25 -0700
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2017-10-03 13:54:25 -0700
commit402159fb8807b6e5a9301213d59ebcc0578f84ad (patch)
treeb78a20e484f92242e81909b28792bafab914d429
parentebad8c0094597c98447d8afb4ba73a757621359f (diff)
Use proper GtkDoc notation for NULL/FALSE/TRUE
-rw-r--r--libs/gst/base/gstbasetransform.h2
-rw-r--r--libs/gst/net/gstnettimepacket.c2
-rw-r--r--libs/gst/net/gstntppacket.c2
-rw-r--r--plugins/elements/gstidentity.c4
4 files changed, 5 insertions, 5 deletions
diff --git a/libs/gst/base/gstbasetransform.h b/libs/gst/base/gstbasetransform.h
index 9c4f901d1..a89a70048 100644
--- a/libs/gst/base/gstbasetransform.h
+++ b/libs/gst/base/gstbasetransform.h
@@ -198,7 +198,7 @@ struct _GstBaseTransform {
* member variable. If the buffer is dropped due to QoS, it returns
* GST_BASE_TRANSFORM_FLOW_DROPPED. If this input buffer is not
* 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
* until it either generates an error or fails to generate an output
* buffer. The default implementation takes the contents of the
diff --git a/libs/gst/net/gstnettimepacket.c b/libs/gst/net/gstnettimepacket.c
index e103e16e8..f914988d3 100644
--- a/libs/gst/net/gstnettimepacket.c
+++ b/libs/gst/net/gstnettimepacket.c
@@ -53,7 +53,7 @@ G_DEFINE_BOXED_TYPE (GstNetTimePacket, gst_net_time_packet,
* caller is responsible for ensuring that @buffer is at least
* #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.
*
* MT safe. Caller owns return value (gst_net_time_packet_free to free).
diff --git a/libs/gst/net/gstntppacket.c b/libs/gst/net/gstntppacket.c
index 79b95ec05..8d88d75c1 100644
--- a/libs/gst/net/gstntppacket.c
+++ b/libs/gst/net/gstntppacket.c
@@ -85,7 +85,7 @@ gst_clock_time_to_ntp_timestamp_fraction (GstClockTime gst)
* caller is responsible for ensuring that @buffer is at least
* #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.
*
* MT safe. Caller owns return value (gst_ntp_packet_free to free).
diff --git a/plugins/elements/gstidentity.c b/plugins/elements/gstidentity.c
index d44709ec2..a3eb5cd1c 100644
--- a/plugins/elements/gstidentity.c
+++ b/plugins/elements/gstidentity.c
@@ -224,8 +224,8 @@ gst_identity_class_init (GstIdentityClass * klass)
/**
* GstIdentity:signal-handoffs
*
- * 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.
+ * 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.
*/
g_object_class_install_property (gobject_class, PROP_SIGNAL_HANDOFFS,
g_param_spec_boolean ("signal-handoffs",