mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
video: Fix uninitialized variables
reported by macosx gcc
This commit is contained in:
parent
c05ca085da
commit
6ce0d6e78b
1 changed files with 3 additions and 3 deletions
|
@ -566,9 +566,9 @@ gst_video_format_new_caps (GstVideoFormat format, int width,
|
|||
}
|
||||
if (gst_video_format_is_rgb (format)) {
|
||||
GstCaps *caps;
|
||||
int red_mask;
|
||||
int blue_mask;
|
||||
int green_mask;
|
||||
int red_mask = 0;
|
||||
int blue_mask = 0;
|
||||
int green_mask = 0;
|
||||
int alpha_mask;
|
||||
int depth;
|
||||
int bpp;
|
||||
|
|
Loading…
Reference in a new issue