1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

h264: fix overreads in cabac reader.

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: libav-stable@libav.org
This commit is contained in:
Ronald S. Bultje 2012-03-16 21:56:40 -07:00
parent d360dd902c
commit 7374fac804

View File

@ -47,6 +47,7 @@ static void refill(CABACContext *c){
c->low+= c->bytestream[0]<<1;
#endif
c->low -= CABAC_MASK;
if (c->bytestream < c->bytestream_end)
c->bytestream += CABAC_BITS / 8;
}
@ -74,6 +75,7 @@ static void refill2(CABACContext *c){
#endif
c->low += x<<i;
if (c->bytestream < c->bytestream_end)
c->bytestream += CABAC_BITS/8;
}