diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-30 22:10:17 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-30 22:10:17 +0200 |
commit | 2b6325cacb6def8e9de0455f575b51a8bd90b12c (patch) | |
tree | 9975f34681673f4ce96537ea6684ff0fa8f5df89 /libavcodec/lzw.c | |
parent | 96df29c318ff64cb6ac706c11cbf932d96962fd7 (diff) | |
parent | b691fd7a4dfca766075c022922a75cdbca4e6d92 (diff) | |
download | ffmpeg-2b6325cacb6def8e9de0455f575b51a8bd90b12c.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
h264: drop ff_h264_ prefix from static function ff_h264_decode_rbsp_trailing()
h264: Make ff_h264_decode_end() static, it is not used externally.
output-example: K&R formatting cosmetics, comment spelling fixes
avf: make the example output the proper message
avf: fix audio writing in the output-example
mov: don't overwrite existing indexes.
lzw: fix potential integer overflow.
truemotion: forbid invalid VLC bitsizes and token values.
truemotion2: handle out-of-frame motion vectors through edge extension.
configure: Check for a different SDL function
Conflicts:
configure
doc/examples/muxing.c
libavcodec/truemotion2.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/lzw.c')
-rw-r--r-- | libavcodec/lzw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lzw.c b/libavcodec/lzw.c index aed1a43fac..348d2de06b 100644 --- a/libavcodec/lzw.c +++ b/libavcodec/lzw.c @@ -102,7 +102,7 @@ void ff_lzw_decode_tail(LZWState *p) if(s->mode == FF_LZW_GIF) { while (s->bs > 0) { - if (s->pbuf + s->bs >= s->ebuf) { + if (s->bs >= s->ebuf - s->pbuf) { s->pbuf = s->ebuf; break; } else { |