46 #define OFFSET(x) offsetof(GradFunContext, x)
47 #define F AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
50 {
"strength",
"set the maximum amount by which the filter will change any one pixel",
OFFSET(strength),
AV_OPT_TYPE_DOUBLE, {.dbl = 1.2}, 0.51, 64,
F },
51 {
"radius",
"set the neighborhood to fit the gradient to",
OFFSET(radius),
AV_OPT_TYPE_INT, {.i64 = 16}, 4, 32,
F },
58 {0x00,0x60,0x18,0x78,0x06,0x66,0x1E,0x7E},
59 {0x40,0x20,0x58,0x38,0x46,0x26,0x5E,0x3E},
60 {0x10,0x70,0x08,0x68,0x16,0x76,0x0E,0x6E},
61 {0x50,0x30,0x48,0x28,0x56,0x36,0x4E,0x2E},
62 {0x04,0x64,0x1C,0x7C,0x02,0x62,0x1A,0x7A},
63 {0x44,0x24,0x5C,0x3C,0x42,0x22,0x5A,0x3A},
64 {0x14,0x74,0x0C,0x6C,0x12,0x72,0x0A,0x6A},
65 {0x54,0x34,0x4C,0x2C,0x52,0x32,0x4A,0x2A},
71 for (x = 0; x <
width; dc += x & 1, x++) {
72 int pix = src[x] << 7;
73 int delta = dc[0] - pix;
74 int m = abs(delta) * thresh >> 16;
75 m =
FFMAX(0, 127 - m);
76 m = m * m * delta >> 14;
77 pix += m + dithers[x & 7];
78 dst[x] = av_clip_uint8(pix >> 7);
85 for (x = 0; x <
width; x++) {
86 v = buf1[x] + src[2 * x] + src[2 * x + 1] + src[2 * x + src_linesize] + src[2 * x + 1 + src_linesize];
95 int bstride =
FFALIGN(width, 16) / 2;
97 uint32_t dc_factor = (1 << 21) / (r * r);
98 uint16_t *
dc = ctx->
buf + 16;
99 uint16_t *buf = ctx->
buf + bstride + 32;
102 memset(dc, 0, (bstride + 16) *
sizeof(*buf));
103 for (y = 0; y <
r; y++)
104 ctx->
blur_line(dc, buf + y * bstride, buf + (y - 1) * bstride, src + 2 * y * src_linesize, src_linesize, width / 2);
106 if (y < height - r) {
107 int mod = ((y +
r) / 2) %
r;
108 uint16_t *buf0 = buf + mod * bstride;
109 uint16_t *buf1 = buf + (mod ? mod - 1 : r - 1) * bstride;
111 ctx->
blur_line(dc, buf0, buf1, src + (y + r) * src_linesize, src_linesize, width / 2);
112 for (x = v = 0; x <
r; x++)
114 for (; x < width / 2; x++) {
115 v += dc[x] - dc[x-
r];
116 dc[x-
r] = v * dc_factor >> 16;
118 for (; x < (width + r + 1) / 2; x++)
119 dc[x-r] = v * dc_factor >> 16;
120 for (x = -r / 2; x < 0; x++)
124 for (y = 0; y <
r; y++)
125 ctx->
filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh,
dither[y & 7]);
127 ctx->
filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh,
dither[y & 7]);
128 if (++y >= height)
break;
129 ctx->
filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh,
dither[y & 7]);
130 if (++y >= height)
break;
138 static const char *shorthand[] = {
"strength",
"radius",
NULL };
140 gf->
class = &gradfun_class;
219 for (p = 0; p < 4 && in->
data[p]; p++) {
229 if (
FFMIN(w, h) > 2 * r)
231 else if (out->
data[p] != in->
data[p])
267 .
inputs = avfilter_vf_gradfun_inputs,
268 .
outputs = avfilter_vf_gradfun_outputs,
269 .priv_class = &gradfun_class,