Searched refs:dither_error (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/
H A Doutput.c353 Y1 += (7*err + 1*c->dither_error[0][i] + 5*c->dither_error[0][i+1] + 3*c->dither_error[0][i+2] + 8 - 256)>>4;
354 c->dither_error[0][i] = err;
358 err = Y2 + ((7*Y1 + 1*c->dither_error[0][i+1] + 5*c->dither_error[0][i+2] + 3*c->dither_error[0][i+3] + 8 - 256)>>4);
359 c->dither_error[0][i+1] = Y1;
370 c->dither_error[0][i] = err;
396 Y += (7*err + 1*c->dither_error[
[all...]
H A Dswscale.c1063 if (!srcSliceY && (c->flags & SWS_BITEXACT) && c->dither == SWS_DITHER_ED && c->dither_error[0])
1065 memset(c->dither_error[i], 0, sizeof(c->dither_error[0][0]) * (c->dstW+2));
H A Dswscale_internal.h385 int *dither_error[4]; member in struct:SwsContext
H A Dutils.c1549 FF_ALLOCZ_OR_GOTO(c, c->dither_error[i], (c->dstW+2) * sizeof(int), fail);
2034 av_freep(&c->dither_error[i]);

Completed in 97 milliseconds