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
Xiph.Org
aom-rav1e
Commits
6f397b8a
Commit
6f397b8a
authored
May 20, 2016
by
jackychen
Browse files
vp9: Remove a redundent condition in sub-pixel filter choosing.
Change-Id: I5cbb0f452ec9622437482b3a9496ead1253acfe0
parent
4f774ac5
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_pickmode.c
View file @
6f397b8a
...
...
@@ -1623,12 +1623,9 @@ void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
free_pred_buffer
(
this_mode_pred
);
this_mode_pred
=
current_pred
;
}
if
(
filter
<
EIGHTTAP_SHARP
)
{
current_pred
=
&
tmp
[
get_pred_buffer
(
tmp
,
3
)];
pd
->
dst
.
buf
=
current_pred
->
data
;
pd
->
dst
.
stride
=
bw
;
}
current_pred
=
&
tmp
[
get_pred_buffer
(
tmp
,
3
)];
pd
->
dst
.
buf
=
current_pred
->
data
;
pd
->
dst
.
stride
=
bw
;
}
}
}
...
...
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