dfbvideosink: fix harmless typo in variable initialization

https://bugzilla.gnome.org/show_bug.cgi?id=654840
This commit is contained in:
Sreerenj Balachandran 2011-07-18 14:14:31 +03:00 committed by Tim-Philipp Müller
parent f12598fa64
commit 8339ff458d

View 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;