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
6498516b
Commit
6498516b
authored
Oct 23, 2012
by
Ronald S. Bultje
Browse files
Change eob[] array type in splitmv RD loop to a regular integer.
Change-Id: I240d6b50069fd3f35cc4fed2f4507796f0ef25e9
parent
f93d316e
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/rdopt.c
View file @
6498516b
...
...
@@ -2249,7 +2249,7 @@ typedef struct {
int
segment_yrate
;
B_PREDICTION_MODE
modes
[
16
];
int_mv
mvs
[
16
],
second_mvs
[
16
];
unsigned
char
eobs
[
16
];
int
eobs
[
16
];
int
mvthresh
;
int
*
mdcounts
;
...
...
@@ -2289,7 +2289,7 @@ static void rd_check_segment_txsize(VP8_COMP *cpi, MACROBLOCK *x,
int
rate
=
0
;
int
sbr
=
0
,
sbd
=
0
;
int
segmentyrate
=
0
;
u
int
8_t
best_eobs
[
16
]
=
{
0
};
int
best_eobs
[
16
]
=
{
0
};
vp8_variance_fn_ptr_t
*
v_fn_ptr
;
...
...
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