mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 08:17:01 +00:00
video: Fix unitialized variable.
yay macosx compilers :(
This commit is contained in:
parent
801cab604d
commit
3879c57b01
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue