summaryrefslogtreecommitdiff
path: root/libswscale
diff options
context:
space:
mode:
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/output.c b/libswscale/output.c
index 582eb5b909..1db0a51442 100644
--- a/libswscale/output.c
+++ b/libswscale/output.c
@@ -1957,13 +1957,13 @@ yuv2ya8_2_c(SwsContext *c, const int16_t *buf[2],
int i;
for (i = 0; i < dstW; i++) {
- int Y = (buf0[i * 2] * yalpha1 + buf1[i * 2] * yalpha) >> 19;
+ int Y = (buf0[i] * yalpha1 + buf1[i] * yalpha) >> 19;
int A;
Y = av_clip_uint8(Y);
if (hasAlpha) {
- A = (abuf0[i * 2] * yalpha1 + abuf1[i * 2] * yalpha) >> 19;
+ A = (abuf0[i] * yalpha1 + abuf1[i] * yalpha) >> 19;
A = av_clip_uint8(A);
}