Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * Copyright (c) 2012 Laurent de Soras | ||
3 | * Copyright (c) 2013 Fredrik Mellbin | ||
4 | * Copyright (c) 2015 Paul B Mahol | ||
5 | * Copyright (c) 2015 James Darnley | ||
6 | * | ||
7 | * This file is part of FFmpeg. | ||
8 | * | ||
9 | * FFmpeg is free software; you can redistribute it and/or | ||
10 | * modify it under the terms of the GNU Lesser General Public | ||
11 | * License as published by the Free Software Foundation; either | ||
12 | * version 2.1 of the License, or (at your option) any later version. | ||
13 | * | ||
14 | * FFmpeg is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
17 | * Lesser General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU Lesser General Public | ||
20 | * License along with FFmpeg; if not, write to the Free Software | ||
21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
22 | */ | ||
23 | |||
24 | #include "libavutil/imgutils.h" | ||
25 | #include "libavutil/opt.h" | ||
26 | #include "libavutil/pixdesc.h" | ||
27 | #include "libavutil/qsort.h" | ||
28 | #include "avfilter.h" | ||
29 | #include "filters.h" | ||
30 | #include "removegrain.h" | ||
31 | #include "video.h" | ||
32 | |||
33 | #define OFFSET(x) offsetof(RemoveGrainContext, x) | ||
34 | #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM | ||
35 | |||
36 | static const AVOption removegrain_options[] = { | ||
37 | { "m0", "set mode for 1st plane", OFFSET(mode[0]), AV_OPT_TYPE_INT, {.i64=0}, 0, 24, FLAGS }, | ||
38 | { "m1", "set mode for 2nd plane", OFFSET(mode[1]), AV_OPT_TYPE_INT, {.i64=0}, 0, 24, FLAGS }, | ||
39 | { "m2", "set mode for 3rd plane", OFFSET(mode[2]), AV_OPT_TYPE_INT, {.i64=0}, 0, 24, FLAGS }, | ||
40 | { "m3", "set mode for 4th plane", OFFSET(mode[3]), AV_OPT_TYPE_INT, {.i64=0}, 0, 24, FLAGS }, | ||
41 | {NULL} | ||
42 | }; | ||
43 | |||
44 | AVFILTER_DEFINE_CLASS(removegrain); | ||
45 | |||
46 | static const enum AVPixelFormat pix_fmts[] = { | ||
47 | AV_PIX_FMT_GRAY8, | ||
48 | AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV444P, | ||
49 | AV_PIX_FMT_YUVA420P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA444P, | ||
50 | AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P, | ||
51 | AV_PIX_FMT_YUVJ411P, AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ422P, | ||
52 | AV_PIX_FMT_YUVJ440P, AV_PIX_FMT_YUVJ444P, | ||
53 | AV_PIX_FMT_GBRP, AV_PIX_FMT_GBRAP, | ||
54 | AV_PIX_FMT_NONE | ||
55 | }; | ||
56 | |||
57 | #define REMOVE_GRAIN_SORT_AXIS \ | ||
58 | const int ma1 = FFMAX(a1, a8); \ | ||
59 | const int mi1 = FFMIN(a1, a8); \ | ||
60 | const int ma2 = FFMAX(a2, a7); \ | ||
61 | const int mi2 = FFMIN(a2, a7); \ | ||
62 | const int ma3 = FFMAX(a3, a6); \ | ||
63 | const int mi3 = FFMIN(a3, a6); \ | ||
64 | const int ma4 = FFMAX(a4, a5); \ | ||
65 | const int mi4 = FFMIN(a4, a5); | ||
66 | |||
67 | 149516 | static int mode01(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
68 | { | ||
69 | 149516 | const int mi = FFMIN(FFMIN(FFMIN(a1, a2), FFMIN(a3, a4)), FFMIN(FFMIN(a5, a6), FFMIN(a7, a8))); | |
70 | 149516 | const int ma = FFMAX(FFMAX(FFMAX(a1, a2), FFMAX(a3, a4)), FFMAX(FFMAX(a5, a6), FFMAX(a7, a8))); | |
71 | |||
72 | 149516 | return av_clip(c, mi, ma); | |
73 | } | ||
74 | |||
75 | 8093199 | static int cmp_int(const void *p1, const void *p2) | |
76 | { | ||
77 | 8093199 | int left = *(const int *)p1; | |
78 | 8093199 | int right = *(const int *)p2; | |
79 | 8093199 | return FFDIFFSIGN(left, right); | |
80 | } | ||
81 | |||
82 | 149516 | static int mode02(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
83 | { | ||
84 | 149516 | int a[8] = { a1, a2, a3, a4, a5, a6, a7, a8 }; | |
85 | |||
86 |
44/44✓ Branch 0 taken 430440 times.
✓ Branch 1 taken 156136 times.
✓ Branch 3 taken 187782 times.
✓ Branch 4 taken 242658 times.
✓ Branch 6 taken 34892 times.
✓ Branch 7 taken 152890 times.
✓ Branch 9 taken 98467 times.
✓ Branch 10 taken 144191 times.
✓ Branch 12 taken 177089 times.
✓ Branch 13 taken 253351 times.
✓ Branch 14 taken 126581 times.
✓ Branch 15 taken 303859 times.
✓ Branch 16 taken 651639 times.
✓ Branch 17 taken 122851 times.
✓ Branch 19 taken 406078 times.
✓ Branch 20 taken 245561 times.
✓ Branch 21 taken 535241 times.
✓ Branch 22 taken 267232 times.
✓ Branch 24 taken 434061 times.
✓ Branch 25 taken 101180 times.
✓ Branch 26 taken 101180 times.
✓ Branch 27 taken 267232 times.
✓ Branch 28 taken 368412 times.
✓ Branch 29 taken 303859 times.
✓ Branch 30 taken 95793 times.
✓ Branch 31 taken 208066 times.
✓ Branch 32 taken 87423 times.
✓ Branch 33 taken 8370 times.
✓ Branch 34 taken 14692 times.
✓ Branch 35 taken 72731 times.
✓ Branch 36 taken 63397 times.
✓ Branch 37 taken 10134 times.
✓ Branch 39 taken 50469 times.
✓ Branch 40 taken 12928 times.
✓ Branch 41 taken 10134 times.
✓ Branch 42 taken 12928 times.
✓ Branch 43 taken 142955 times.
✓ Branch 44 taken 150770 times.
✓ Branch 46 taken 49845 times.
✓ Branch 47 taken 106291 times.
✓ Branch 48 taken 586576 times.
✓ Branch 49 taken 150390 times.
✓ Branch 50 taken 443241 times.
✓ Branch 51 taken 149516 times.
|
2449361 | AV_QSORT(a, 8, int, cmp_int); |
87 | |||
88 | 149516 | return av_clip(c, a[2 - 1 ], a[7 - 1]); | |
89 | } | ||
90 | |||
91 | 149516 | static int mode03(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
92 | { | ||
93 | 149516 | int a[8] = { a1, a2, a3, a4, a5, a6, a7, a8 }; | |
94 | |||
95 |
44/44✓ Branch 0 taken 430440 times.
✓ Branch 1 taken 156136 times.
✓ Branch 3 taken 187782 times.
✓ Branch 4 taken 242658 times.
✓ Branch 6 taken 34892 times.
✓ Branch 7 taken 152890 times.
✓ Branch 9 taken 98467 times.
✓ Branch 10 taken 144191 times.
✓ Branch 12 taken 177089 times.
✓ Branch 13 taken 253351 times.
✓ Branch 14 taken 126581 times.
✓ Branch 15 taken 303859 times.
✓ Branch 16 taken 651639 times.
✓ Branch 17 taken 122851 times.
✓ Branch 19 taken 406078 times.
✓ Branch 20 taken 245561 times.
✓ Branch 21 taken 535241 times.
✓ Branch 22 taken 267232 times.
✓ Branch 24 taken 434061 times.
✓ Branch 25 taken 101180 times.
✓ Branch 26 taken 101180 times.
✓ Branch 27 taken 267232 times.
✓ Branch 28 taken 368412 times.
✓ Branch 29 taken 303859 times.
✓ Branch 30 taken 95793 times.
✓ Branch 31 taken 208066 times.
✓ Branch 32 taken 87423 times.
✓ Branch 33 taken 8370 times.
✓ Branch 34 taken 14692 times.
✓ Branch 35 taken 72731 times.
✓ Branch 36 taken 63397 times.
✓ Branch 37 taken 10134 times.
✓ Branch 39 taken 50469 times.
✓ Branch 40 taken 12928 times.
✓ Branch 41 taken 10134 times.
✓ Branch 42 taken 12928 times.
✓ Branch 43 taken 142955 times.
✓ Branch 44 taken 150770 times.
✓ Branch 46 taken 49845 times.
✓ Branch 47 taken 106291 times.
✓ Branch 48 taken 586576 times.
✓ Branch 49 taken 150390 times.
✓ Branch 50 taken 443241 times.
✓ Branch 51 taken 149516 times.
|
2449361 | AV_QSORT(a, 8, int, cmp_int); |
96 | |||
97 | 149516 | return av_clip(c, a[3 - 1 ], a[6 - 1]); | |
98 | } | ||
99 | |||
100 | 149516 | static int mode04(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
101 | { | ||
102 | 149516 | int a[8] = { a1, a2, a3, a4, a5, a6, a7, a8 }; | |
103 | |||
104 |
44/44✓ Branch 0 taken 430440 times.
✓ Branch 1 taken 156136 times.
✓ Branch 3 taken 187782 times.
✓ Branch 4 taken 242658 times.
✓ Branch 6 taken 34892 times.
✓ Branch 7 taken 152890 times.
✓ Branch 9 taken 98467 times.
✓ Branch 10 taken 144191 times.
✓ Branch 12 taken 177089 times.
✓ Branch 13 taken 253351 times.
✓ Branch 14 taken 126581 times.
✓ Branch 15 taken 303859 times.
✓ Branch 16 taken 651639 times.
✓ Branch 17 taken 122851 times.
✓ Branch 19 taken 406078 times.
✓ Branch 20 taken 245561 times.
✓ Branch 21 taken 535241 times.
✓ Branch 22 taken 267232 times.
✓ Branch 24 taken 434061 times.
✓ Branch 25 taken 101180 times.
✓ Branch 26 taken 101180 times.
✓ Branch 27 taken 267232 times.
✓ Branch 28 taken 368412 times.
✓ Branch 29 taken 303859 times.
✓ Branch 30 taken 95793 times.
✓ Branch 31 taken 208066 times.
✓ Branch 32 taken 87423 times.
✓ Branch 33 taken 8370 times.
✓ Branch 34 taken 14692 times.
✓ Branch 35 taken 72731 times.
✓ Branch 36 taken 63397 times.
✓ Branch 37 taken 10134 times.
✓ Branch 39 taken 50469 times.
✓ Branch 40 taken 12928 times.
✓ Branch 41 taken 10134 times.
✓ Branch 42 taken 12928 times.
✓ Branch 43 taken 142955 times.
✓ Branch 44 taken 150770 times.
✓ Branch 46 taken 49845 times.
✓ Branch 47 taken 106291 times.
✓ Branch 48 taken 586576 times.
✓ Branch 49 taken 150390 times.
✓ Branch 50 taken 443241 times.
✓ Branch 51 taken 149516 times.
|
2449361 | AV_QSORT(a, 8, int, cmp_int); |
105 | |||
106 | 149516 | return av_clip(c, a[4 - 1 ], a[5 - 1]); | |
107 | } | ||
108 | |||
109 | 149516 | static int mode05(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
110 | { | ||
111 | 149516 | REMOVE_GRAIN_SORT_AXIS | |
112 | |||
113 | 149516 | const int c1 = FFABS(c - av_clip(c, mi1, ma1)); | |
114 | 149516 | const int c2 = FFABS(c - av_clip(c, mi2, ma2)); | |
115 | 149516 | const int c3 = FFABS(c - av_clip(c, mi3, ma3)); | |
116 | 149516 | const int c4 = FFABS(c - av_clip(c, mi4, ma4)); | |
117 | |||
118 | 149516 | const int mindiff = FFMIN(FFMIN(c1, c2), FFMIN(c3, c4)); | |
119 | |||
120 | /* When adding SIMD notice the return order here: 4, 2, 3, 1. */ | ||
121 |
2/2✓ Branch 0 taken 116368 times.
✓ Branch 1 taken 33148 times.
|
149516 | if (mindiff == c4) { |
122 | 116368 | return av_clip(c, mi4, ma4); | |
123 |
2/2✓ Branch 0 taken 14995 times.
✓ Branch 1 taken 18153 times.
|
33148 | } else if (mindiff == c2) { |
124 | 14995 | return av_clip(c, mi2, ma2); | |
125 |
2/2✓ Branch 0 taken 14086 times.
✓ Branch 1 taken 4067 times.
|
18153 | } else if (mindiff == c3) { |
126 | 14086 | return av_clip(c, mi3, ma3); | |
127 | } | ||
128 | |||
129 | 4067 | return av_clip(c, mi1, ma1); | |
130 | } | ||
131 | |||
132 | 149516 | static int mode06(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
133 | { | ||
134 | 149516 | REMOVE_GRAIN_SORT_AXIS | |
135 | |||
136 | 149516 | const int d1 = ma1 - mi1; | |
137 | 149516 | const int d2 = ma2 - mi2; | |
138 | 149516 | const int d3 = ma3 - mi3; | |
139 | 149516 | const int d4 = ma4 - mi4; | |
140 | |||
141 | 149516 | const int cli1 = av_clip(c, mi1, ma1); | |
142 | 149516 | const int cli2 = av_clip(c, mi2, ma2); | |
143 | 149516 | const int cli3 = av_clip(c, mi3, ma3); | |
144 | 149516 | const int cli4 = av_clip(c, mi4, ma4); | |
145 | |||
146 | 149516 | const int c1 = av_clip_uint16((FFABS(c - cli1) << 1) + d1); | |
147 | 149516 | const int c2 = av_clip_uint16((FFABS(c - cli2) << 1) + d2); | |
148 | 149516 | const int c3 = av_clip_uint16((FFABS(c - cli3) << 1) + d3); | |
149 | 149516 | const int c4 = av_clip_uint16((FFABS(c - cli4) << 1) + d4); | |
150 | |||
151 | 149516 | const int mindiff = FFMIN(FFMIN(c1, c2), FFMIN(c3, c4)); | |
152 | |||
153 |
2/2✓ Branch 0 taken 30362 times.
✓ Branch 1 taken 119154 times.
|
149516 | if (mindiff == c4) { |
154 | 30362 | return cli4; | |
155 |
2/2✓ Branch 0 taken 26836 times.
✓ Branch 1 taken 92318 times.
|
119154 | } else if (mindiff == c2) { |
156 | 26836 | return cli2; | |
157 |
2/2✓ Branch 0 taken 85122 times.
✓ Branch 1 taken 7196 times.
|
92318 | } else if (mindiff == c3) { |
158 | 85122 | return cli3; | |
159 | } | ||
160 | |||
161 | 7196 | return cli1; | |
162 | } | ||
163 | |||
164 | 149516 | static int mode07(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
165 | { | ||
166 | 149516 | REMOVE_GRAIN_SORT_AXIS | |
167 | |||
168 | 149516 | const int d1 = ma1 - mi1; | |
169 | 149516 | const int d2 = ma2 - mi2; | |
170 | 149516 | const int d3 = ma3 - mi3; | |
171 | 149516 | const int d4 = ma4 - mi4; | |
172 | |||
173 | 149516 | const int cli1 = av_clip(c, mi1, ma1); | |
174 | 149516 | const int cli2 = av_clip(c, mi2, ma2); | |
175 | 149516 | const int cli3 = av_clip(c, mi3, ma3); | |
176 | 149516 | const int cli4 = av_clip(c, mi4, ma4); | |
177 | |||
178 | 149516 | const int c1 = FFABS(c - cli1) + d1; | |
179 | 149516 | const int c2 = FFABS(c - cli2) + d2; | |
180 | 149516 | const int c3 = FFABS(c - cli3) + d3; | |
181 | 149516 | const int c4 = FFABS(c - cli4) + d4; | |
182 | |||
183 | 149516 | const int mindiff = FFMIN(FFMIN(c1, c2), FFMIN(c3, c4)); | |
184 | |||
185 |
2/2✓ Branch 0 taken 30479 times.
✓ Branch 1 taken 119037 times.
|
149516 | if (mindiff == c4) { |
186 | 30479 | return cli4; | |
187 |
2/2✓ Branch 0 taken 27791 times.
✓ Branch 1 taken 91246 times.
|
119037 | } else if (mindiff == c2) { |
188 | 27791 | return cli2; | |
189 |
2/2✓ Branch 0 taken 84095 times.
✓ Branch 1 taken 7151 times.
|
91246 | } else if (mindiff == c3) { |
190 | 84095 | return cli3; | |
191 | } | ||
192 | |||
193 | 7151 | return cli1; | |
194 | } | ||
195 | |||
196 | 149516 | static int mode08(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
197 | { | ||
198 | 149516 | REMOVE_GRAIN_SORT_AXIS | |
199 | |||
200 | 149516 | const int d1 = ma1 - mi1; | |
201 | 149516 | const int d2 = ma2 - mi2; | |
202 | 149516 | const int d3 = ma3 - mi3; | |
203 | 149516 | const int d4 = ma4 - mi4; | |
204 | |||
205 | 149516 | const int cli1 = av_clip(c, mi1, ma1); | |
206 | 149516 | const int cli2 = av_clip(c, mi2, ma2); | |
207 | 149516 | const int cli3 = av_clip(c, mi3, ma3); | |
208 | 149516 | const int cli4 = av_clip(c, mi4, ma4); | |
209 | |||
210 | 149516 | const int c1 = av_clip_uint16(FFABS(c - cli1) + (d1 << 1)); | |
211 | 149516 | const int c2 = av_clip_uint16(FFABS(c - cli2) + (d2 << 1)); | |
212 | 149516 | const int c3 = av_clip_uint16(FFABS(c - cli3) + (d3 << 1)); | |
213 | 149516 | const int c4 = av_clip_uint16(FFABS(c - cli4) + (d4 << 1)); | |
214 | |||
215 | 149516 | const int mindiff = FFMIN(FFMIN(c1, c2), FFMIN(c3, c4)); | |
216 | |||
217 |
2/2✓ Branch 0 taken 31274 times.
✓ Branch 1 taken 118242 times.
|
149516 | if (mindiff == c4) { |
218 | 31274 | return cli4; | |
219 |
2/2✓ Branch 0 taken 25063 times.
✓ Branch 1 taken 93179 times.
|
118242 | } else if (mindiff == c2) { |
220 | 25063 | return cli2; | |
221 |
2/2✓ Branch 0 taken 83083 times.
✓ Branch 1 taken 10096 times.
|
93179 | } else if (mindiff == c3) { |
222 | 83083 | return cli3; | |
223 | } | ||
224 | |||
225 | 10096 | return cli1; | |
226 | } | ||
227 | |||
228 | 149516 | static int mode09(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
229 | { | ||
230 | 149516 | REMOVE_GRAIN_SORT_AXIS | |
231 | |||
232 | 149516 | const int d1 = ma1 - mi1; | |
233 | 149516 | const int d2 = ma2 - mi2; | |
234 | 149516 | const int d3 = ma3 - mi3; | |
235 | 149516 | const int d4 = ma4 - mi4; | |
236 | |||
237 | 149516 | const int mindiff = FFMIN(FFMIN(d1, d2), FFMIN(d3, d4)); | |
238 | |||
239 |
2/2✓ Branch 0 taken 31449 times.
✓ Branch 1 taken 118067 times.
|
149516 | if (mindiff == d4) { |
240 | 31449 | return av_clip(c, mi4, ma4); | |
241 |
2/2✓ Branch 0 taken 25061 times.
✓ Branch 1 taken 93006 times.
|
118067 | } else if (mindiff == d2) { |
242 | 25061 | return av_clip(c, mi2, ma2); | |
243 |
2/2✓ Branch 0 taken 82804 times.
✓ Branch 1 taken 10202 times.
|
93006 | } else if (mindiff == d3) { |
244 | 82804 | return av_clip(c, mi3, ma3); | |
245 | } | ||
246 | |||
247 | 10202 | return av_clip(c, mi1, ma1); | |
248 | } | ||
249 | |||
250 | 149516 | static int mode10(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
251 | { | ||
252 | 149516 | const int d1 = FFABS(c - a1); | |
253 | 149516 | const int d2 = FFABS(c - a2); | |
254 | 149516 | const int d3 = FFABS(c - a3); | |
255 | 149516 | const int d4 = FFABS(c - a4); | |
256 | 149516 | const int d5 = FFABS(c - a5); | |
257 | 149516 | const int d6 = FFABS(c - a6); | |
258 | 149516 | const int d7 = FFABS(c - a7); | |
259 | 149516 | const int d8 = FFABS(c - a8); | |
260 | |||
261 | 149516 | const int mindiff = FFMIN(FFMIN(FFMIN(d1, d2), FFMIN(d3, d4)), | |
262 | FFMIN(FFMIN(d5, d6), FFMIN(d7, d8))); | ||
263 | |||
264 |
2/2✓ Branch 0 taken 14257 times.
✓ Branch 1 taken 135259 times.
|
149516 | if (mindiff == d7) return a7; |
265 |
2/2✓ Branch 0 taken 4628 times.
✓ Branch 1 taken 130631 times.
|
135259 | if (mindiff == d8) return a8; |
266 |
2/2✓ Branch 0 taken 48272 times.
✓ Branch 1 taken 82359 times.
|
130631 | if (mindiff == d6) return a6; |
267 |
2/2✓ Branch 0 taken 12713 times.
✓ Branch 1 taken 69646 times.
|
82359 | if (mindiff == d2) return a2; |
268 |
2/2✓ Branch 0 taken 41309 times.
✓ Branch 1 taken 28337 times.
|
69646 | if (mindiff == d3) return a3; |
269 |
2/2✓ Branch 0 taken 3551 times.
✓ Branch 1 taken 24786 times.
|
28337 | if (mindiff == d1) return a1; |
270 |
2/2✓ Branch 0 taken 18916 times.
✓ Branch 1 taken 5870 times.
|
24786 | if (mindiff == d5) return a5; |
271 | |||
272 | 5870 | return a4; | |
273 | } | ||
274 | |||
275 | 299032 | static int mode1112(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
276 | { | ||
277 | 299032 | const int sum = 4 * c + 2 * (a2 + a4 + a5 + a7) + a1 + a3 + a6 + a8; | |
278 | 299032 | const int val = (sum + 8) >> 4; | |
279 | |||
280 | 299032 | return val; | |
281 | } | ||
282 | |||
283 | 149516 | static int mode1314(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
284 | { | ||
285 | 149516 | const int d1 = FFABS(a1 - a8); | |
286 | 149516 | const int d2 = FFABS(a2 - a7); | |
287 | 149516 | const int d3 = FFABS(a3 - a6); | |
288 | |||
289 | 149516 | const int mindiff = FFMIN(FFMIN(d1, d2), d3); | |
290 | |||
291 |
2/2✓ Branch 0 taken 29535 times.
✓ Branch 1 taken 119981 times.
|
149516 | if (mindiff == d2) { |
292 | 29535 | return (a2 + a7 + 1) >> 1; | |
293 | } | ||
294 |
2/2✓ Branch 0 taken 99814 times.
✓ Branch 1 taken 20167 times.
|
119981 | if (mindiff == d3) { |
295 | 99814 | return (a3 + a6 + 1) >> 1; | |
296 | } | ||
297 | |||
298 | 20167 | return (a1 + a8 + 1) >> 1; | |
299 | } | ||
300 | |||
301 | 149516 | static int mode1516(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
302 | { | ||
303 | 149516 | const int d1 = FFABS(a1 - a8); | |
304 | 149516 | const int d2 = FFABS(a2 - a7); | |
305 | 149516 | const int d3 = FFABS(a3 - a6); | |
306 | |||
307 | 149516 | const int mindiff = FFMIN(FFMIN(d1, d2), d3); | |
308 | 149516 | const int average = (2 * (a2 + a7) + a1 + a3 + a6 + a8 + 4) >> 3; | |
309 | |||
310 |
2/2✓ Branch 0 taken 29535 times.
✓ Branch 1 taken 119981 times.
|
149516 | if (mindiff == d2) { |
311 | 29535 | return av_clip(average, FFMIN(a2, a7), FFMAX(a2, a7)); | |
312 | } | ||
313 |
2/2✓ Branch 0 taken 99814 times.
✓ Branch 1 taken 20167 times.
|
119981 | if (mindiff == d3) { |
314 | 99814 | return av_clip(average, FFMIN(a3, a6), FFMAX(a3, a6)); | |
315 | } | ||
316 | |||
317 | 20167 | return av_clip(average, FFMIN(a1, a8), FFMAX(a1, a8)); | |
318 | } | ||
319 | |||
320 | 149516 | static int mode17(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
321 | { | ||
322 | 149516 | REMOVE_GRAIN_SORT_AXIS | |
323 | |||
324 | 149516 | const int l = FFMAX(FFMAX(mi1, mi2), FFMAX(mi3, mi4)); | |
325 | 149516 | const int u = FFMIN(FFMIN(ma1, ma2), FFMIN(ma3, ma4)); | |
326 | |||
327 | 149516 | return av_clip(c, FFMIN(l, u), FFMAX(l, u)); | |
328 | } | ||
329 | |||
330 | 149516 | static int mode18(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
331 | { | ||
332 | 149516 | const int d1 = FFMAX(FFABS(c - a1), FFABS(c - a8)); | |
333 | 149516 | const int d2 = FFMAX(FFABS(c - a2), FFABS(c - a7)); | |
334 | 149516 | const int d3 = FFMAX(FFABS(c - a3), FFABS(c - a6)); | |
335 | 149516 | const int d4 = FFMAX(FFABS(c - a4), FFABS(c - a5)); | |
336 | |||
337 | 149516 | const int mindiff = FFMIN(FFMIN(d1, d2), FFMIN(d3, d4)); | |
338 | |||
339 |
2/2✓ Branch 0 taken 30555 times.
✓ Branch 1 taken 118961 times.
|
149516 | if (mindiff == d4) { |
340 | 30555 | return av_clip(c, FFMIN(a4, a5), FFMAX(a4, a5)); | |
341 | } | ||
342 |
2/2✓ Branch 0 taken 26866 times.
✓ Branch 1 taken 92095 times.
|
118961 | if (mindiff == d2) { |
343 | 26866 | return av_clip(c, FFMIN(a2, a7), FFMAX(a2, a7)); | |
344 | } | ||
345 |
2/2✓ Branch 0 taken 85057 times.
✓ Branch 1 taken 7038 times.
|
92095 | if (mindiff == d3) { |
346 | 85057 | return av_clip(c, FFMIN(a3, a6), FFMAX(a3, a6)); | |
347 | } | ||
348 | |||
349 | 7038 | return av_clip(c, FFMIN(a1, a8), FFMAX(a1, a8)); | |
350 | } | ||
351 | |||
352 | 149516 | static int mode19(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
353 | { | ||
354 | 149516 | const int sum = a1 + a2 + a3 + a4 + a5 + a6 + a7 + a8; | |
355 | 149516 | const int val = (sum + 4) >> 3; | |
356 | |||
357 | 149516 | return val; | |
358 | } | ||
359 | |||
360 | 149516 | static int mode20(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
361 | { | ||
362 | 149516 | const int sum = a1 + a2 + a3 + a4 + c + a5 + a6 + a7 + a8; | |
363 | 149516 | const int val = (sum + 4) / 9; | |
364 | |||
365 | 149516 | return val; | |
366 | } | ||
367 | |||
368 | 149516 | static int mode21(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
369 | { | ||
370 | 149516 | const int l1l = (a1 + a8) >> 1; | |
371 | 149516 | const int l2l = (a2 + a7) >> 1; | |
372 | 149516 | const int l3l = (a3 + a6) >> 1; | |
373 | 149516 | const int l4l = (a4 + a5) >> 1; | |
374 | |||
375 | 149516 | const int l1h = (a1 + a8 + 1) >> 1; | |
376 | 149516 | const int l2h = (a2 + a7 + 1) >> 1; | |
377 | 149516 | const int l3h = (a3 + a6 + 1) >> 1; | |
378 | 149516 | const int l4h = (a4 + a5 + 1) >> 1; | |
379 | |||
380 | 149516 | const int mi = FFMIN(FFMIN(l1l, l2l), FFMIN(l3l, l4l)); | |
381 | 149516 | const int ma = FFMAX(FFMAX(l1h, l2h), FFMAX(l3h, l4h)); | |
382 | |||
383 | 149516 | return av_clip(c, mi, ma); | |
384 | } | ||
385 | |||
386 | 149516 | static int mode22(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
387 | { | ||
388 | 149516 | const int l1 = (a1 + a8 + 1) >> 1; | |
389 | 149516 | const int l2 = (a2 + a7 + 1) >> 1; | |
390 | 149516 | const int l3 = (a3 + a6 + 1) >> 1; | |
391 | 149516 | const int l4 = (a4 + a5 + 1) >> 1; | |
392 | |||
393 | 149516 | const int mi = FFMIN(FFMIN(l1, l2), FFMIN(l3, l4)); | |
394 | 149516 | const int ma = FFMAX(FFMAX(l1, l2), FFMAX(l3, l4)); | |
395 | |||
396 | 149516 | return av_clip(c, mi, ma); | |
397 | } | ||
398 | |||
399 | 149516 | static int mode23(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
400 | { | ||
401 | 149516 | REMOVE_GRAIN_SORT_AXIS | |
402 | |||
403 | 149516 | const int linediff1 = ma1 - mi1; | |
404 | 149516 | const int linediff2 = ma2 - mi2; | |
405 | 149516 | const int linediff3 = ma3 - mi3; | |
406 | 149516 | const int linediff4 = ma4 - mi4; | |
407 | |||
408 | 149516 | const int u1 = FFMIN(c - ma1, linediff1); | |
409 | 149516 | const int u2 = FFMIN(c - ma2, linediff2); | |
410 | 149516 | const int u3 = FFMIN(c - ma3, linediff3); | |
411 | 149516 | const int u4 = FFMIN(c - ma4, linediff4); | |
412 | 149516 | const int u = FFMAX(FFMAX(FFMAX(u1, u2), FFMAX(u3, u4)), 0); | |
413 | |||
414 | 149516 | const int d1 = FFMIN(mi1 - c, linediff1); | |
415 | 149516 | const int d2 = FFMIN(mi2 - c, linediff2); | |
416 | 149516 | const int d3 = FFMIN(mi3 - c, linediff3); | |
417 | 149516 | const int d4 = FFMIN(mi4 - c, linediff4); | |
418 | 149516 | const int d = FFMAX(FFMAX(FFMAX(d1, d2), FFMAX(d3, d4)), 0); | |
419 | |||
420 | 149516 | return c - u + d; // This probably will never overflow. | |
421 | } | ||
422 | |||
423 | 149516 | static int mode24(int c, int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) | |
424 | { | ||
425 | 149516 | REMOVE_GRAIN_SORT_AXIS | |
426 | |||
427 | 149516 | const int linediff1 = ma1 - mi1; | |
428 | 149516 | const int linediff2 = ma2 - mi2; | |
429 | 149516 | const int linediff3 = ma3 - mi3; | |
430 | 149516 | const int linediff4 = ma4 - mi4; | |
431 | |||
432 | 149516 | const int tu1 = c - ma1; | |
433 | 149516 | const int tu2 = c - ma2; | |
434 | 149516 | const int tu3 = c - ma3; | |
435 | 149516 | const int tu4 = c - ma4; | |
436 | |||
437 | 149516 | const int u1 = FFMIN(tu1, linediff1 - tu1); | |
438 | 149516 | const int u2 = FFMIN(tu2, linediff2 - tu2); | |
439 | 149516 | const int u3 = FFMIN(tu3, linediff3 - tu3); | |
440 | 149516 | const int u4 = FFMIN(tu4, linediff4 - tu4); | |
441 | 149516 | const int u = FFMAX(FFMAX(FFMAX(u1, u2), FFMAX(u3, u4)), 0); | |
442 | |||
443 | 149516 | const int td1 = mi1 - c; | |
444 | 149516 | const int td2 = mi2 - c; | |
445 | 149516 | const int td3 = mi3 - c; | |
446 | 149516 | const int td4 = mi4 - c; | |
447 | |||
448 | 149516 | const int d1 = FFMIN(td1, linediff1 - td1); | |
449 | 149516 | const int d2 = FFMIN(td2, linediff2 - td2); | |
450 | 149516 | const int d3 = FFMIN(td3, linediff3 - td3); | |
451 | 149516 | const int d4 = FFMIN(td4, linediff4 - td4); | |
452 | 149516 | const int d = FFMAX(FFMAX(FFMAX(d1, d2), FFMAX(d3, d4)), 0); | |
453 | |||
454 | 149516 | return c - u + d; // This probably will never overflow. | |
455 | } | ||
456 | |||
457 | 25 | static int config_input(AVFilterLink *inlink) | |
458 | { | ||
459 | 25 | RemoveGrainContext *s = inlink->dst->priv; | |
460 | 25 | const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format); | |
461 | int i; | ||
462 | |||
463 | 25 | s->nb_planes = av_pix_fmt_count_planes(inlink->format); | |
464 | |||
465 | 25 | s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h); | |
466 | 25 | s->planeheight[0] = s->planeheight[3] = inlink->h; | |
467 | 25 | s->planewidth[1] = s->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w); | |
468 | 25 | s->planewidth[0] = s->planewidth[3] = inlink->w; | |
469 | |||
470 |
2/2✓ Branch 0 taken 75 times.
✓ Branch 1 taken 25 times.
|
100 | for (i = 0; i < s->nb_planes; i++) { |
471 |
25/25✓ Branch 0 taken 3 times.
✓ Branch 1 taken 3 times.
✓ Branch 2 taken 3 times.
✓ Branch 3 taken 3 times.
✓ Branch 4 taken 3 times.
✓ Branch 5 taken 3 times.
✓ Branch 6 taken 3 times.
✓ Branch 7 taken 3 times.
✓ Branch 8 taken 3 times.
✓ Branch 9 taken 3 times.
✓ Branch 10 taken 3 times.
✓ Branch 11 taken 3 times.
✓ Branch 12 taken 3 times.
✓ Branch 13 taken 3 times.
✓ Branch 14 taken 3 times.
✓ Branch 15 taken 3 times.
✓ Branch 16 taken 3 times.
✓ Branch 17 taken 3 times.
✓ Branch 18 taken 3 times.
✓ Branch 19 taken 3 times.
✓ Branch 20 taken 3 times.
✓ Branch 21 taken 3 times.
✓ Branch 22 taken 3 times.
✓ Branch 23 taken 3 times.
✓ Branch 24 taken 3 times.
|
75 | switch (s->mode[i]) { |
472 | 3 | case 1: s->rg[i] = mode01; break; | |
473 | 3 | case 2: s->rg[i] = mode02; break; | |
474 | 3 | case 3: s->rg[i] = mode03; break; | |
475 | 3 | case 4: s->rg[i] = mode04; break; | |
476 | 3 | case 5: s->rg[i] = mode05; break; | |
477 | 3 | case 6: s->rg[i] = mode06; break; | |
478 | 3 | case 7: s->rg[i] = mode07; break; | |
479 | 3 | case 8: s->rg[i] = mode08; break; | |
480 | 3 | case 9: s->rg[i] = mode09; break; | |
481 | 3 | case 10: s->rg[i] = mode10; break; | |
482 | 3 | case 11: s->rg[i] = mode1112; break; | |
483 | 3 | case 12: s->rg[i] = mode1112; break; | |
484 | 3 | case 13: s->skip_odd = 1; | |
485 | 3 | s->rg[i] = mode1314; break; | |
486 | 3 | case 14: s->skip_even = 1; | |
487 | 3 | s->rg[i] = mode1314; break; | |
488 | 3 | case 15: s->skip_odd = 1; | |
489 | 3 | s->rg[i] = mode1516; break; | |
490 | 3 | case 16: s->skip_even = 1; | |
491 | 3 | s->rg[i] = mode1516; break; | |
492 | 3 | case 17: s->rg[i] = mode17; break; | |
493 | 3 | case 18: s->rg[i] = mode18; break; | |
494 | 3 | case 19: s->rg[i] = mode19; break; | |
495 | 3 | case 20: s->rg[i] = mode20; break; | |
496 | 3 | case 21: s->rg[i] = mode21; break; | |
497 | 3 | case 22: s->rg[i] = mode22; break; | |
498 | 3 | case 23: s->rg[i] = mode23; break; | |
499 | 3 | case 24: s->rg[i] = mode24; break; | |
500 | } | ||
501 | } | ||
502 | |||
503 | #if ARCH_X86 | ||
504 | 25 | ff_removegrain_init_x86(s); | |
505 | #endif | ||
506 | |||
507 | 25 | return 0; | |
508 | } | ||
509 | |||
510 | typedef struct ThreadData { | ||
511 | AVFrame *in, *out; | ||
512 | int plane; | ||
513 | } ThreadData; | ||
514 | |||
515 | 648 | static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) | |
516 | { | ||
517 | 648 | RemoveGrainContext *s = ctx->priv; | |
518 | 648 | ThreadData *td = arg; | |
519 | 648 | AVFrame *in = td->in; | |
520 | 648 | AVFrame *out = td->out; | |
521 | 648 | const int i = td->plane; | |
522 | 648 | const int height = s->planeheight[i]; | |
523 | 648 | const int om = in->linesize[i] - 1; | |
524 | 648 | const int o0 = in->linesize[i] ; | |
525 | 648 | const int op = in->linesize[i] + 1; | |
526 | 648 | int start = (height * jobnr ) / nb_jobs; | |
527 | 648 | int end = (height * (jobnr+1)) / nb_jobs; | |
528 | int x, y; | ||
529 | |||
530 | 648 | start = FFMAX(1, start); | |
531 | 648 | end = FFMIN(height-1, end); | |
532 |
2/2✓ Branch 0 taken 13680 times.
✓ Branch 1 taken 648 times.
|
14328 | for (y = start; y < end; y++) { |
533 | 13680 | uint8_t *dst = out->data[i]; | |
534 | 13680 | uint8_t *src = in->data[i]; | |
535 | |||
536 | 13680 | src = in->data[i] + y * in->linesize[i]; | |
537 | 13680 | dst = out->data[i] + y * out->linesize[i]; | |
538 | |||
539 |
4/4✓ Branch 0 taken 1140 times.
✓ Branch 1 taken 12540 times.
✓ Branch 2 taken 570 times.
✓ Branch 3 taken 570 times.
|
13680 | if (s->skip_even && !(y & 1)) { |
540 | 570 | memcpy(dst, src, s->planewidth[i]); | |
541 | 570 | continue; | |
542 | } | ||
543 |
4/4✓ Branch 0 taken 1140 times.
✓ Branch 1 taken 11970 times.
✓ Branch 2 taken 570 times.
✓ Branch 3 taken 570 times.
|
13110 | if (s->skip_odd && y & 1) { |
544 | 570 | memcpy(dst, src, s->planewidth[i]); | |
545 | 570 | continue; | |
546 | } | ||
547 | |||
548 | 12540 | *dst++ = *src++; | |
549 | |||
550 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 12540 times.
|
12540 | if (s->fl[i]) { |
551 | ✗ | int w_asm = (s->planewidth[i] - 2) & ~15; | |
552 | |||
553 | ✗ | s->fl[i](dst, src, in->linesize[i], w_asm); | |
554 | |||
555 | ✗ | x = 1 + w_asm; | |
556 | ✗ | dst += w_asm; | |
557 | ✗ | src += w_asm; | |
558 | } else | ||
559 | 12540 | x = 1; | |
560 | |||
561 |
2/2✓ Branch 0 taken 3289352 times.
✓ Branch 1 taken 12540 times.
|
3301892 | for (; x < s->planewidth[i] - 1; x++) { |
562 | 3289352 | const int a1 = src[-op]; | |
563 | 3289352 | const int a2 = src[-o0]; | |
564 | 3289352 | const int a3 = src[-om]; | |
565 | 3289352 | const int a4 = src[-1 ]; | |
566 | 3289352 | const int c = src[ 0 ]; | |
567 | 3289352 | const int a5 = src[ 1 ]; | |
568 | 3289352 | const int a6 = src[ om]; | |
569 | 3289352 | const int a7 = src[ o0]; | |
570 | 3289352 | const int a8 = src[ op]; | |
571 | |||
572 | 3289352 | const int res = s->rg[i](c, a1, a2, a3, a4, a5, a6, a7, a8); | |
573 | |||
574 | 3289352 | *dst = res; | |
575 | 3289352 | dst++, src++; | |
576 | } | ||
577 | 12540 | dst[0] = src[0]; | |
578 | } | ||
579 | |||
580 | 648 | return 0; | |
581 | } | ||
582 | |||
583 | 25 | static int filter_frame(AVFilterLink *inlink, AVFrame *in) | |
584 | { | ||
585 | 25 | AVFilterContext *ctx = inlink->dst; | |
586 | 25 | AVFilterLink *outlink = ctx->outputs[0]; | |
587 | 25 | RemoveGrainContext *s = ctx->priv; | |
588 | ThreadData td; | ||
589 | AVFrame *out; | ||
590 | int i; | ||
591 | |||
592 | 25 | out = ff_get_video_buffer(outlink, outlink->w, outlink->h); | |
593 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 25 times.
|
25 | if (!out) { |
594 | ✗ | av_frame_free(&in); | |
595 | ✗ | return AVERROR(ENOMEM); | |
596 | } | ||
597 | 25 | av_frame_copy_props(out, in); | |
598 | |||
599 |
2/2✓ Branch 0 taken 75 times.
✓ Branch 1 taken 25 times.
|
100 | for (i = 0; i < s->nb_planes; i++) { |
600 | 75 | uint8_t *dst = out->data[i]; | |
601 | 75 | uint8_t *src = in->data[i]; | |
602 | |||
603 |
2/2✓ Branch 0 taken 3 times.
✓ Branch 1 taken 72 times.
|
75 | if (s->mode[i] == 0) { |
604 | 3 | av_image_copy_plane(dst, out->linesize[i], | |
605 | 3 | src, in->linesize[i], | |
606 | s->planewidth[i], s->planeheight[i]); | ||
607 | 3 | continue; | |
608 | } | ||
609 | |||
610 | 72 | memcpy(dst, src, s->planewidth[i]); | |
611 | |||
612 | 72 | td.in = in; td.out = out; td.plane = i; | |
613 | 72 | ff_filter_execute(ctx, filter_slice, &td, NULL, | |
614 |
1/2✓ Branch 0 taken 72 times.
✗ Branch 1 not taken.
|
72 | FFMIN(s->planeheight[i], ff_filter_get_nb_threads(ctx))); |
615 | |||
616 | 72 | src = in->data[i] + (s->planeheight[i] - 1) * in->linesize[i]; | |
617 | 72 | dst = out->data[i] + (s->planeheight[i] - 1) * out->linesize[i]; | |
618 | 72 | memcpy(dst, src, s->planewidth[i]); | |
619 | } | ||
620 | |||
621 | 25 | av_frame_free(&in); | |
622 | 25 | return ff_filter_frame(outlink, out); | |
623 | } | ||
624 | |||
625 | static const AVFilterPad removegrain_inputs[] = { | ||
626 | { | ||
627 | .name = "default", | ||
628 | .type = AVMEDIA_TYPE_VIDEO, | ||
629 | .filter_frame = filter_frame, | ||
630 | .config_props = config_input, | ||
631 | }, | ||
632 | }; | ||
633 | |||
634 | const AVFilter ff_vf_removegrain = { | ||
635 | .name = "removegrain", | ||
636 | .description = NULL_IF_CONFIG_SMALL("Remove grain."), | ||
637 | .priv_size = sizeof(RemoveGrainContext), | ||
638 | FILTER_INPUTS(removegrain_inputs), | ||
639 | FILTER_OUTPUTS(ff_video_default_filterpad), | ||
640 | FILTER_PIXFMTS_ARRAY(pix_fmts), | ||
641 | .priv_class = &removegrain_class, | ||
642 | .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS, | ||
643 | }; | ||
644 |