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
Guillaume Martres
aom-rav1e
Commits
3cb92b85
Commit
3cb92b85
authored
Dec 28, 2011
by
John Koleszar
Browse files
Remove unused MACROBLOCK member vector_range
Change-Id: Ie2dc0d72363ff38e0f71b59f6e2d1a2d70c5266b
parent
31e86192
Changes
3
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/block.h
View file @
3cb92b85
...
...
@@ -103,7 +103,6 @@ typedef struct
int
mv_row_min
;
int
mv_row_max
;
int
vector_range
;
// Used to monitor limiting range of recent vectors to guide search.
int
skip
;
int
encode_breakout
;
...
...
vp8/encoder/encodeframe.c
View file @
3cb92b85
...
...
@@ -595,8 +595,6 @@ void init_encode_frame_mb_context(VP8_COMP *cpi)
// Activity map pointer
x
->
mb_activity_ptr
=
cpi
->
mb_activity_map
;
x
->
vector_range
=
32
;
x
->
act_zbin_adj
=
0
;
x
->
partition_info
=
x
->
pi
;
...
...
vp8/encoder/ethreading.c
View file @
3cb92b85
...
...
@@ -302,7 +302,6 @@ static void setup_mbby_copy(MACROBLOCK *mbdst, MACROBLOCK *mbsrc)
z->mv_col_max = x->mv_col_max;
z->mv_row_min = x->mv_row_min;
z->mv_row_max = x->mv_row_max;
z->vector_range = x->vector_range ;
*/
z
->
vp8_short_fdct4x4
=
x
->
vp8_short_fdct4x4
;
...
...
@@ -419,8 +418,6 @@ void vp8cx_init_mbrthread_data(VP8_COMP *cpi,
#endif
mb
->
gf_active_ptr
=
x
->
gf_active_ptr
;
mb
->
vector_range
=
32
;
vpx_memset
(
mbr_ei
[
i
].
segment_counts
,
0
,
sizeof
(
mbr_ei
[
i
].
segment_counts
));
mbr_ei
[
i
].
totalrate
=
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