projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
801cab6
)
video: Fix unitialized variable.
author
Edward Hervey
<bilboed@bilboed.com>
Mon, 14 Jun 2010 12:13:16 +0000
(14:13 +0200)
committer
Edward Hervey
<bilboed@bilboed.com>
Mon, 14 Jun 2010 12:13:16 +0000
(14:13 +0200)
yay macosx compilers :(
gst-libs/gst/video/video.c
patch
|
blob
|
history
diff --git
a/gst-libs/gst/video/video.c
b/gst-libs/gst/video/video.c
index b9ea4a52aeb1cbf340a197161e55cb3833ec64ba..9914e7b60c607b0dc2927e618f83d4e13fc6642a 100644
(file)
--- 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: