summaryrefslogtreecommitdiff
path: root/ext/directfb
diff options
context:
space:
mode:
authorSreerenj Balachandran <sreerenj.balachandran@intel.com>2011-07-18 14:14:31 +0300
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-07-18 15:05:23 +0100
commit8339ff458d3ece4a1a862566c9f1922c73338a15 (patch)
tree8ce49ec47aafe262aa5efb641ac96d6ca895993e /ext/directfb
parentf12598fa644e9dab892a84e551309c074d652a88 (diff)
downloadgstreamer-plugins-bad-8339ff458d3ece4a1a862566c9f1922c73338a15.tar.gz
dfbvideosink: fix harmless typo in variable initialization
https://bugzilla.gnome.org/show_bug.cgi?id=654840
Diffstat (limited to 'ext/directfb')
-rw-r--r--ext/directfb/dfbvideosink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/directfb/dfbvideosink.c b/ext/directfb/dfbvideosink.c
index 39d8fc7b5..7343e2537 100644
--- a/ext/directfb/dfbvideosink.c
+++ b/ext/directfb/dfbvideosink.c
@@ -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;