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
502ac722
Commit
502ac722
authored
Mar 31, 2015
by
Jingning Han
Committed by
Gerrit Code Review
Mar 31, 2015
Browse files
Merge "Tuning SATD rate calculation for speed"
parents
1c39c5b9
531468a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_pickmode.c
View file @
502ac722
...
...
@@ -401,7 +401,11 @@ static void block_yrd(VP9_COMP *cpi, MACROBLOCK *x, int *rate, int64_t *dist,
}
*
dist
+=
vp9_block_error
(
coeff
,
dqcoeff
,
step
<<
4
,
&
this_sse
)
>>
shift
;
*
rate
+=
(
int
)
vp9_satd
((
const
int16_t
*
)
qcoeff
,
step
<<
4
);
if
(
*
eob
==
1
)
*
rate
+=
(
int
)
abs
(
qcoeff
[
0
]);
else
if
(
*
eob
>
1
)
*
rate
+=
(
int
)
vp9_satd
((
const
int16_t
*
)
qcoeff
,
step
<<
4
);
*
sse
+=
(
this_sse
>>
shift
);
*
skippable
&=
(
*
eob
==
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