1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
|
/* lapsharp.c
Copyright (c) 2003-2020 HandBrake Team
This file is part of the HandBrake source code
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License v2.
For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
*/
#include "handbrake/handbrake.h"
#define LAPSHARP_STRENGTH_LUMA_DEFAULT 0.2
#define LAPSHARP_STRENGTH_CHROMA_DEFAULT 0.2
#define LAPSHARP_KERNELS 4
#define LAPSHARP_KERNEL_LUMA_DEFAULT 2
#define LAPSHARP_KERNEL_CHROMA_DEFAULT 2
typedef struct
{
double strength; // strength
int kernel; // which kernel to use; kernels[kernel]
} lapsharp_plane_context_t;
typedef struct {
const int *mem;
const int size;
const double coef;
} kernel_t;
// 4-neighbor Laplacian kernel (lap)
// Sharpens vertical and horizontal edges, less effective on diagonals
// size = 3, coef = 1.0
static const int kernel_lap[] =
{
0, -1, 0,
-1, 5, -1,
0, -1, 0
};
// Isotropic Laplacian kernel (isolap)
// Minimial directionality, sharpens all edges similarly
// size = 3, coef = 1.0 / 5
static const int kernel_isolap[] =
{
-1, -4, -1,
-4, 25, -4,
-1, -4, -1
};
// Laplacian of Gaussian kernel (log)
// Slight noise and grain rejection
// σ ~= 1
// size = 5, coef = 1.0 / 5
static const int kernel_log[] =
{
0, 0, -1, 0, 0,
0, -1, -2, -1, 0,
-1, -2, 21, -2, -1,
0, -1, -2, -1, 0,
0, 0, -1, 0, 0
};
// Isotropic Laplacian of Gaussian kernel (isolog)
// Minimial directionality, plus noise and grain rejection
// σ ~= 1.2
// size = 5, coef = 1.0 / 15
static const int kernel_isolog[] =
{
0, -1, -1, -1, 0,
-1, -3, -4, -3, -1,
-1, -4, 55, -4, -1,
-1, -3, -4, -3, -1,
0, -1, -1, -1, 0
};
static kernel_t kernels[] =
{
{ kernel_lap, 3, 1.0 },
{ kernel_isolap, 3, 1.0 / 5 },
{ kernel_log, 5, 1.0 / 5 },
{ kernel_isolog, 5, 1.0 / 15 }
};
struct hb_filter_private_s
{
lapsharp_plane_context_t plane_ctx[3];
hb_filter_init_t input;
hb_filter_init_t output;
};
static int hb_lapsharp_init(hb_filter_object_t *filter,
hb_filter_init_t *init);
static int hb_lapsharp_work(hb_filter_object_t *filter,
hb_buffer_t ** buf_in,
hb_buffer_t ** buf_out);
static void hb_lapsharp_close(hb_filter_object_t *filter);
static const char hb_lapsharp_template[] =
"y-strength=^"HB_FLOAT_REG"$:y-kernel=^"HB_ALL_REG"$:"
"cb-strength=^"HB_FLOAT_REG"$:cb-kernel=^"HB_ALL_REG"$:"
"cr-strength=^"HB_FLOAT_REG"$:cr-kernel=^"HB_ALL_REG"$";
hb_filter_object_t hb_filter_lapsharp =
{
.id = HB_FILTER_LAPSHARP,
.enforce_order = 1,
.name = "Sharpen (lapsharp)",
.settings = NULL,
.init = hb_lapsharp_init,
.work = hb_lapsharp_work,
.close = hb_lapsharp_close,
.settings_template = hb_lapsharp_template,
};
static void hb_lapsharp(const uint8_t *src,
uint8_t *dst,
const int width,
const int height,
const int stride,
lapsharp_plane_context_t * ctx)
{
const kernel_t *kernel = &kernels[ctx->kernel];
// Sharpen using selected kernel
const int offset_min = -((kernel->size - 1) / 2);
const int offset_max = (kernel->size + 1) / 2;
const int stride_border = (stride - width) / 2;
int16_t pixel;
for (int y = 0; y < height; y++)
{
for (int x = 0; x < width; x++)
{
if ((y < offset_max) ||
(y > height - offset_max) ||
(x < stride_border + offset_max) ||
(x > width + stride_border - offset_max))
{
*(dst + stride*y + x) = *(src + stride*y + x);
continue;
}
pixel = 0;
for (int k = offset_min; k < offset_max; k++)
{
for (int j = offset_min; j < offset_max; j++)
{
pixel += kernel->mem[((j - offset_min) * kernel->size) + k - offset_min] * *(src + stride*(y + j) + (x + k));
}
}
pixel = (int16_t)(((pixel * kernel->coef) - *(src + stride*y + x)) * ctx->strength) + *(src + stride*y + x);
pixel = pixel < 0 ? 0 : pixel;
pixel = pixel > 255 ? 255 : pixel;
*(dst + stride*y + x) = (uint8_t)(pixel);
}
}
}
static int hb_lapsharp_init(hb_filter_object_t *filter,
hb_filter_init_t *init)
{
filter->private_data = calloc(sizeof(struct hb_filter_private_s), 1);
hb_filter_private_t * pv = filter->private_data;
char *kernel_string[3];
pv->input = *init;
// Mark parameters unset
for (int c = 0; c < 3; c++)
{
pv->plane_ctx[c].strength = -1;
pv->plane_ctx[c].kernel = -1;
kernel_string[c] = NULL;
}
// Read user parameters
if (filter->settings != NULL)
{
hb_dict_t * dict = filter->settings;
hb_dict_extract_double(&pv->plane_ctx[0].strength, dict, "y-strength");
hb_dict_extract_string(&kernel_string[0], dict, "y-kernel");
hb_dict_extract_double(&pv->plane_ctx[1].strength, dict, "cb-strength");
hb_dict_extract_string(&kernel_string[1], dict, "cb-kernel");
hb_dict_extract_double(&pv->plane_ctx[2].strength, dict, "cr-strength");
hb_dict_extract_string(&kernel_string[2], dict, "cr-kernel");
}
// Convert kernel user string to internal id
for (int c = 0; c < 3; c++)
{
lapsharp_plane_context_t * ctx = &pv->plane_ctx[c];
ctx->kernel = -1;
if (kernel_string[c] == NULL)
{
continue;
}
if (!strcasecmp(kernel_string[c], "lap"))
{
ctx->kernel = 0;
}
else if (!strcasecmp(kernel_string[c], "isolap"))
{
ctx->kernel = 1;
}
else if (!strcasecmp(kernel_string[c], "log"))
{
ctx->kernel = 2;
}
else if (!strcasecmp(kernel_string[c], "isolog"))
{
ctx->kernel = 3;
}
free(kernel_string[c]);
}
// Cascade values
// Cr not set; inherit Cb. Cb not set; inherit Y. Y not set; defaults.
for (int c = 1; c < 3; c++)
{
lapsharp_plane_context_t * prev_ctx = &pv->plane_ctx[c - 1];
lapsharp_plane_context_t * ctx = &pv->plane_ctx[c];
if (ctx->strength == -1) ctx->strength = prev_ctx->strength;
if (ctx->kernel == -1) ctx->kernel = prev_ctx->kernel;
}
for (int c = 0; c < 3; c++)
{
lapsharp_plane_context_t * ctx = &pv->plane_ctx[c];
// Replace unset values with defaults
if (ctx->strength == -1)
{
ctx->strength = c ? LAPSHARP_STRENGTH_CHROMA_DEFAULT :
LAPSHARP_STRENGTH_LUMA_DEFAULT;
}
if (ctx->kernel == -1)
{
ctx->kernel = c ? LAPSHARP_KERNEL_CHROMA_DEFAULT :
LAPSHARP_KERNEL_LUMA_DEFAULT;
}
// Sanitize
if (ctx->strength < 0) ctx->strength = 0;
if (ctx->strength > 1.5) ctx->strength = 1.5;
if ((ctx->kernel < 0) || (ctx->kernel >= LAPSHARP_KERNELS))
{
ctx->kernel = c ? LAPSHARP_KERNEL_CHROMA_DEFAULT : LAPSHARP_KERNEL_LUMA_DEFAULT;
}
}
pv->output = *init;
return 0;
}
static void hb_lapsharp_close(hb_filter_object_t * filter)
{
hb_filter_private_t *pv = filter->private_data;
if (pv == NULL)
{
return;
}
free(pv);
filter->private_data = NULL;
}
static int hb_lapsharp_work(hb_filter_object_t *filter,
hb_buffer_t ** buf_in,
hb_buffer_t ** buf_out)
{
hb_filter_private_t *pv = filter->private_data;
hb_buffer_t *in = *buf_in, *out;
if (in->s.flags & HB_BUF_FLAG_EOF)
{
*buf_out = in;
*buf_in = NULL;
return HB_FILTER_DONE;
}
hb_frame_buffer_mirror_stride(in);
out = hb_frame_buffer_init(pv->output.pix_fmt, in->f.width, in->f.height);
out->f.color_prim = pv->output.color_prim;
out->f.color_transfer = pv->output.color_transfer;
out->f.color_matrix = pv->output.color_matrix;
out->f.color_range = pv->output.color_range ;
int c;
for (c = 0; c < 3; c++)
{
lapsharp_plane_context_t * ctx = &pv->plane_ctx[c];
hb_lapsharp(in->plane[c].data,
out->plane[c].data,
in->plane[c].width,
in->plane[c].height,
in->plane[c].stride,
ctx);
}
out->s = in->s;
*buf_out = out;
return HB_FILTER_OK;
}
|