Commit 8e8fd252 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/vividas: Remove align offset which is always masked off

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 08dc354e
......@@ -218,7 +218,7 @@ static uint8_t *read_vblock(AVIOContext *src, uint32_t *size,
memcpy(buf, tmp, 4);
if (avio_read(src, buf + 4, n) == n) {
decode_block(buf + 4, buf + 4, n, key, k2, align + 4);
decode_block(buf + 4, buf + 4, n, key, k2, align);
} else {
av_free(buf);
buf = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment