FFmpeg
Loading...
Searching...
No Matches
vf_limiter.c
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
20#include "libavutil/common.h"
21#include "libavutil/imgutils.h"
22#include "libavutil/opt.h"
23#include "libavutil/pixdesc.h"
24#include "avfilter.h"
25#include "filters.h"
26#include "limiter.h"
27#include "video.h"
28
29typedef struct ThreadData {
30 AVFrame *in;
31 AVFrame *out;
33
34typedef struct LimiterContext {
35 const AVClass *class;
36 int min;
37 int max;
38 int planes;
40 int linesize[4];
41 int width[4];
42 int height[4];
43
46
47#define OFFSET(x) offsetof(LimiterContext, x)
48#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
49
50static const AVOption limiter_options[] = {
51 { "min", "set min value", OFFSET(min), AV_OPT_TYPE_INT, {.i64=0}, 0, 65535, .flags = FLAGS },
52 { "max", "set max value", OFFSET(max), AV_OPT_TYPE_INT, {.i64=65535}, 0, 65535, .flags = FLAGS },
53 { "planes", "set planes", OFFSET(planes), AV_OPT_TYPE_INT, {.i64=15}, 0, 15, .flags = FLAGS },
54 { NULL }
55};
56
58
60{
61 LimiterContext *s = ctx->priv;
62
63 if (s->min > s->max)
64 return AVERROR(EINVAL);
65 return 0;
66}
67
89
90#define LIMITER(n, type) \
91static void limiter##n(const uint8_t *ssrc, uint8_t *ddst, \
92 ptrdiff_t slinesize, ptrdiff_t dlinesize,\
93 int w, int h, int min, int max) \
94{ \
95 const type *src = (const type *)ssrc; \
96 type *dst = (type *)ddst; \
97 \
98 dlinesize /= sizeof(type); \
99 slinesize /= sizeof(type); \
100 \
101 for (int y = 0; y < h; y++) { \
102 for (int x = 0; x < w; x++) { \
103 dst[x] = av_clip(src[x], min, max); \
104 } \
105 \
106 dst += dlinesize; \
107 src += slinesize; \
108 } \
109}
110
111LIMITER(8, uint8_t)
112LIMITER(16, uint16_t)
113
114static int config_input(AVFilterLink *inlink)
115{
116 AVFilterContext *ctx = inlink->dst;
117 LimiterContext *s = ctx->priv;
118 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
119 int depth, vsub, hsub, ret;
120
121 s->nb_planes = av_pix_fmt_count_planes(inlink->format);
122
123 if ((ret = av_image_fill_linesizes(s->linesize, inlink->format, inlink->w)) < 0)
124 return ret;
125
126 depth = desc->comp[0].depth;
127 hsub = desc->log2_chroma_w;
128 vsub = desc->log2_chroma_h;
129 s->height[1] = s->height[2] = AV_CEIL_RSHIFT(inlink->h, vsub);
130 s->height[0] = s->height[3] = inlink->h;
131 s->width[1] = s->width[2] = AV_CEIL_RSHIFT(inlink->w, hsub);
132 s->width[0] = s->width[3] = inlink->w;
133
134 s->max = FFMIN(s->max, (1 << depth) - 1);
135 s->min = FFMIN(s->min, (1 << depth) - 1);
136
137 if (depth == 8) {
138 s->dsp.limiter = limiter8;
139 } else {
140 s->dsp.limiter = limiter16;
141 }
142
143#if ARCH_X86 && HAVE_X86ASM
144 ff_limiter_init_x86(&s->dsp, desc->comp[0].depth);
145#endif
146
147 return 0;
148}
149
150static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
151{
152 LimiterContext *s = ctx->priv;
153 ThreadData *td = arg;
154 AVFrame *in = td->in;
155 AVFrame *out = td->out;
156 int p;
157
158 for (p = 0; p < s->nb_planes; p++) {
159 const int h = s->height[p];
160 const int slice_start = ff_slice_pos(h, jobnr, nb_jobs);
161 const int slice_end = ff_slice_pos(h, jobnr + 1, nb_jobs);
162
163 if (!((1 << p) & s->planes)) {
164 if (out != in)
165 av_image_copy_plane(out->data[p] + slice_start * out->linesize[p],
166 out->linesize[p],
167 in->data[p] + slice_start * in->linesize[p],
168 in->linesize[p],
169 s->linesize[p], slice_end - slice_start);
170 continue;
171 }
172
173 s->dsp.limiter(in->data[p] + slice_start * in->linesize[p],
174 out->data[p] + slice_start * out->linesize[p],
175 in->linesize[p], out->linesize[p],
176 s->width[p], slice_end - slice_start,
177 s->min, s->max);
178 }
179
180 return 0;
181}
182
183static int filter_frame(AVFilterLink *inlink, AVFrame *in)
184{
185 AVFilterContext *ctx = inlink->dst;
186 LimiterContext *s = ctx->priv;
187 AVFilterLink *outlink = ctx->outputs[0];
188 ThreadData td;
189 AVFrame *out;
190
191 if (av_frame_is_writable(in)) {
192 out = in;
193 } else {
194 out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
195 if (!out) {
196 av_frame_free(&in);
197 return AVERROR(ENOMEM);
198 }
200 }
201
202 td.out = out;
203 td.in = in;
205 FFMIN(s->height[2], ff_filter_get_nb_threads(ctx)));
206 if (out != in)
207 av_frame_free(&in);
208
209 return ff_filter_frame(outlink, out);
210}
211
212static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
213 char *res, int res_len, int flags)
214{
215 int ret;
216
217 ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags);
218 if (ret < 0)
219 return ret;
220
221 return config_input(ctx->inputs[0]);
222}
223
224static const AVFilterPad inputs[] = {
225 {
226 .name = "default",
227 .type = AVMEDIA_TYPE_VIDEO,
228 .filter_frame = filter_frame,
229 .config_props = config_input,
230 },
231};
232
234 .p.name = "limiter",
235 .p.description = NULL_IF_CONFIG_SMALL("Limit pixels components to the specified range."),
236 .p.priv_class = &limiter_class,
239 .priv_size = sizeof(LimiterContext),
240 .init = init,
244 .process_command = process_command,
245};
static const AVFilterPad inputs[]
Definition af_aap.c:299
static int config_input(AVFilterLink *inlink)
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
const FFFilter ff_vf_limiter
Definition vf_limiter.c:233
static FILE * out
static AVFormatContext * ctx
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 flags(name, subs,...)
Definition cbs_h264.c:74
#define s(width, name)
Definition cbs_vp9.c:198
#define FLAGS
Definition cmdutils.c:598
common internal and external API header
#define AV_CEIL_RSHIFT(a, b)
Definition common.h:60
#define NULL
Definition coverity.c:32
#define min(a, b)
#define max(a, b)
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition avfilter.h:196
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition avfilter.h:166
#define AVERROR(e)
Definition error.h:45
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition frame.c:535
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
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
void av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height)
Copy image plane from src to dst.
Definition imgutils.c:374
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
const char * arg
Definition jacosubdec.c:65
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
static int ff_slice_pos(int total, int jobnr, int nb_jobs)
Compute the boundary index for a slice when work of size total is split into nb_jobs slices.
Definition filters.h:763
#define FILTER_PIXFMTS_ARRAY(array)
Definition filters.h:244
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
Macro definitions for various function/variable attributes.
#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 enum AVPixelFormat pix_fmts[]
Definition libkvazaar.c:296
const char * desc
Definition libsvtav1.c:83
void ff_limiter_init_x86(LimiterDSPContext *dsp, int bpp)
static const struct @257111027162314367033347246032313251342043035002 planes[]
#define FFMIN(a, b)
Definition macros.h:49
static int slice_end(AVCodecContext *avctx, AVFrame *pict, int *got_output)
Handle slice ends.
Definition mpeg12dec.c:1697
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_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_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_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_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
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition frame.h:493
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition frame.h:517
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
LimiterDSPContext dsp
Definition vf_limiter.c:44
int linesize[4]
Definition vf_limiter.c:40
Used for passing data between threads.
Definition dsddec.c:71
AVFrame * out
static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition vf_limiter.c:150
static int config_input(AVFilterLink *inlink)
Definition vf_limiter.c:114
#define LIMITER(n, type)
Definition vf_limiter.c:90
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition vf_limiter.c:183
static const AVOption limiter_options[]
Definition vf_limiter.c:50
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition vf_limiter.c:212
#define OFFSET(x)
Definition vf_limiter.c:47
static void hsub(htype *dst, const htype *src, int bins)
Definition vf_median.c:74
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition video.c:37
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
static int slice_start(SliceContext *sc, VVCContext *s, VVCFrameContext *fc, const CodedBitstreamUnit *unit, const int is_first_slice)
Definition dec.c:844