Commit 967c7c08 authored by Jim Bankoski's avatar Jim Bankoski Committed by Gerrit Code Review
Browse files

vp9_firstpass.c: fix unused static function

Change-Id: Ia989a01d79f1f02defbeccb1b8eee23fdf5e764e
Showing with 0 additions and 20 deletions
...@@ -225,26 +225,6 @@ static void subtract_stats(FIRSTPASS_STATS *section, ...@@ -225,26 +225,6 @@ static void subtract_stats(FIRSTPASS_STATS *section,
section->duration -= frame->duration; section->duration -= frame->duration;
} }
static void avg_stats(FIRSTPASS_STATS *section) {
if (section->count < 1.0)
return;
section->intra_error /= section->count;
section->coded_error /= section->count;
section->sr_coded_error /= section->count;
section->pcnt_inter /= section->count;
section->pcnt_second_ref /= section->count;
section->pcnt_neutral /= section->count;
section->pcnt_motion /= section->count;
section->MVr /= section->count;
section->mvr_abs /= section->count;
section->MVc /= section->count;
section->mvc_abs /= section->count;
section->MVrv /= section->count;
section->MVcv /= section->count;
section->mv_in_out_count /= section->count;
section->duration /= section->count;
}
// Calculate a modified Error used in distributing bits between easier and // Calculate a modified Error used in distributing bits between easier and
// harder frames. // harder frames.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment