Commit 7d1b1b66 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_premultiply: remove redundant semicolons

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 7a9db61d
...@@ -99,7 +99,7 @@ static void premultiply8yuv(const uint8_t *msrc, const uint8_t *asrc, ...@@ -99,7 +99,7 @@ static void premultiply8yuv(const uint8_t *msrc, const uint8_t *asrc,
for (y = 0; y < h; y++) { for (y = 0; y < h; y++) {
for (x = 0; x < w; x++) { for (x = 0; x < w; x++) {
dst[x] = ((((msrc[x] - 128) * (((asrc[x] >> 1) & 1) + asrc[x]))) >> 8) + 128;; dst[x] = ((((msrc[x] - 128) * (((asrc[x] >> 1) & 1) + asrc[x]))) >> 8) + 128;
} }
dst += dlinesize; dst += dlinesize;
...@@ -165,7 +165,7 @@ static void premultiply16yuv(const uint8_t *mmsrc, const uint8_t *aasrc, ...@@ -165,7 +165,7 @@ static void premultiply16yuv(const uint8_t *mmsrc, const uint8_t *aasrc,
for (y = 0; y < h; y++) { for (y = 0; y < h; y++) {
for (x = 0; x < w; x++) { for (x = 0; x < w; x++) {
dst[x] = ((((msrc[x] - half) * (((asrc[x] >> 1) & 1) + asrc[x]))) >> shift) + half;; dst[x] = ((((msrc[x] - half) * (((asrc[x] >> 1) & 1) + asrc[x]))) >> shift) + half;
} }
dst += dlinesize / 2; dst += dlinesize / 2;
......
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