mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
decode h264 end-of-slice flag
Originally committed as revision 4316 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2143116dd9
commit
6d1feb028f
@ -254,7 +254,7 @@ static inline void put_cabac_ueg(CABACContext *c, uint8_t * state, int v, int ma
|
||||
}
|
||||
|
||||
static void refill(CABACContext *c){
|
||||
if(c->bytestream < c->bytestream_end)
|
||||
if(c->bytestream <= c->bytestream_end)
|
||||
#if CABAC_BITS == 16
|
||||
c->low+= ((c->bytestream[0]<<9) + (c->bytestream[1])<<1);
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user