+2006-05-10 Tim-Philipp Müller <tim at centricular dot net>
+
+ * gst/gstbuffer.h:
+ * gst/gstevent.h:
+ * gst/gstmessage.h:
+ Make gtk-doc generate docs for our inlined gst_buffer_ref(),
+ gst_event_ref() and gst_message_ref() functions again
+ (ugly hack, please do fix if there's a better way besides
+ overrides.txt, which doesn't seem to work).
+
2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
* libs/gst/check/gstcheck.h:
* Increases the refcount of the given buffer by one.
*
* Note that the refcount affects the writeability
- * of @buf, see gst_buffer_is_writable(). It is
+ * of @buf and its metadata, see gst_buffer_is_writable() and
+ * gst_buffer_is_metadata_writable(). It is
* important to note that keeping additional references to
* GstBuffer instances can potentially increase the number
* of memcpy operations in a pipeline.
*
* Returns: @buf
*/
+#ifdef _FOOL_GTK_DOC_
+G_INLINE_FUNC GstBuffer * gst_buffer_ref (GstBuffer * buf);
+#endif
+
static inline GstBuffer *
gst_buffer_ref (GstBuffer * buf)
{
*
* Increase the refcount of this event.
*/
+#ifdef _FOOL_GTK_DOC_
+G_INLINE_FUNC GstEvent * gst_event_ref (GstEvent * ev);
+#endif
+
static inline GstEvent *
gst_event_ref (GstEvent * ev)
{
* Convenience macro to increase the reference count of the message. Returns the
* reffed message.
*/
+#ifdef _FOOL_GTK_DOC_
+G_INLINE_FUNC GstMessage * gst_message_ref (GstMessage * msg);
+#endif
+
static inline GstMessage *
gst_message_ref (GstMessage * msg)
{