mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
vorbis: simplify the inner loop in setup_classifs
This commit is contained in:
parent
36f1038004
commit
ddf1b4a2f8
@ -1321,11 +1321,11 @@ static av_always_inline int setup_classifs(vorbis_context *vc,
|
||||
|
||||
assert(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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user