mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-10 08:22:32 +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
|
@ -772,12 +772,12 @@ gst_xvimagesink_change_state (GstElement *element)
|
||||||
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