mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-09 16:02:59 +00:00
compile fixes
Original commit message from CVS: compile fixes
This commit is contained in:
parent
a7d05f504a
commit
558f72abc6
1 changed files with 4 additions and 4 deletions
|
@ -765,19 +765,19 @@ gst_xvimagesink_change_state (GstElement *element)
|
||||||
|
|
||||||
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
||||||
return GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
||||||
|
|
||||||
return GST_STATE_SUCCESS;
|
return GST_STATE_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_xvimagesink_chain (GstPad *pad, GstData *data)
|
gst_xvimagesink_chain (GstPad *pad, GstData *data)
|
||||||
{
|
{
|
||||||
GstBuffer *buf;
|
GstBuffer *buf = NULL;
|
||||||
GstXvImageSink *xvimagesink;
|
GstXvImageSink *xvimagesink;
|
||||||
|
|
||||||
g_return_if_fail (pad != NULL);
|
g_return_if_fail (pad != NULL);
|
||||||
g_return_if_fail (GST_IS_PAD (pad));
|
g_return_if_fail (GST_IS_PAD (pad));
|
||||||
g_return_if_fail (buf != NULL);
|
g_return_if_fail (data != NULL);
|
||||||
|
|
||||||
xvimagesink = GST_XVIMAGESINK (gst_pad_get_parent (pad));
|
xvimagesink = GST_XVIMAGESINK (gst_pad_get_parent (pad));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue