summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2020-04-26 13:47:27 +0200
committerVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2020-04-26 19:26:32 +0200
commit851557af2004dccdcddb37d3acf44e4598e94dfb (patch)
tree58996babefab0f14d04cb96469a8d4a639db87db /gst-libs
parent4d585c64d11a12eb873459eb627d642c3f754b61 (diff)
downloadgstreamer-plugins-bad-851557af2004dccdcddb37d3acf44e4598e94dfb.tar.gz
codecs: fix gir generation
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1218>
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/codecs/gsth264picture.c14
-rw-r--r--gst-libs/gst/codecs/gsth265picture.c8
-rw-r--r--gst-libs/gst/codecs/gstvp9picture.c2
3 files changed, 15 insertions, 9 deletions
diff --git a/gst-libs/gst/codecs/gsth264picture.c b/gst-libs/gst/codecs/gsth264picture.c
index 16f7a209f..2d1d6c0d1 100644
--- a/gst-libs/gst/codecs/gsth264picture.c
+++ b/gst-libs/gst/codecs/gsth264picture.c
@@ -110,7 +110,7 @@ struct _GstH264Dpb
};
/**
- * gst_h264_dpb_new:
+ * gst_h264_dpb_new: (skip)
*
* Create new #GstH264Dpb
*
@@ -401,7 +401,8 @@ gst_h264_dpb_get_lowest_frame_num_short_ref (GstH264Dpb * dpb)
/**
* gst_h264_dpb_get_pictures_not_outputted:
* @dpb: a #GstH264Dpb
- * @out: (out) (transfer full): a list of #GstH264Picture
+ * @out: (out) (element-type GstH264Picture) (transfer full): a list
+ * of #GstH264Picture
*
* Retrieve all not-outputted pictures from @dpb
*/
@@ -425,7 +426,8 @@ gst_h264_dpb_get_pictures_not_outputted (GstH264Dpb * dpb, GList ** out)
/**
* gst_h264_dpb_get_pictures_short_term_ref:
* @dpb: a #GstH264Dpb
- * @out: (out) (transfer full): a list of #GstH264Picture
+ * @out: (out) (element-type GstH264Picture) (transfer full): a list
+ * of #GstH264Picture
*
* Retrieve all short-term reference pictures from @dpb
*/
@@ -449,7 +451,8 @@ gst_h264_dpb_get_pictures_short_term_ref (GstH264Dpb * dpb, GList ** out)
/**
* gst_h264_dpb_get_pictures_long_term_ref:
* @dpb: a #GstH264Dpb
- * @out: (out) (transfer full): a list of #GstH264Picture
+ * @out: (out) (element-type GstH264Picture) (transfer full): a list
+ * of #GstH264Picture
*
* Retrieve all long-term reference pictures from @dpb
*/
@@ -474,7 +477,8 @@ gst_h264_dpb_get_pictures_long_term_ref (GstH264Dpb * dpb, GList ** out)
* gst_h264_dpb_get_pictures_all:
* @dpb: a #GstH264Dpb
*
- * Return: (transfer full): a #GArray of #GstH264Picture stored in @dpb
+ * Return: (element-type GstH264Picture) (transfer full): a #GArray of
+ * #GstH264Picture stored in @dpb
*/
GArray *
gst_h264_dpb_get_pictures_all (GstH264Dpb * dpb)
diff --git a/gst-libs/gst/codecs/gsth265picture.c b/gst-libs/gst/codecs/gsth265picture.c
index 41eaa43a1..a405e9e9d 100644
--- a/gst-libs/gst/codecs/gsth265picture.c
+++ b/gst-libs/gst/codecs/gsth265picture.c
@@ -108,7 +108,7 @@ struct _GstH265Dpb
};
/**
- * gst_h265_dpb_new:
+ * gst_h265_dpb_new: (skip)
*
* Create new #GstH265Dpb
*
@@ -422,7 +422,8 @@ gst_h265_dpb_get_long_ref_by_poc (GstH265Dpb * dpb, gint poc)
/**
* gst_h265_dpb_get_pictures_not_outputted:
* @dpb: a #GstH265Dpb
- * @out: (out) (transfer full): a list of #GstH265Dpb
+ * @out: (out) (element-type GstH265Picture) (transfer full): a list
+ * of #GstH265Dpb
*
* Retrieve all not-outputted pictures from @dpb
*/
@@ -447,7 +448,8 @@ gst_h265_dpb_get_pictures_not_outputted (GstH265Dpb * dpb, GList ** out)
* gst_h265_dpb_get_pictures_all:
* @dpb: a #GstH265Dpb
*
- * Return: (transfer full): a #GArray of #GstH265Picture stored in @dpb
+ * Return: (element-type GstH265Picture) (transfer full): a #GArray of
+ * #GstH265Picture stored in @dpb
*/
GArray *
gst_h265_dpb_get_pictures_all (GstH265Dpb * dpb)
diff --git a/gst-libs/gst/codecs/gstvp9picture.c b/gst-libs/gst/codecs/gstvp9picture.c
index adddc1ff4..0609d37cf 100644
--- a/gst-libs/gst/codecs/gstvp9picture.c
+++ b/gst-libs/gst/codecs/gstvp9picture.c
@@ -104,7 +104,7 @@ gst_vp9_picture_get_user_data (GstVp9Picture * picture)
}
/**
- * gst_vp9_dpb_new:
+ * gst_vp9_dpb_new: (skip)
*
* Create new #GstVp9Dpb
*