Commit c1fc4ff9 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '02ec656a'

* commit '02ec656a':
  wmapro: error out on impossible scale factor offsets

The check is replaced by an assert(), as the condition cannot be
true except through bugs elsewhere (which should have been fixed
already)
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 490ed7f0 02ec656a
...@@ -439,8 +439,10 @@ static av_cold int decode_init(AVCodecContext *avctx) ...@@ -439,8 +439,10 @@ static av_cold int decode_init(AVCodecContext *avctx)
+ s->sfb_offsets[i][b + 1] - 1) << i) >> 1; + s->sfb_offsets[i][b + 1] - 1) << i) >> 1;
for (x = 0; x < num_possible_block_sizes; x++) { for (x = 0; x < num_possible_block_sizes; x++) {
int v = 0; int v = 0;
while (s->sfb_offsets[x][v + 1] << x < offset) while (s->sfb_offsets[x][v + 1] << x < offset) {
++v; v++;
av_assert0(v < MAX_BANDS);
}
s->sf_offsets[i][x][b] = v; s->sf_offsets[i][x][b] = v;
} }
} }
......
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