Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
30205e14
Commit
30205e14
authored
Apr 03, 2015
by
James Zern
Browse files
vp8cx_pick_filter_level*: remove dead inits
Change-Id: I28026b86d03264b9f4e2fc8ac1d3c74aa3954208
parent
acb219be
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/picklpf.c
View file @
30205e14
...
...
@@ -142,7 +142,7 @@ void vp8cx_pick_filter_level_fast(YV12_BUFFER_CONFIG *sd, VP8_COMP *cpi)
int
min_filter_level
=
get_min_filter_level
(
cpi
,
cm
->
base_qindex
);
int
max_filter_level
=
get_max_filter_level
(
cpi
,
cm
->
base_qindex
);
int
filt_val
;
int
best_filt_val
=
cm
->
filter_level
;
int
best_filt_val
;
YV12_BUFFER_CONFIG
*
saved_frame
=
cm
->
frame_to_show
;
/* Replace unfiltered frame buffer with a new one */
...
...
@@ -274,8 +274,7 @@ void vp8cx_pick_filter_level(YV12_BUFFER_CONFIG *sd, VP8_COMP *cpi)
int
filter_step
;
int
filt_high
=
0
;
/* Start search at previous frame filter level */
int
filt_mid
=
cm
->
filter_level
;
int
filt_mid
;
int
filt_low
=
0
;
int
filt_best
;
int
filt_direction
=
0
;
...
...
Write
Preview
Markdown
is supported
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