mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
Fix incorrect return type in several functions
All these should return GstFlowReturn, not gboolean
This commit is contained in:
parent
6106816f50
commit
9758f25430
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ static GstCaps *gst_gl_view_convert_element_fixate_caps (GstBaseTransform *
|
||||||
static GstFlowReturn
|
static GstFlowReturn
|
||||||
gst_gl_view_convert_element_submit_input_buffer (GstBaseTransform * trans,
|
gst_gl_view_convert_element_submit_input_buffer (GstBaseTransform * trans,
|
||||||
gboolean is_discont, GstBuffer * input);
|
gboolean is_discont, GstBuffer * input);
|
||||||
static gboolean
|
static GstFlowReturn
|
||||||
gst_gl_view_convert_element_generate_output_buffer (GstBaseTransform * bt,
|
gst_gl_view_convert_element_generate_output_buffer (GstBaseTransform * bt,
|
||||||
GstBuffer ** outbuf);
|
GstBuffer ** outbuf);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue