video: Fix unitialized variable.
authorEdward Hervey <bilboed@bilboed.com>
Mon, 14 Jun 2010 12:13:16 +0000 (14:13 +0200)
committerEdward Hervey <bilboed@bilboed.com>
Mon, 14 Jun 2010 12:13:16 +0000 (14:13 +0200)
yay macosx compilers :(

gst-libs/gst/video/video.c

index b9ea4a52aeb1cbf340a197161e55cb3833ec64ba..9914e7b60c607b0dc2927e618f83d4e13fc6642a 100644 (file)
@@ -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: