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
Guillaume Martres
aom-rav1e
Commits
3082565b
Commit
3082565b
authored
Jun 13, 2014
by
Paul Wilkins
Committed by
Gerrit Code Review
Jun 13, 2014
Browse files
Merge "Cleaning up accumulate_frame_motion_stats()."
parents
73369035
6cf3d68f
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_firstpass.c
View file @
3082565b
...
...
@@ -1083,38 +1083,30 @@ static int detect_flash(const TWO_PASS *twopass, int offset) {
}
// Update the motion related elements to the GF arf boost calculation.
static
void
accumulate_frame_motion_stats
(
FIRSTPASS_STATS
*
this_frame
,
double
*
this_frame_mv_in_out
,
double
*
mv_in_out_accumulator
,
double
*
abs_mv_in_out_accumulator
,
double
*
mv_ratio_accumulator
)
{
double
motion_pct
;
// Accumulate motion stats.
motion_pct
=
this_frame
->
pcnt_motion
;
static
void
accumulate_frame_motion_stats
(
const
FIRSTPASS_STATS
*
stats
,
double
*
mv_in_out
,
double
*
mv_in_out_accumulator
,
double
*
abs_mv_in_out_accumulator
,
double
*
mv_ratio_accumulator
)
{
const
double
pct
=
stats
->
pcnt_motion
;
// Accumulate Motion In/Out of frame stats.
*
this_frame_mv_in_out
=
this_frame
->
mv_in_out_count
*
motion_pct
;
*
mv_in_out_accumulator
+=
this_frame
->
mv_in_out_count
*
motion_pct
;
*
abs_mv_in_out_accumulator
+=
fabs
(
this_frame
->
mv_in_out_count
*
motion_pct
);
// Accumulate a measure of how uniform (or conversely how random)
// the motion field is (a ratio of absmv / mv).
if
(
motion_pct
>
0
.
05
)
{
const
double
this_frame_mvr_ratio
=
fabs
(
this_frame
->
mvr_abs
)
/
DOUBLE_DIVIDE_CHECK
(
fabs
(
this_frame
->
MVr
));
const
double
this_frame_mvc_ratio
=
fabs
(
this_frame
->
mvc_abs
)
/
DOUBLE_DIVIDE_CHECK
(
fabs
(
this_frame
->
MVc
));
*
mv_ratio_accumulator
+=
(
this_frame_mvr_ratio
<
this_frame
->
mvr_abs
)
?
(
this_frame_mvr_ratio
*
motion_pct
)
:
this_frame
->
mvr_abs
*
motion_pct
;
*
mv_ratio_accumulator
+=
(
this_frame_mvc_ratio
<
this_frame
->
mvc_abs
)
?
(
this_frame_mvc_ratio
*
motion_pct
)
:
this_frame
->
mvc_abs
*
motion_pct
;
*
mv_in_out
=
stats
->
mv_in_out_count
*
pct
;
*
mv_in_out_accumulator
+=
*
mv_in_out
;
*
abs_mv_in_out_accumulator
+=
fabs
(
*
mv_in_out
);
// Accumulate a measure of how uniform (or conversely how random) the motion
// field is (a ratio of abs(mv) / mv).
if
(
pct
>
0
.
05
)
{
const
double
mvr_ratio
=
fabs
(
stats
->
mvr_abs
)
/
DOUBLE_DIVIDE_CHECK
(
fabs
(
stats
->
MVr
));
const
double
mvc_ratio
=
fabs
(
stats
->
mvc_abs
)
/
DOUBLE_DIVIDE_CHECK
(
fabs
(
stats
->
MVc
));
*
mv_ratio_accumulator
+=
pct
*
(
mvr_ratio
<
stats
->
mvr_abs
?
mvr_ratio
:
stats
->
mvr_abs
);
*
mv_ratio_accumulator
+=
pct
*
(
mvc_ratio
<
stats
->
mvc_abs
?
mvc_ratio
:
stats
->
mvc_abs
);
}
}
...
...
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