docs: remove dummy function declarations with G_INLINE_FUNCTION for gtk-doc
gtk-doc can handle static inline functions just fine these days, there's no need for this stuff any more.
This commit is contained in:
parent
4d1726fddd
commit
7ffd9ce291
@ -174,10 +174,6 @@ GstMIKEYPayload * gst_mikey_payload_new (GstMIKEYPayloadType type);
|
|||||||
*
|
*
|
||||||
* Since: 1.4
|
* Since: 1.4
|
||||||
*/
|
*/
|
||||||
#ifdef _FOOL_GTK_DOC_
|
|
||||||
G_INLINE_FUNC GstMIKEYPayload * gst_mikey_payload_ref (GstMIKEYPayload * payload);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static inline GstMIKEYPayload *
|
static inline GstMIKEYPayload *
|
||||||
gst_mikey_payload_ref (GstMIKEYPayload * payload)
|
gst_mikey_payload_ref (GstMIKEYPayload * payload)
|
||||||
{
|
{
|
||||||
@ -192,10 +188,6 @@ gst_mikey_payload_ref (GstMIKEYPayload * payload)
|
|||||||
*
|
*
|
||||||
* Since: 1.4
|
* Since: 1.4
|
||||||
*/
|
*/
|
||||||
#ifdef _FOOL_GTK_DOC_
|
|
||||||
G_INLINE_FUNC void gst_mikey_payload_unref (GstMIKEYPayload * payload);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
gst_mikey_payload_unref (GstMIKEYPayload * payload)
|
gst_mikey_payload_unref (GstMIKEYPayload * payload)
|
||||||
{
|
{
|
||||||
@ -212,10 +204,6 @@ gst_mikey_payload_unref (GstMIKEYPayload * payload)
|
|||||||
*
|
*
|
||||||
* Since: 1.4
|
* Since: 1.4
|
||||||
*/
|
*/
|
||||||
#ifdef _FOOL_GTK_DOC_
|
|
||||||
G_INLINE_FUNC GstMIKEYPayload * gst_mikey_payload_copy (const GstMIKEYPayload * payload);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static inline GstMIKEYPayload *
|
static inline GstMIKEYPayload *
|
||||||
gst_mikey_payload_copy (const GstMIKEYPayload * payload)
|
gst_mikey_payload_copy (const GstMIKEYPayload * payload)
|
||||||
{
|
{
|
||||||
@ -572,10 +560,6 @@ gchar * gst_mikey_message_base64_encode (GstMIKEYMessage
|
|||||||
*
|
*
|
||||||
* Since: 1.4
|
* Since: 1.4
|
||||||
*/
|
*/
|
||||||
#ifdef _FOOL_GTK_DOC_
|
|
||||||
G_INLINE_FUNC GstMIKEYMessage * gst_mikey_message_ref (GstMIKEYMessage * message);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static inline GstMIKEYMessage *
|
static inline GstMIKEYMessage *
|
||||||
gst_mikey_message_ref (GstMIKEYMessage * message)
|
gst_mikey_message_ref (GstMIKEYMessage * message)
|
||||||
{
|
{
|
||||||
@ -590,10 +574,6 @@ gst_mikey_message_ref (GstMIKEYMessage * message)
|
|||||||
*
|
*
|
||||||
* Since: 1.4
|
* Since: 1.4
|
||||||
*/
|
*/
|
||||||
#ifdef _FOOL_GTK_DOC_
|
|
||||||
G_INLINE_FUNC void gst_mikey_message_unref (GstMIKEYMessage * message);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
gst_mikey_message_unref (GstMIKEYMessage * message)
|
gst_mikey_message_unref (GstMIKEYMessage * message)
|
||||||
{
|
{
|
||||||
@ -610,10 +590,6 @@ gst_mikey_message_unref (GstMIKEYMessage * message)
|
|||||||
*
|
*
|
||||||
* Since: 1.4
|
* Since: 1.4
|
||||||
*/
|
*/
|
||||||
#ifdef _FOOL_GTK_DOC_
|
|
||||||
G_INLINE_FUNC GstMIKEYMessage * gst_mikey_message_copy (const GstMIKEYMessage * message);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static inline GstMIKEYMessage *
|
static inline GstMIKEYMessage *
|
||||||
gst_mikey_message_copy (const GstMIKEYMessage * message)
|
gst_mikey_message_copy (const GstMIKEYMessage * message)
|
||||||
{
|
{
|
||||||
|
@ -58,11 +58,6 @@ typedef struct _GstVideoOverlayRectangle GstVideoOverlayRectangle;
|
|||||||
*
|
*
|
||||||
* Returns: (transfer full): @comp
|
* Returns: (transfer full): @comp
|
||||||
*/
|
*/
|
||||||
#ifdef _FOOL_GTK_DOC_
|
|
||||||
G_INLINE_FUNC GstVideoOverlayRectangle *
|
|
||||||
gst_video_overlay_rectangle_ref (GstVideoOverlayRectangle * comp);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static inline GstVideoOverlayRectangle *
|
static inline GstVideoOverlayRectangle *
|
||||||
gst_video_overlay_rectangle_ref (GstVideoOverlayRectangle * comp)
|
gst_video_overlay_rectangle_ref (GstVideoOverlayRectangle * comp)
|
||||||
{
|
{
|
||||||
@ -76,11 +71,6 @@ gst_video_overlay_rectangle_ref (GstVideoOverlayRectangle * comp)
|
|||||||
* Decreases the refcount of the rectangle. If the refcount reaches 0, the
|
* Decreases the refcount of the rectangle. If the refcount reaches 0, the
|
||||||
* rectangle will be freed.
|
* rectangle will be freed.
|
||||||
*/
|
*/
|
||||||
#ifdef _FOOL_GTK_DOC_
|
|
||||||
G_INLINE_FUNC void
|
|
||||||
gst_video_overlay_rectangle_unref (GstVideoOverlayRectangle * comp);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
gst_video_overlay_rectangle_unref (GstVideoOverlayRectangle * comp)
|
gst_video_overlay_rectangle_unref (GstVideoOverlayRectangle * comp)
|
||||||
{
|
{
|
||||||
@ -210,11 +200,6 @@ typedef struct _GstVideoOverlayComposition GstVideoOverlayComposition;
|
|||||||
*
|
*
|
||||||
* Returns: (transfer full): @comp
|
* Returns: (transfer full): @comp
|
||||||
*/
|
*/
|
||||||
#ifdef _FOOL_GTK_DOC_
|
|
||||||
G_INLINE_FUNC GstVideoOverlayComposition *
|
|
||||||
gst_video_overlay_composition_ref (GstVideoOverlayComposition * comp);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static inline GstVideoOverlayComposition *
|
static inline GstVideoOverlayComposition *
|
||||||
gst_video_overlay_composition_ref (GstVideoOverlayComposition * comp)
|
gst_video_overlay_composition_ref (GstVideoOverlayComposition * comp)
|
||||||
{
|
{
|
||||||
@ -228,11 +213,6 @@ gst_video_overlay_composition_ref (GstVideoOverlayComposition * comp)
|
|||||||
* Decreases the refcount of the composition. If the refcount reaches 0, the
|
* Decreases the refcount of the composition. If the refcount reaches 0, the
|
||||||
* composition will be freed.
|
* composition will be freed.
|
||||||
*/
|
*/
|
||||||
#ifdef _FOOL_GTK_DOC_
|
|
||||||
G_INLINE_FUNC void
|
|
||||||
gst_video_overlay_composition_unref (GstVideoOverlayComposition * comp);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
gst_video_overlay_composition_unref (GstVideoOverlayComposition * comp)
|
gst_video_overlay_composition_unref (GstVideoOverlayComposition * comp)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user