Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * Copyright (c) 2010 Nolan Lum <nol888@gmail.com> | ||
3 | * Copyright (c) 2009 Loren Merritt <lorenm@u.washington.edu> | ||
4 | * | ||
5 | * This file is part of FFmpeg. | ||
6 | * | ||
7 | * FFmpeg is free software; you can redistribute it and/or | ||
8 | * modify it under the terms of the GNU Lesser General Public | ||
9 | * License as published by the Free Software Foundation; either | ||
10 | * version 2.1 of the License, or (at your option) any later version. | ||
11 | * | ||
12 | * FFmpeg is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
15 | * Lesser General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU Lesser General Public | ||
18 | * License along with FFmpeg; if not, write to the Free Software | ||
19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
20 | */ | ||
21 | |||
22 | /** | ||
23 | * @file | ||
24 | * gradfun debanding filter, ported from MPlayer | ||
25 | * libmpcodecs/vf_gradfun.c | ||
26 | * | ||
27 | * Apply a boxblur debanding algorithm (based on the gradfun2db | ||
28 | * AviSynth filter by prunedtree). | ||
29 | * For each pixel, if it is within the threshold of the blurred value, make it | ||
30 | * closer. So now we have a smoothed and higher bitdepth version of all the | ||
31 | * shallow gradients, while leaving detailed areas untouched. | ||
32 | * Dither it back to 8bit. | ||
33 | */ | ||
34 | |||
35 | #include "libavutil/emms.h" | ||
36 | #include "libavutil/imgutils.h" | ||
37 | #include "libavutil/common.h" | ||
38 | #include "libavutil/mem.h" | ||
39 | #include "libavutil/mem_internal.h" | ||
40 | #include "libavutil/opt.h" | ||
41 | #include "libavutil/pixdesc.h" | ||
42 | #include "avfilter.h" | ||
43 | #include "filters.h" | ||
44 | #include "gradfun.h" | ||
45 | #include "video.h" | ||
46 | |||
47 | DECLARE_ALIGNED(16, static const uint16_t, dither)[8][8] = { | ||
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}, | ||
56 | }; | ||
57 | |||
58 | 32160 | void ff_gradfun_filter_line_c(uint8_t *dst, const uint8_t *src, const uint16_t *dc, int width, int thresh, const uint16_t *dithers) | |
59 | { | ||
60 | int x; | ||
61 |
2/2✓ Branch 0 taken 8678400 times.
✓ Branch 1 taken 32160 times.
|
8710560 | for (x = 0; x < width; dc += x & 1, x++) { |
62 | 8678400 | int pix = src[x] << 7; | |
63 | 8678400 | int delta = dc[0] - pix; | |
64 | 8678400 | int m = abs(delta) * thresh >> 16; | |
65 | 8678400 | m = FFMAX(0, 127 - m); | |
66 | 8678400 | m = m * m * delta >> 14; | |
67 | 8678400 | pix += m + dithers[x & 7]; | |
68 | 8678400 | dst[x] = av_clip_uint8(pix >> 7); | |
69 | } | ||
70 | 32160 | } | |
71 | |||
72 | 16080 | void ff_gradfun_blur_line_c(uint16_t *dc, uint16_t *buf, const uint16_t *buf1, const uint8_t *src, int src_linesize, int width) | |
73 | { | ||
74 | int x, v, old; | ||
75 |
2/2✓ Branch 0 taken 2169600 times.
✓ Branch 1 taken 16080 times.
|
2185680 | for (x = 0; x < width; x++) { |
76 | 2169600 | v = buf1[x] + src[2 * x] + src[2 * x + 1] + src[2 * x + src_linesize] + src[2 * x + 1 + src_linesize]; | |
77 | 2169600 | old = buf[x]; | |
78 | 2169600 | buf[x] = v; | |
79 | 2169600 | dc[x] = v - old; | |
80 | } | ||
81 | 16080 | } | |
82 | |||
83 | 164 | static void filter(GradFunContext *ctx, uint8_t *dst, const uint8_t *src, int width, int height, int dst_linesize, int src_linesize, int r) | |
84 | { | ||
85 | 164 | int bstride = FFALIGN(width, 16) / 2; | |
86 | int y; | ||
87 | 164 | uint32_t dc_factor = (1 << 21) / (r * r); | |
88 | 164 | uint16_t *dc = ctx->buf + 16; | |
89 | 164 | uint16_t *buf = ctx->buf + bstride + 32; | |
90 | 164 | int thresh = ctx->thresh; | |
91 | |||
92 | 164 | memset(dc, 0, (bstride + 16) * sizeof(*buf)); | |
93 |
2/2✓ Branch 0 taken 1712 times.
✓ Branch 1 taken 164 times.
|
1876 | for (y = 0; y < r; y++) |
94 | 1712 | ctx->blur_line(dc, buf + y * bstride, buf + (y - 1) * bstride, src + 2 * y * src_linesize, src_linesize, width / 2); | |
95 | for (;;) { | ||
96 |
2/2✓ Branch 0 taken 14368 times.
✓ Branch 1 taken 856 times.
|
15224 | if (y + 1 < height - r) { |
97 | 14368 | int mod = ((y + r) / 2) % r; | |
98 | 14368 | uint16_t *buf0 = buf + mod * bstride; | |
99 |
2/2✓ Branch 0 taken 12972 times.
✓ Branch 1 taken 1396 times.
|
14368 | uint16_t *buf1 = buf + (mod ? mod - 1 : r - 1) * bstride; |
100 | int x, v; | ||
101 | 14368 | ctx->blur_line(dc, buf0, buf1, src + (y + r) * src_linesize, src_linesize, width / 2); | |
102 |
2/2✓ Branch 0 taken 166144 times.
✓ Branch 1 taken 14368 times.
|
180512 | for (x = v = 0; x < r; x++) |
103 | 166144 | v += dc[x]; | |
104 |
2/2✓ Branch 0 taken 1774336 times.
✓ Branch 1 taken 14368 times.
|
1788704 | for (; x < width / 2; x++) { |
105 | 1774336 | v += dc[x] - dc[x-r]; | |
106 | 1774336 | dc[x-r] = v * dc_factor >> 16; | |
107 | } | ||
108 |
2/2✓ Branch 0 taken 83072 times.
✓ Branch 1 taken 14368 times.
|
97440 | for (; x < (width + r + 1) / 2; x++) |
109 | 83072 | dc[x-r] = v * dc_factor >> 16; | |
110 |
2/2✓ Branch 0 taken 83072 times.
✓ Branch 1 taken 14368 times.
|
97440 | for (x = -r / 2; x < 0; x++) |
111 | 83072 | dc[x] = dc[0]; | |
112 | } | ||
113 |
2/2✓ Branch 0 taken 164 times.
✓ Branch 1 taken 15060 times.
|
15224 | if (y == r) { |
114 |
2/2✓ Branch 0 taken 1712 times.
✓ Branch 1 taken 164 times.
|
1876 | for (y = 0; y < r; y++) |
115 | 1712 | ctx->filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh, dither[y & 7]); | |
116 | } | ||
117 | 15224 | ctx->filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh, dither[y & 7]); | |
118 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 15224 times.
|
15224 | if (++y >= height) break; |
119 | 15224 | ctx->filter_line(dst + y * dst_linesize, src + y * src_linesize, dc - r / 2, width, thresh, dither[y & 7]); | |
120 |
2/2✓ Branch 0 taken 164 times.
✓ Branch 1 taken 15060 times.
|
15224 | if (++y >= height) break; |
121 | } | ||
122 | 164 | emms_c(); | |
123 | 164 | } | |
124 | |||
125 | 4 | static av_cold int init(AVFilterContext *ctx) | |
126 | { | ||
127 | 4 | GradFunContext *s = ctx->priv; | |
128 | |||
129 | 4 | s->thresh = (1 << 15) / s->strength; | |
130 | 4 | s->radius = av_clip((s->radius + 1) & ~1, 4, 32); | |
131 | |||
132 | 4 | s->blur_line = ff_gradfun_blur_line_c; | |
133 | 4 | s->filter_line = ff_gradfun_filter_line_c; | |
134 | |||
135 | #if ARCH_X86 | ||
136 | 4 | ff_gradfun_init_x86(s); | |
137 | #endif | ||
138 | |||
139 | 4 | av_log(ctx, AV_LOG_VERBOSE, "threshold:%.2f radius:%d\n", s->strength, s->radius); | |
140 | |||
141 | 4 | return 0; | |
142 | } | ||
143 | |||
144 | 4 | static av_cold void uninit(AVFilterContext *ctx) | |
145 | { | ||
146 | 4 | GradFunContext *s = ctx->priv; | |
147 | 4 | av_freep(&s->buf); | |
148 | 4 | } | |
149 | |||
150 | static const enum AVPixelFormat pix_fmts[] = { | ||
151 | AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV420P, | ||
152 | AV_PIX_FMT_GRAY8, AV_PIX_FMT_YUV444P, | ||
153 | AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV411P, | ||
154 | AV_PIX_FMT_YUV440P, | ||
155 | AV_PIX_FMT_GBRP, | ||
156 | AV_PIX_FMT_NONE | ||
157 | }; | ||
158 | |||
159 | 2 | static int config_input(AVFilterLink *inlink) | |
160 | { | ||
161 | 2 | GradFunContext *s = inlink->dst->priv; | |
162 | 2 | const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format); | |
163 | 2 | int hsub = desc->log2_chroma_w; | |
164 | 2 | int vsub = desc->log2_chroma_h; | |
165 | |||
166 | 2 | av_freep(&s->buf); | |
167 | 2 | s->buf = av_calloc((FFALIGN(inlink->w, 16) * (s->radius + 1) / 2 + 32), sizeof(*s->buf)); | |
168 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
|
2 | if (!s->buf) |
169 | ✗ | return AVERROR(ENOMEM); | |
170 | |||
171 | 2 | s->chroma_w = AV_CEIL_RSHIFT(inlink->w, hsub); | |
172 | 2 | s->chroma_h = AV_CEIL_RSHIFT(inlink->h, vsub); | |
173 | 2 | s->chroma_r = av_clip(((((s->radius >> hsub) + (s->radius >> vsub)) / 2 ) + 1) & ~1, 4, 32); | |
174 | |||
175 | 2 | return 0; | |
176 | } | ||
177 | |||
178 | 64 | static int filter_frame(AVFilterLink *inlink, AVFrame *in) | |
179 | { | ||
180 | 64 | GradFunContext *s = inlink->dst->priv; | |
181 | 64 | AVFilterLink *outlink = inlink->dst->outputs[0]; | |
182 | AVFrame *out; | ||
183 | int p, direct; | ||
184 | |||
185 |
1/2✓ Branch 1 taken 64 times.
✗ Branch 2 not taken.
|
64 | if (av_frame_is_writable(in)) { |
186 | 64 | direct = 1; | |
187 | 64 | out = in; | |
188 | } else { | ||
189 | ✗ | direct = 0; | |
190 | ✗ | out = ff_get_video_buffer(outlink, outlink->w, outlink->h); | |
191 | ✗ | if (!out) { | |
192 | ✗ | av_frame_free(&in); | |
193 | ✗ | return AVERROR(ENOMEM); | |
194 | } | ||
195 | ✗ | av_frame_copy_props(out, in); | |
196 | } | ||
197 | |||
198 |
4/6✓ Branch 0 taken 228 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 164 times.
✓ Branch 3 taken 64 times.
✓ Branch 4 taken 164 times.
✗ Branch 5 not taken.
|
228 | for (p = 0; p < 4 && in->data[p] && in->linesize[p]; p++) { |
199 | 164 | int w = inlink->w; | |
200 | 164 | int h = inlink->h; | |
201 | 164 | int r = s->radius; | |
202 |
2/2✓ Branch 0 taken 100 times.
✓ Branch 1 taken 64 times.
|
164 | if (p) { |
203 | 100 | w = s->chroma_w; | |
204 | 100 | h = s->chroma_h; | |
205 | 100 | r = s->chroma_r; | |
206 | } | ||
207 | |||
208 |
1/2✓ Branch 0 taken 164 times.
✗ Branch 1 not taken.
|
164 | if (FFMIN(w, h) > 2 * r) |
209 | 164 | filter(s, out->data[p], in->data[p], w, h, out->linesize[p], in->linesize[p], r); | |
210 | ✗ | else if (out->data[p] != in->data[p]) | |
211 | ✗ | av_image_copy_plane(out->data[p], out->linesize[p], in->data[p], in->linesize[p], w, h); | |
212 | } | ||
213 | |||
214 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 64 times.
|
64 | if (!direct) |
215 | ✗ | av_frame_free(&in); | |
216 | |||
217 | 64 | return ff_filter_frame(outlink, out); | |
218 | } | ||
219 | |||
220 | #define OFFSET(x) offsetof(GradFunContext, x) | ||
221 | #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM | ||
222 | |||
223 | static const AVOption gradfun_options[] = { | ||
224 | { "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 }, | ||
225 | { "radius", "The neighborhood to fit the gradient to.", OFFSET(radius), AV_OPT_TYPE_INT, { .i64 = 16 }, 4, 32, FLAGS }, | ||
226 | { NULL } | ||
227 | }; | ||
228 | |||
229 | AVFILTER_DEFINE_CLASS(gradfun); | ||
230 | |||
231 | static const AVFilterPad avfilter_vf_gradfun_inputs[] = { | ||
232 | { | ||
233 | .name = "default", | ||
234 | .type = AVMEDIA_TYPE_VIDEO, | ||
235 | .config_props = config_input, | ||
236 | .filter_frame = filter_frame, | ||
237 | }, | ||
238 | }; | ||
239 | |||
240 | const AVFilter ff_vf_gradfun = { | ||
241 | .name = "gradfun", | ||
242 | .description = NULL_IF_CONFIG_SMALL("Debands video quickly using gradients."), | ||
243 | .priv_size = sizeof(GradFunContext), | ||
244 | .priv_class = &gradfun_class, | ||
245 | .init = init, | ||
246 | .uninit = uninit, | ||
247 | FILTER_INPUTS(avfilter_vf_gradfun_inputs), | ||
248 | FILTER_OUTPUTS(ff_video_default_filterpad), | ||
249 | FILTER_PIXFMTS_ARRAY(pix_fmts), | ||
250 | .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, | ||
251 | }; | ||
252 |