48 {0x00,0x60,0x18,0x78,0x06,0x66,0x1E,0x7E},
49 {0x40,0x20,0x58,0x38,0x46,0x26,0x5E,0x3E},
50 {0x10,0x70,0x08,0x68,0x16,0x76,0x0E,0x6E},
51 {0x50,0x30,0x48,0x28,0x56,0x36,0x4E,0x2E},
52 {0x04,0x64,0x1C,0x7C,0x02,0x62,0x1A,0x7A},
53 {0x44,0x24,0x5C,0x3C,0x42,0x22,0x5A,0x3A},
54 {0x14,0x74,0x0C,0x6C,0x12,0x72,0x0A,0x6A},
55 {0x54,0x34,0x4C,0x2C,0x52,0x32,0x4A,0x2A},
61 for (x = 0; x <
width; dc += x & 1, x++) {
62 int pix = src[x] << 7;
63 int delta = dc[0] - pix;
64 int m = abs(delta) * thresh >> 16;
65 m =
FFMAX(0, 127 - m);
66 m = m * m * delta >> 14;
67 pix += m + dithers[x & 7];
68 dst[x] = av_clip_uint8(pix >> 7);
75 for (x = 0; x <
width; x++) {
76 v = buf1[x] + src[2 * x] + src[2 * x + 1] + src[2 * x + src_linesize] + src[2 * x + 1 + src_linesize];
85 int bstride =
FFALIGN(width, 16) / 2;
87 uint32_t dc_factor = (1 << 21) / (r * r);
88 uint16_t *
dc = ctx->
buf + 16;
89 uint16_t *
buf = ctx->
buf + bstride + 32;
92 memset(dc, 0, (bstride + 16) *
sizeof(*buf));
93 for (y = 0; y <
r; y++)
94 ctx->
blur_line(dc, buf + y * bstride, buf + (y - 1) * bstride, src + 2 * y * src_linesize, src_linesize, width / 2);
97 int mod = ((y +
r) / 2) %
r;
98 uint16_t *buf0 = buf + mod * bstride;
99 uint16_t *buf1 = buf + (mod ? mod - 1 : r - 1) * bstride;
101 ctx->
blur_line(dc, buf0, buf1, src + (y + r) * src_linesize, src_linesize, width / 2);
102 for (x = v = 0; x <
r; x++)
104 for (; x < width / 2; x++) {
105 v += dc[x] - dc[x-
r];
106 dc[x-
r] = v * dc_factor >> 16;
108 for (; x < (width + r + 1) / 2; x++)
109 dc[x-r] = v * dc_factor >> 16;
110 for (x = -r / 2; x < 0; x++)
114 for (y = 0; y <
r; y++)
115 ctx->
filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh,
dither[y & 7]);
117 ctx->
filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh,
dither[y & 7]);
118 if (++y >= height)
break;
119 ctx->
filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh,
dither[y & 7]);
120 if (++y >= height)
break;
203 for (p = 0; p < 4 && in->
data[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,