Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
libvpx
Commits
ca64f6c1
Commit
ca64f6c1
authored
Feb 22, 2013
by
James Zern
Browse files
vp8/encoder/mcomp.c: remove an unused variable
Change-Id: I980da3c70f7cee1b723ede0ed2ae527ac7cd6a51
parent
e4ef8508
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/mcomp.c
View file @
ca64f6c1
...
...
@@ -235,13 +235,12 @@ int vp8_find_best_sub_pixel_step_iteratively(MACROBLOCK *x, BLOCK *b, BLOCKD *d,
MACROBLOCKD
*
xd
=
&
x
->
e_mbd
;
unsigned
char
*
y0
=
base_pre
+
d
->
offset
+
(
bestmv
->
as_mv
.
row
)
*
pre_stride
+
bestmv
->
as_mv
.
col
;
unsigned
char
*
y
;
int
buf_r1
,
buf_r2
,
buf_c1
,
buf_c2
;
int
buf_r1
,
buf_r2
,
buf_c1
;
/* Clamping to avoid out-of-range data access */
buf_r1
=
((
bestmv
->
as_mv
.
row
-
3
)
<
x
->
mv_row_min
)
?
(
bestmv
->
as_mv
.
row
-
x
->
mv_row_min
)
:
3
;
buf_r2
=
((
bestmv
->
as_mv
.
row
+
3
)
>
x
->
mv_row_max
)
?
(
x
->
mv_row_max
-
bestmv
->
as_mv
.
row
)
:
3
;
buf_c1
=
((
bestmv
->
as_mv
.
col
-
3
)
<
x
->
mv_col_min
)
?
(
bestmv
->
as_mv
.
col
-
x
->
mv_col_min
)
:
3
;
buf_c2
=
((
bestmv
->
as_mv
.
col
+
3
)
>
x
->
mv_col_max
)
?
(
x
->
mv_col_max
-
bestmv
->
as_mv
.
col
)
:
3
;
y_stride
=
32
;
/* Copy to intermediate buffer before searching. */
...
...
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