osxvideosink: clear rectangle structures before use

This commit is contained in:
Wim Taymans 2014-12-16 13:25:01 +01:00
parent 3dae65ede8
commit 0b881ab2ce

View file

@ -587,7 +587,9 @@ gst_osx_video_sink_navigation_send_event (GstNavigation * navigation,
GstOSXVideoSink *osxvideosink = GST_OSX_VIDEO_SINK (navigation); GstOSXVideoSink *osxvideosink = GST_OSX_VIDEO_SINK (navigation);
GstPad *peer; GstPad *peer;
GstEvent *event; GstEvent *event;
GstVideoRectangle src, dst, result; GstVideoRectangle src = { 0, };
GstVideoRectangle dst = { 0, };
GstVideoRectangle result;
NSRect bounds; NSRect bounds;
gdouble x, y, xscale = 1.0, yscale = 1.0; gdouble x, y, xscale = 1.0, yscale = 1.0;