Commit e834f7d2 authored by Michael Niedermayer's avatar Michael Niedermayer

postproc: remove stray +

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 02fa5295
......@@ -3588,7 +3588,7 @@ static void RENAME(postProcess)(const uint8_t src[], int srcStride, uint8_t dst[
/*
for(x=0; x<width; x+=32){
volatile int i;
i+= + dstBlock[x + 7*dstStride] + dstBlock[x + 8*dstStride]
i+= dstBlock[x + 7*dstStride] + dstBlock[x + 8*dstStride]
+ dstBlock[x + 9*dstStride] + dstBlock[x +10*dstStride]
+ dstBlock[x +11*dstStride] + dstBlock[x +12*dstStride];
+ dstBlock[x +13*dstStride]
......
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