dfbvideosink: fix harmless typo in variable initialization
authorSreerenj Balachandran <sreerenj.balachandran@intel.com>
Mon, 18 Jul 2011 11:14:31 +0000 (14:14 +0300)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Mon, 18 Jul 2011 14:05:23 +0000 (15:05 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=654840

ext/directfb/dfbvideosink.c

index 39d8fc7..7343e25 100644 (file)
@@ -2242,8 +2242,8 @@ gst_dfbvideosink_init (GstDfbVideoSink * dfbvideosink)
 {
   dfbvideosink->pool_lock = g_mutex_new ();
   dfbvideosink->buffer_pool = NULL;
-  dfbvideosink->video_height = dfbvideosink->out_width = 0;
-  dfbvideosink->video_width = dfbvideosink->out_height = 0;
+  dfbvideosink->video_height = dfbvideosink->out_height = 0;
+  dfbvideosink->video_width = dfbvideosink->out_width = 0;
   dfbvideosink->fps_d = 0;
   dfbvideosink->fps_n = 0;