diff --git a/ChangeLog b/ChangeLog index 533ed3bcad..c148f31ccc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-03-10 Michael Smith + + * libs/gst/dataprotocol/dataprotocol.c: + Fix docs for dataprocotol to not get the return types completely + wrong for a few functions. + 2006-03-09 Tim-Philipp Müller * docs/gst/gstreamer-sections.txt: diff --git a/common b/common index d576cc6779..9200457d08 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit d576cc6779aa9555121d4c78ab69cc620fae3e2b +Subproject commit 9200457d08a57f0d7eaeb56915804fa8faf14418 diff --git a/libs/gst/dataprotocol/dataprotocol.c b/libs/gst/dataprotocol/dataprotocol.c index 1316682b30..f592dcc180 100644 --- a/libs/gst/dataprotocol/dataprotocol.c +++ b/libs/gst/dataprotocol/dataprotocol.c @@ -413,7 +413,7 @@ gst_dp_packet_from_event (const GstEvent * event, GstDPHeaderFlag flags, * Use this function if you want to pre-allocate a buffer based on the * packet header to read the packet payload in to. * - * Returns: %TRUE if the buffer was successfully created. + * Returns: A #GstBuffer if the buffer was successfully created, or NULL. */ GstBuffer * gst_dp_buffer_from_header (guint header_length, const guint8 * header) @@ -441,7 +441,8 @@ gst_dp_buffer_from_header (guint header_length, const guint8 * header) * * Creates a newly allocated #GstCaps from the given packet. * - * Returns: %TRUE if the caps was successfully created. + * Returns: A #GstCaps containing the caps represented in the packet, + * or NULL if the packet could not be converted. */ GstCaps * gst_dp_caps_from_packet (guint header_length, const guint8 * header, @@ -469,7 +470,8 @@ gst_dp_caps_from_packet (guint header_length, const guint8 * header, * * Creates a newly allocated #GstEvent from the given packet. * - * Returns: %TRUE if the event was successfully created. + * Returns: A #GstEvent if the event was successfully created, + * or NULL if an event could not be read from the payload. */ GstEvent * gst_dp_event_from_packet (guint header_length, const guint8 * header,