47 {0x00,0x60,0x18,0x78,0x06,0x66,0x1E,0x7E},
48 {0x40,0x20,0x58,0x38,0x46,0x26,0x5E,0x3E},
49 {0x10,0x70,0x08,0x68,0x16,0x76,0x0E,0x6E},
50 {0x50,0x30,0x48,0x28,0x56,0x36,0x4E,0x2E},
51 {0x04,0x64,0x1C,0x7C,0x02,0x62,0x1A,0x7A},
52 {0x44,0x24,0x5C,0x3C,0x42,0x22,0x5A,0x3A},
53 {0x14,0x74,0x0C,0x6C,0x12,0x72,0x0A,0x6A},
54 {0x54,0x34,0x4C,0x2C,0x52,0x32,0x4A,0x2A},
60 for (x = 0; x <
width; dc += x & 1, x++) {
61 int pix = src[x] << 7;
62 int delta = dc[0] - pix;
63 int m = abs(delta) * thresh >> 16;
64 m =
FFMAX(0, 127 - m);
65 m = m * m * delta >> 14;
66 pix += m + dithers[x & 7];
67 dst[x] = av_clip_uint8(pix >> 7);
74 for (x = 0; x <
width; x++) {
75 v = buf1[x] + src[2 * x] + src[2 * x + 1] + src[2 * x + src_linesize] + src[2 * x + 1 + src_linesize];
84 int bstride =
FFALIGN(width, 16) / 2;
86 uint32_t dc_factor = (1 << 21) / (r * r);
87 uint16_t *
dc = ctx->
buf + 16;
88 uint16_t *
buf = ctx->
buf + bstride + 32;
91 memset(dc, 0, (bstride + 16) *
sizeof(*buf));
92 for (y = 0; y <
r; y++)
93 ctx->
blur_line(dc, buf + y * bstride, buf + (y - 1) * bstride, src + 2 * y * src_linesize, src_linesize, width / 2);
96 int mod = ((y +
r) / 2) %
r;
97 uint16_t *buf0 = buf + mod * bstride;
98 uint16_t *buf1 = buf + (mod ? mod - 1 : r - 1) * bstride;
100 ctx->
blur_line(dc, buf0, buf1, src + (y + r) * src_linesize, src_linesize, width / 2);
101 for (x = v = 0; x <
r; x++)
103 for (; x < width / 2; x++) {
104 v += dc[x] - dc[x-
r];
105 dc[x-
r] = v * dc_factor >> 16;
107 for (; x < (width + r + 1) / 2; x++)
108 dc[x-r] = v * dc_factor >> 16;
109 for (x = -r / 2; x < 0; x++)
113 for (y = 0; y <
r; y++)
114 ctx->
filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh,
dither[y & 7]);
116 ctx->
filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh,
dither[y & 7]);
117 if (++y >= height)
break;
118 ctx->
filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh,
dither[y & 7]);
119 if (++y >= height)
break;
203 for (p = 0; p < 4 && in->
data[p] && in->
linesize[p]; p++) {
213 if (
FFMIN(w, h) > 2 * r)
215 else if (out->
data[p] != in->
data[p])
225 #define OFFSET(x) offsetof(GradFunContext, x)
226 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
229 {
"strength",
"The maximum amount by which the filter will change any one pixel.",
OFFSET(strength),
AV_OPT_TYPE_FLOAT, { .dbl = 1.2 }, 0.51, 64,
FLAGS },
258 .priv_class = &gradfun_class,
262 .
inputs = avfilter_vf_gradfun_inputs,
263 .
outputs = avfilter_vf_gradfun_outputs,