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:
1491d02
)
applemedia: vtdec: fix uninitialized variable warning
author
Alessandro Decina
<alessandro.d@gmail.com>
Tue, 17 Nov 2015 00:22:15 +0000
(11:22 +1100)
committer
Alessandro Decina
<alessandro.d@gmail.com>
Tue, 17 Nov 2015 01:59:58 +0000
(12:59 +1100)
sys/applemedia/vtdec.c
patch
|
blob
|
history
diff --git
a/sys/applemedia/vtdec.c
b/sys/applemedia/vtdec.c
index
2ac9b9c
..
d24c571
100644
(file)
--- a/
sys/applemedia/vtdec.c
+++ b/
sys/applemedia/vtdec.c
@@
-444,7
+444,7
@@
gst_vtdec_create_session (GstVtdec * vtdec, GstVideoFormat format)
VTDecompressionOutputCallbackRecord callback;
CFMutableDictionaryRef videoDecoderSpecification;
OSStatus status;
- guint32 cv_format;
+ guint32 cv_format
= 0
;
switch (format) {
case GST_VIDEO_FORMAT_NV12: