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
Yushin Cho
aom-rav1e
Commits
73d387dc
Commit
73d387dc
authored
Oct 23, 2012
by
pascal massimino
Committed by
Gerrit Code Review
Oct 23, 2012
Browse files
Merge "Change eob[] array type in splitmv RD loop to a regular integer." into experimental
parents
d3b7c850
6498516b
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/rdopt.c
View file @
73d387dc
...
...
@@ -2247,7 +2247,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
;
...
...
@@ -2287,7 +2287,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
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