compile fixes

Original commit message from CVS:
compile fixes
This commit is contained in:
Thomas Vander Stichele 2003-12-14 11:42:16 +00:00
parent a7d05f504a
commit 558f72abc6

View file

@ -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));