From 3879c57b01c9166278d2aa0dea1f3f372ce69198 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Mon, 14 Jun 2010 14:13:16 +0200 Subject: [PATCH] video: Fix unitialized variable. yay macosx compilers :( --- gst-libs/gst/video/video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/video/video.c b/gst-libs/gst/video/video.c index b9ea4a5..9914e7b 100644 --- a/gst-libs/gst/video/video.c +++ b/gst-libs/gst/video/video.c @@ -568,7 +568,7 @@ gst_video_format_new_caps (GstVideoFormat format, int width, int depth; int bpp; gboolean have_alpha; - unsigned int mask; + unsigned int mask = 0; switch (format) { case GST_VIDEO_FORMAT_RGBx: -- 2.7.4