FFmpeg
Loading...
Searching...
No Matches
vf_amplify.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018 Paul B Mahol
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include "libavutil/imgutils.h"
22#include "libavutil/mem.h"
23#include "libavutil/opt.h"
24#include "libavutil/pixdesc.h"
25
26#include "avfilter.h"
27#include "filters.h"
28#include "video.h"
29
30typedef struct AmplifyContext {
31 const AVClass *class;
33 int radius;
34 float factor;
35 float threshold;
36 float tolerance;
37 int planes;
38
39 float llimit;
40 float hlimit;
43
44 int depth;
46 int linesize[4];
47 int height[4];
48
51
79
81{
82 AmplifyContext *s = ctx->priv;
83
84 s->nb_inputs = s->radius * 2 + 1;
85
86 s->frames = av_calloc(s->nb_inputs, sizeof(*s->frames));
87 if (!s->frames)
88 return AVERROR(ENOMEM);
89
90 return 0;
91}
92
93typedef struct ThreadData {
96
97#define AMPLIFY_SLICE(type, stype, clip) \
98 const stype limit[2] = { s->llimit, s->hlimit }; \
99 \
100 for (int p = 0; p < s->nb_planes; p++) { \
101 const int slice_start = ff_slice_pos(s->height[p], jobnr, nb_jobs); \
102 const int slice_end = ff_slice_pos(s->height[p], jobnr + 1, nb_jobs); \
103 type *dst = (type *)(out->data[p] + slice_start * out->linesize[p]); \
104 ptrdiff_t dst_linesize = out->linesize[p] / sizeof(type); \
105 \
106 if (!((1 << p) & s->planes)) { \
107 av_image_copy_plane((uint8_t *)dst, out->linesize[p], \
108 in[radius]->data[p] + slice_start * in[radius]->linesize[p], \
109 in[radius]->linesize[p], \
110 s->linesize[p], slice_end - slice_start); \
111 continue; \
112 } \
113 \
114 for (int y = slice_start; y < slice_end; y++) { \
115 for (int x = 0; x < s->linesize[p] / sizeof(type); x++) { \
116 stype src = *(type *)(in[radius]->data[p] + y * in[radius]->linesize[p] + x * sizeof(type));\
117 float diff, abs_diff, avg; \
118 stype sum = 0; \
119 \
120 for (int i = 0; i < nb_inputs; i++) { \
121 sum += *(type *)(in[i]->data[p] + y * in[i]->linesize[p] + x * sizeof(type));\
122 } \
123 \
124 avg = sum * scale; \
125 diff = src - avg; \
126 abs_diff = fabsf(diff); \
127 \
128 if (abs_diff < threshold && abs_diff > tolerance) { \
129 float amp = copysignf(fminf(abs_diff * factor, limit[diff >= 0]), diff); \
130 dst[x] = clip(src + amp, depth); \
131 } else { \
132 dst[x] = src; \
133 } \
134 } \
135 \
136 dst += dst_linesize; \
137 } \
138 }
139
140#define CLIP8(x, depth) av_clip_uint8(lrintf(x))
141#define CLIP16(x, depth) av_clip_uintp2_c(lrintf(x), depth)
142#define NOP(x, depth) (x)
143
144static int amplify_frame(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
145{
146 AmplifyContext *s = ctx->priv;
147 ThreadData *td = arg;
148 AVFrame **in = td->in;
149 AVFrame *out = td->out;
150 const int radius = s->radius;
151 const int nb_inputs = s->nb_inputs;
152 const float threshold = s->threshold;
153 const float tolerance = s->tolerance;
154 const float scale = 1.f / nb_inputs;
155 const float factor = s->factor;
156 const int depth = s->depth;
157
158 if (s->depth <= 8) {
159 AMPLIFY_SLICE(uint8_t, int, CLIP8)
160 } else if (s->depth <= 16) {
161 AMPLIFY_SLICE(uint16_t, int, CLIP16)
162 } else {
163 AMPLIFY_SLICE(float, float, NOP)
164 }
165
166 return 0;
167}
168
169static int config_output(AVFilterLink *outlink)
170{
171 AVFilterContext *ctx = outlink->src;
172 AmplifyContext *s = ctx->priv;
173 AVFilterLink *inlink = ctx->inputs[0];
174 int ret;
175
176 s->desc = av_pix_fmt_desc_get(outlink->format);
177 if (!s->desc)
178 return AVERROR_BUG;
179 s->nb_planes = av_pix_fmt_count_planes(outlink->format);
180 s->depth = s->desc->comp[0].depth;
181
182 if ((ret = av_image_fill_linesizes(s->linesize, inlink->format, inlink->w)) < 0)
183 return ret;
184
185 s->height[1] = s->height[2] = AV_CEIL_RSHIFT(inlink->h, s->desc->log2_chroma_h);
186 s->height[0] = s->height[3] = inlink->h;
187
188 return 0;
189}
190
192{
193 AmplifyContext *s = ctx->priv;
194 int i;
195
196 if (s->frames) {
197 for (i = 0; i < s->nb_frames; i++)
198 av_frame_free(&s->frames[i]);
199 }
200 av_freep(&s->frames);
201}
202
203static int filter_frame(AVFilterLink *inlink, AVFrame *in)
204{
205 AVFilterContext *ctx = inlink->dst;
206 AVFilterLink *outlink = ctx->outputs[0];
207 AmplifyContext *s = ctx->priv;
208 ThreadData td;
209 AVFrame *out;
210
211 if (s->nb_frames < s->nb_inputs) {
212 s->frames[s->nb_frames] = in;
213 s->nb_frames++;
214 return 0;
215 } else {
216 av_frame_free(&s->frames[0]);
217 memmove(&s->frames[0], &s->frames[1], sizeof(*s->frames) * (s->nb_inputs - 1));
218 s->frames[s->nb_inputs - 1] = in;
219 }
220
221 if (!ctx->is_disabled) {
222 out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
223 if (!out)
224 return AVERROR(ENOMEM);
225 av_frame_copy_props(out, s->frames[0]);
226
227 td.out = out;
228 td.in = s->frames;
230 FFMIN(s->height[1], ff_filter_get_nb_threads(ctx)));
231 } else {
232 out = av_frame_clone(s->frames[s->radius]);
233 if (!out)
234 return AVERROR(ENOMEM);
235 out->pts = s->frames[0]->pts;
236 }
237
238 return ff_filter_frame(outlink, out);
239}
240
241#define OFFSET(x) offsetof(AmplifyContext, x)
242#define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM
243#define VFT AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_RUNTIME_PARAM
244
245static const AVOption amplify_options[] = {
246 { "radius", "set radius", OFFSET(radius), AV_OPT_TYPE_INT, {.i64=2}, 1, 63, .flags = FLAGS },
247 { "factor", "set factor", OFFSET(factor), AV_OPT_TYPE_FLOAT, {.dbl=2}, 0, UINT16_MAX, .flags = VFT },
248 { "threshold", "set threshold", OFFSET(threshold), AV_OPT_TYPE_FLOAT, {.dbl=10}, 0, UINT16_MAX, .flags = VFT },
249 { "tolerance", "set tolerance", OFFSET(tolerance), AV_OPT_TYPE_FLOAT, {.dbl=0}, 0, UINT16_MAX, .flags = VFT },
250 { "low", "set low limit for amplification", OFFSET(llimit), AV_OPT_TYPE_FLOAT, {.dbl=UINT16_MAX}, 0, UINT16_MAX, .flags = VFT },
251 { "high", "set high limit for amplification", OFFSET(hlimit), AV_OPT_TYPE_FLOAT, {.dbl=UINT16_MAX}, 0, UINT16_MAX, .flags = VFT },
252 { "planes", "set what planes to filter", OFFSET(planes), AV_OPT_TYPE_FLAGS, {.i64=7}, 0, 15, VFT },
253 { NULL },
254};
255
256static const AVFilterPad inputs[] = {
257 {
258 .name = "default",
259 .type = AVMEDIA_TYPE_VIDEO,
260 .filter_frame = filter_frame,
261 },
262};
263
264static const AVFilterPad outputs[] = {
265 {
266 .name = "default",
267 .type = AVMEDIA_TYPE_VIDEO,
268 .config_props = config_output,
269 },
270};
271
273
275 .p.name = "amplify",
276 .p.description = NULL_IF_CONFIG_SMALL("Amplify changes between successive video frames."),
277 .p.priv_class = &amplify_class,
279 .priv_size = sizeof(AmplifyContext),
283 .init = init,
284 .uninit = uninit,
285 .process_command = ff_filter_process_command,
286};
static const AVFilterPad inputs[]
Definition af_aap.c:299
static const AVFilterPad outputs[]
Definition af_aap.c:310
const FFFilter ff_vf_amplify
Definition vf_amplify.c:274
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
Definition avfilter.c:906
int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
Definition avfilter.c:1696
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Definition avfilter.c:846
Main libavfilter public API header.
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#define FLAGS
Definition cmdutils.c:598
#define NOP(x)
#define AV_CEIL_RSHIFT(a, b)
Definition common.h:60
#define NULL
Definition coverity.c:32
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
@ AV_OPT_TYPE_FLAGS
Underlying C type is unsigned int.
Definition opt.h:254
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_OPT_TYPE_FLOAT
Underlying C type is float.
Definition opt.h:270
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition avfilter.h:166
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
Definition avfilter.h:204
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
Definition error.h:52
#define AVERROR(e)
Definition error.h:45
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition frame.c:599
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
Definition frame.c:483
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
int av_image_fill_linesizes(int linesizes[4], enum AVPixelFormat pix_fmt, int width)
Fill plane linesizes for an image with pixel format pix_fmt and width width.
Definition imgutils.c:89
misc image utilities
static void scale(int *out, const int *in, const int w, const int h, const int shift)
Definition intra.c:278
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int config_output(AVBitStreamFilterLink *outlink)
const char * arg
Definition jacosubdec.c:65
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define FILTER_PIXFMTS_ARRAY(array)
Definition filters.h:244
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
static const int factor[16]
Definition vf_pp7.c:98
#define av_cold
Definition attributes.h:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static const struct @257111027162314367033347246032313251342043035002 planes[]
#define FFMIN(a, b)
Definition macros.h:49
void * av_calloc(size_t nmemb, size_t size)
Definition mem.c:264
Memory handling functions.
AVOptions.
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3500
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3460
#define AV_PIX_FMT_GBRAP12
Definition pixfmt.h:569
#define AV_PIX_FMT_YUV420P16
Definition pixfmt.h:556
#define AV_PIX_FMT_GBRPF32
Definition pixfmt.h:584
#define AV_PIX_FMT_YUV444P12
Definition pixfmt.h:552
#define AV_PIX_FMT_YUV444P9
Definition pixfmt.h:544
#define AV_PIX_FMT_YUV420P10
Definition pixfmt.h:545
#define AV_PIX_FMT_YUV440P12
Definition pixfmt.h:551
#define AV_PIX_FMT_GRAY9
Definition pixfmt.h:524
#define AV_PIX_FMT_GBRAP16
Definition pixfmt.h:571
#define AV_PIX_FMT_GBRP9
Definition pixfmt.h:563
#define AV_PIX_FMT_YUV422P9
Definition pixfmt.h:543
#define AV_PIX_FMT_YUVA444P10
Definition pixfmt.h:598
#define AV_PIX_FMT_YUVA420P16
Definition pixfmt.h:601
#define AV_PIX_FMT_YUV420P12
Definition pixfmt.h:549
#define AV_PIX_FMT_YUVA420P10
Definition pixfmt.h:596
#define AV_PIX_FMT_YUVA422P9
Definition pixfmt.h:594
#define AV_PIX_FMT_YUV422P12
Definition pixfmt.h:550
#define AV_PIX_FMT_GBRP10
Definition pixfmt.h:564
#define AV_PIX_FMT_YUV422P10
Definition pixfmt.h:546
#define AV_PIX_FMT_GRAY12
Definition pixfmt.h:526
#define AV_PIX_FMT_GBRP12
Definition pixfmt.h:565
#define AV_PIX_FMT_YUV420P9
Definition pixfmt.h:542
#define AV_PIX_FMT_YUVA420P9
Definition pixfmt.h:593
#define AV_PIX_FMT_YUVA422P10
Definition pixfmt.h:597
#define AV_PIX_FMT_GRAYF32
Definition pixfmt.h:588
#define AV_PIX_FMT_YUV420P14
Definition pixfmt.h:553
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition pixfmt.h:73
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition pixfmt.h:106
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition pixfmt.h:77
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition pixfmt.h:81
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition pixfmt.h:108
@ AV_PIX_FMT_YUVJ440P
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range
Definition pixfmt.h:107
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition pixfmt.h:79
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition pixfmt.h:80
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition pixfmt.h:78
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition pixfmt.h:174
@ AV_PIX_FMT_YUVJ411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
Definition pixfmt.h:283
@ AV_PIX_FMT_GBRAP
planar GBRA 4:4:4:4 32bpp
Definition pixfmt.h:212
@ AV_PIX_FMT_YUVJ422P
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition pixfmt.h:86
@ AV_PIX_FMT_YUVA422P
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition pixfmt.h:173
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
Definition pixfmt.h:165
@ AV_PIX_FMT_YUVJ444P
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition pixfmt.h:87
@ AV_PIX_FMT_YUVJ420P
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition pixfmt.h:85
#define AV_PIX_FMT_YUVA422P12
Definition pixfmt.h:599
#define AV_PIX_FMT_YUV422P14
Definition pixfmt.h:554
#define AV_PIX_FMT_GRAY10
Definition pixfmt.h:525
#define AV_PIX_FMT_GRAY14
Definition pixfmt.h:527
#define AV_PIX_FMT_YUV422P16
Definition pixfmt.h:557
#define AV_PIX_FMT_YUV440P10
Definition pixfmt.h:547
#define AV_PIX_FMT_GRAY16
Definition pixfmt.h:528
#define AV_PIX_FMT_GBRAP10
Definition pixfmt.h:568
#define AV_PIX_FMT_YUVA444P16
Definition pixfmt.h:603
#define AV_PIX_FMT_YUVA422P16
Definition pixfmt.h:602
#define AV_PIX_FMT_GBRP16
Definition pixfmt.h:567
#define AV_PIX_FMT_YUV444P14
Definition pixfmt.h:555
#define AV_PIX_FMT_YUVA444P9
Definition pixfmt.h:595
#define AV_PIX_FMT_GBRP14
Definition pixfmt.h:566
#define AV_PIX_FMT_YUVA444P12
Definition pixfmt.h:600
#define AV_PIX_FMT_GBRAPF32
Definition pixfmt.h:585
#define AV_PIX_FMT_YUV444P16
Definition pixfmt.h:558
#define AV_PIX_FMT_YUV444P10
Definition pixfmt.h:548
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
AVOption.
Definition opt.h:428
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition pixdesc.h:69
const AVPixFmtDescriptor * desc
Definition vf_amplify.c:32
AVFrame ** frames
Definition vf_amplify.c:49
int linesize[4]
Definition vf_amplify.c:46
Used for passing data between threads.
Definition dsddec.c:71
AVFrame * out
#define av_freep(p)
static FILE * out
Definition movenc.c:55
static AVFormatContext * ctx
Definition movenc.c:49
#define VFT
Definition vf_amplify.c:243
static enum AVPixelFormat pixel_fmts[]
Definition vf_amplify.c:52
#define CLIP8(x, depth)
Definition vf_amplify.c:140
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition vf_amplify.c:203
#define AMPLIFY_SLICE(type, stype, clip)
Definition vf_amplify.c:97
static const AVOption amplify_options[]
Definition vf_amplify.c:245
static av_cold void uninit(AVFilterContext *ctx)
Definition vf_amplify.c:191
#define CLIP16(x, depth)
Definition vf_amplify.c:141
#define OFFSET(x)
Definition vf_amplify.c:241
static int config_output(AVFilterLink *outlink)
Definition vf_amplify.c:169
static int amplify_frame(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_amplify.c:144
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition video.c:89