Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
ef101af8
Commit
ef101af8
authored
Aug 09, 2013
by
James Zern
Committed by
Gerrit Code Review
Aug 09, 2013
Browse files
Merge "vp9_rd_pick_inter_mode_sb: fix uninitialized value"
parents
12514603
f295774d
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_rdopt.c
View file @
ef101af8
...
...
@@ -3298,7 +3298,7 @@ int64_t vp9_rd_pick_inter_mode_sb(VP9_COMP *cpi, MACROBLOCK *x,
int
compmode_cost
=
0
;
int
rate2
=
0
,
rate_y
=
0
,
rate_uv
=
0
;
int64_t
distortion2
=
0
,
distortion_y
=
0
,
distortion_uv
=
0
;
int
skippable
;
int
skippable
=
0
;
int64_t
tx_cache
[
TX_MODES
];
int
i
;
int
this_skip2
=
0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment