Commit ed113d7a authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'ddf1b4a2'

* commit 'ddf1b4a2':
  vorbis: simplify the inner loop in setup_classifs
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents aef044d2 ddf1b4a2
......@@ -1332,11 +1332,11 @@ static av_always_inline int setup_classifs(vorbis_context *vc,
av_assert0(vr->classifications > 1 && temp <= 65536); //needed for inverse[]
for (i = 0; i < c_p_c; ++i) {
for (i = partition_count + c_p_c - 1; i >= partition_count; i--) {
temp2 = (((uint64_t)temp) * inverse_class) >> 32;
if (partition_count + c_p_c - 1 - i < vr->ptns_to_read)
vr->classifs[p + partition_count + c_p_c - 1 - i] =
temp - temp2 * vr->classifications;
if (i < vr->ptns_to_read)
vr->classifs[p + i] = temp - temp2 * vr->classifications;
temp = temp2;
}
}
......
Markdown is supported
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