[FFmpeg-cvslog] dsicin: remove dead assignment
Mans Rullgard
git at videolan.org
Mon Jul 2 21:24:11 CEST 2012
ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Sun Jul 1 14:28:50 2012 +0100| [d55e5e6bae4ba1ddc18683f181d27c4e84923281] | committer: Mans Rullgard
dsicin: remove dead assignment
Signed-off-by: Mans Rullgard <mans at mansr.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d55e5e6bae4ba1ddc18683f181d27c4e84923281
---
libavcodec/dsicinav.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/dsicinav.c b/libavcodec/dsicinav.c
index d3b2cbd..7e64b97 100644
--- a/libavcodec/dsicinav.c
+++ b/libavcodec/dsicinav.c
@@ -121,7 +121,7 @@ static int cin_decode_huffman(const unsigned char *src, int src_size, unsigned c
unsigned char *dst_end = dst + dst_size;
const unsigned char *src_end = src + src_size;
- memcpy(huff_code_table, src, 15); src += 15; src_size -= 15;
+ memcpy(huff_code_table, src, 15); src += 15;
while (src < src_end) {
huff_code = *src++;
More information about the ffmpeg-cvslog
mailing list