diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-08-31 22:32:32 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-09-16 00:53:18 +0200 |
commit | 08dc354ef72991df22109cc6f84c34e798369bfb (patch) | |
tree | 10268ef4cea23abe4f2d4dc077954d628a1b13c3 /libavformat/vividas.c | |
parent | 5c5575c8dc892473ef9d35ca6419e8dabbc5e5ac (diff) | |
download | ffmpeg-streaming-08dc354ef72991df22109cc6f84c34e798369bfb.zip ffmpeg-streaming-08dc354ef72991df22109cc6f84c34e798369bfb.tar.gz |
avformat/vividas: remove dead assignment
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/vividas.c')
-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 1ac86a1..d7d75a8 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; |