projects
/
platform
/
upstream
/
libvpx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6247b23
)
fixed a warning
author
Yaowu Xu
<yaowu@google.com>
Mon, 17 Dec 2012 19:10:16 +0000
(11:10 -0800)
committer
Yaowu Xu
<yaowu@google.com>
Mon, 17 Dec 2012 19:11:07 +0000
(11:11 -0800)
where variable is used without initialization
Change-Id: Ic6b52623802641060cad4a72271050aeaf20ad5c
vp9/common/vp9_mbpitch.c
patch
|
blob
|
history
diff --git
a/vp9/common/vp9_mbpitch.c
b/vp9/common/vp9_mbpitch.c
index 84e473bb1779ca12aedfdd20beaf0cad4be78b84..1107402ea59fc22b82d89113a78dba9abcf61cab 100644
(file)
--- a/
vp9/common/vp9_mbpitch.c
+++ b/
vp9/common/vp9_mbpitch.c
@@
-45,7
+45,7
@@
static void setup_macroblock(MACROBLOCKD *xd, BLOCKSET bs) {
int block;
unsigned char **y, **u, **v;
- unsigned char **y2
, **u2, **v2
;
+ unsigned char **y2
= NULL, **u2 = NULL, **v2 = NULL
;
BLOCKD *blockd = xd->block;
int stride;