diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-08-31 22:32:32 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-12-31 19:51:55 +0100 |
commit | 372f9254c310d4c267377fbaa9c864f212bb5005 (patch) | |
tree | 72994a1f583a6cb41f1914857e719e8f7a59fa27 | |
parent | 8ae4a2915a483e0a8e275354a5c2a52a72dd9feb (diff) | |
download | ffmpeg-372f9254c310d4c267377fbaa9c864f212bb5005.tar.gz |
avformat/vividas: remove dead assignment
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 08dc354ef72991df22109cc6f84c34e798369bfb)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/vividas.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/vividas.c b/libavformat/vividas.c index 1ac86a107e..d7d75a8d3c 100644 --- a/libavformat/vividas.c +++ b/libavformat/vividas.c @@ -164,8 +164,6 @@ static void decode_block(uint8_t *src, uint8_t *dest, unsigned size, } if (s >= 4) { - if (!align) - align = 4; xor_block(src + a2, dest + a2, s & ~3, key, key_ptr); s &= 3; |