From ebd4ec93b1b9dd28c5a073405fc26aa1659a5b2a Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Mon, 9 Dec 2024 22:12:21 +0900 Subject: [PATCH] vecdeque: Fix documentation of push_tail_struct() Part-of: --- girs/Gst-1.0.gir | 7 ++++++- subprojects/gstreamer/gst/gstvecdeque.c | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/girs/Gst-1.0.gir b/girs/Gst-1.0.gir index 1eeb789dcd..d676d5baa2 100644 --- a/girs/Gst-1.0.gir +++ b/girs/Gst-1.0.gir @@ -52408,16 +52408,21 @@ to call gst_vec_deque_sort() first. - + + Pushes the element at address @p_struct to the tail of the queue @array +(Copies the contents of a structure of the struct_size specified when +creating the queue into the array). + a #GstVecDeque object + address of element or structure to push to the tail of the queue diff --git a/subprojects/gstreamer/gst/gstvecdeque.c b/subprojects/gstreamer/gst/gstvecdeque.c index 356dcce2ac..88483a7738 100644 --- a/subprojects/gstreamer/gst/gstvecdeque.c +++ b/subprojects/gstreamer/gst/gstvecdeque.c @@ -388,7 +388,7 @@ gst_vec_deque_do_expand (GstVecDeque * array) } /** - * gst_vec_deque_push_element_tail: (skip) + * gst_vec_deque_push_tail_struct: (skip) * @array: a #GstVecDeque object * @p_struct: address of element or structure to push to the tail of the queue *