You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Merge commit '02ec656af72030eea4f3d63e30b25625cce6a3df'
* commit '02ec656af72030eea4f3d63e30b25625cce6a3df': 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: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -439,8 +439,10 @@ static av_cold int decode_init(AVCodecContext *avctx)
|
||||
+ s->sfb_offsets[i][b + 1] - 1) << i) >> 1;
|
||||
for (x = 0; x < num_possible_block_sizes; x++) {
|
||||
int v = 0;
|
||||
while (s->sfb_offsets[x][v + 1] << x < offset)
|
||||
++v;
|
||||
while (s->sfb_offsets[x][v + 1] << x < offset) {
|
||||
v++;
|
||||
av_assert0(v < MAX_BANDS);
|
||||
}
|
||||
s->sf_offsets[i][x][b] = v;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user