Commit 622ca5a3 authored by jbr's avatar jbr

flacdec: Check curr_bps after wasted bits are subtracted.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17813 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e011520a
......@@ -432,10 +432,6 @@ static inline int decode_subframe(FLACContext *s, int channel)
if (s->decorrelation == LEFT_SIDE || s->decorrelation == MID_SIDE)
s->curr_bps++;
}
if (s->curr_bps > 32) {
ff_log_missing_feature(s->avctx, "decorrelated bit depth > 32", 0);
return -1;
}
if (get_bits1(&s->gb)) {
av_log(s->avctx, AV_LOG_ERROR, "invalid subframe padding\n");
......@@ -449,6 +445,10 @@ static inline int decode_subframe(FLACContext *s, int channel)
wasted++;
s->curr_bps -= wasted;
}
if (s->curr_bps > 32) {
ff_log_missing_feature(s->avctx, "decorrelated bit depth > 32", 0);
return -1;
}
//FIXME use av_log2 for types
if (type == 0) {
......
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