video: Fix unitialized variable.

yay macosx compilers :(
This commit is contained in:
Edward Hervey 2010-06-14 14:13:16 +02:00
parent 801cab604d
commit 3879c57b01

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