diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2005-05-29 18:18:13 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2005-05-29 18:18:13 +0000 |
commit | 6d1feb028f5e245477da71848e702388dca91ce0 (patch) | |
tree | 5d1de96c900a90f4e02d795ced624a79579e1d60 | |
parent | 2143116dd9fa39ed2351be5783928e9c0d8931f2 (diff) | |
download | ffmpeg-6d1feb028f5e245477da71848e702388dca91ce0.tar.gz |
decode h264 end-of-slice flag
Originally committed as revision 4316 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/cabac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h index cc03eba960..15ec88d925 100644 --- a/libavcodec/cabac.h +++ b/libavcodec/cabac.h @@ -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 |