mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avcodec/gdv: Replace assert() checking bitstream by if()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit a9fae76370baf11a03b2c0ea590bb2d2f3f372ce) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
4b68a455e2
commit
0d1e3b33ed
@ -306,7 +306,8 @@ static int decompress_68(AVCodecContext *avctx, unsigned skip, unsigned use8)
|
||||
if (val != ((1 << lbits) - 1)) {
|
||||
break;
|
||||
}
|
||||
assert(lbits < 16);
|
||||
if (lbits >= 16)
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
for (i = 0; i < len; i++) {
|
||||
bytestream2_put_byte(pb, bytestream2_get_byte(gb));
|
||||
|
Loading…
x
Reference in New Issue
Block a user