diff options
author | Mans Rullgard <mans@mansr.com> | 2012-07-01 14:28:50 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-07-01 20:38:14 +0100 |
commit | d55e5e6bae4ba1ddc18683f181d27c4e84923281 (patch) | |
tree | cb0b1fbe1842ffee568201d01db63f2d8569f031 /libavcodec/dsicinav.c | |
parent | 3c928477d2f42c456f4c560db032a4380a3b6953 (diff) | |
download | ffmpeg-d55e5e6bae4ba1ddc18683f181d27c4e84923281.tar.gz |
dsicin: remove dead assignment
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/dsicinav.c')
-rw-r--r-- | libavcodec/dsicinav.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsicinav.c b/libavcodec/dsicinav.c index d3b2cbded6..7e64b97b25 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++; |