Commit 2a75006d authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_maskedclamp: rewrite using macro

parent a34d0622
...@@ -47,7 +47,9 @@ typedef struct MaskedClampContext { ...@@ -47,7 +47,9 @@ typedef struct MaskedClampContext {
int depth; int depth;
FFFrameSync fs; FFFrameSync fs;
int (*maskedclamp)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs); void (*maskedclamp)(const uint8_t *bsrc, uint8_t *dst,
const uint8_t *darksrc, const uint8_t *brightsrc,
int w, int undershoot, int overshoot);
} MaskedClampContext; } MaskedClampContext;
static const AVOption maskedclamp_options[] = { static const AVOption maskedclamp_options[] = {
...@@ -85,45 +87,7 @@ static int query_formats(AVFilterContext *ctx) ...@@ -85,45 +87,7 @@ static int query_formats(AVFilterContext *ctx)
return ff_set_common_formats(ctx, ff_make_format_list(pix_fmts)); return ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
} }
static int process_frame(FFFrameSync *fs) static int maskedclamp_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
{
AVFilterContext *ctx = fs->parent;
MaskedClampContext *s = fs->opaque;
AVFilterLink *outlink = ctx->outputs[0];
AVFrame *out, *base, *dark, *bright;
int ret;
if ((ret = ff_framesync_get_frame(&s->fs, 0, &base, 0)) < 0 ||
(ret = ff_framesync_get_frame(&s->fs, 1, &dark, 0)) < 0 ||
(ret = ff_framesync_get_frame(&s->fs, 2, &bright, 0)) < 0)
return ret;
if (ctx->is_disabled) {
out = av_frame_clone(base);
if (!out)
return AVERROR(ENOMEM);
} else {
ThreadData td;
out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
if (!out)
return AVERROR(ENOMEM);
av_frame_copy_props(out, base);
td.b = base;
td.o = dark;
td.m = bright;
td.d = out;
ctx->internal->execute(ctx, s->maskedclamp, &td, NULL, FFMIN(s->height[0],
ff_filter_get_nb_threads(ctx)));
}
out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base);
return ff_filter_frame(outlink, out);
}
static int maskedclamp8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
{ {
MaskedClampContext *s = ctx->priv; MaskedClampContext *s = ctx->priv;
ThreadData *td = arg; ThreadData *td = arg;
...@@ -144,7 +108,7 @@ static int maskedclamp8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) ...@@ -144,7 +108,7 @@ static int maskedclamp8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
uint8_t *dst = td->d->data[p] + slice_start * dlinesize; uint8_t *dst = td->d->data[p] + slice_start * dlinesize;
const int undershoot = s->undershoot; const int undershoot = s->undershoot;
const int overshoot = s->overshoot; const int overshoot = s->overshoot;
int x, y; int y;
if (!((1 << p) & s->planes)) { if (!((1 << p) & s->planes)) {
av_image_copy_plane(dst, dlinesize, bsrc, blinesize, av_image_copy_plane(dst, dlinesize, bsrc, blinesize,
...@@ -153,14 +117,7 @@ static int maskedclamp8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) ...@@ -153,14 +117,7 @@ static int maskedclamp8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
} }
for (y = slice_start; y < slice_end; y++) { for (y = slice_start; y < slice_end; y++) {
for (x = 0; x < w; x++) { s->maskedclamp(bsrc, dst, darksrc, brightsrc, w, undershoot, overshoot);
if (bsrc[x] < darksrc[x] - undershoot)
dst[x] = darksrc[x] - undershoot;
else if (bsrc[x] > brightsrc[x] + overshoot)
dst[x] = brightsrc[x] + overshoot;
else
dst[x] = bsrc[x];
}
dst += dlinesize; dst += dlinesize;
bsrc += blinesize; bsrc += blinesize;
...@@ -172,55 +129,67 @@ static int maskedclamp8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) ...@@ -172,55 +129,67 @@ static int maskedclamp8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
return 0; return 0;
} }
static int maskedclamp16(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) static int process_frame(FFFrameSync *fs)
{ {
MaskedClampContext *s = ctx->priv; AVFilterContext *ctx = fs->parent;
ThreadData *td = arg; MaskedClampContext *s = fs->opaque;
int p; AVFilterLink *outlink = ctx->outputs[0];
AVFrame *out, *base, *dark, *bright;
int ret;
for (p = 0; p < s->nb_planes; p++) { if ((ret = ff_framesync_get_frame(&s->fs, 0, &base, 0)) < 0 ||
const ptrdiff_t blinesize = td->b->linesize[p] / 2; (ret = ff_framesync_get_frame(&s->fs, 1, &dark, 0)) < 0 ||
const ptrdiff_t brightlinesize = td->m->linesize[p] / 2; (ret = ff_framesync_get_frame(&s->fs, 2, &bright, 0)) < 0)
const ptrdiff_t darklinesize = td->o->linesize[p] / 2; return ret;
const ptrdiff_t dlinesize = td->d->linesize[p] / 2;
const int w = s->width[p];
const int h = s->height[p];
const int slice_start = (h * jobnr) / nb_jobs;
const int slice_end = (h * (jobnr+1)) / nb_jobs;
const uint16_t *bsrc = (const uint16_t *)td->b->data[p] + slice_start * blinesize;
const uint16_t *darksrc = (const uint16_t *)td->o->data[p] + slice_start * darklinesize;
const uint16_t *brightsrc = (const uint16_t *)td->m->data[p] + slice_start * brightlinesize;
uint16_t *dst = (uint16_t *)td->d->data[p] + slice_start * dlinesize;
const int undershoot = s->undershoot;
const int overshoot = s->overshoot;
int x, y;
if (!((1 << p) & s->planes)) { if (ctx->is_disabled) {
av_image_copy_plane((uint8_t *)dst, dlinesize, (const uint8_t *)bsrc, blinesize, out = av_frame_clone(base);
s->linesize[p], slice_end - slice_start); if (!out)
continue; return AVERROR(ENOMEM);
} } else {
ThreadData td;
for (y = slice_start; y < slice_end; y++) { out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
for (x = 0; x < w; x++) { if (!out)
if (bsrc[x] < darksrc[x] - undershoot) return AVERROR(ENOMEM);
dst[x] = darksrc[x] - undershoot; av_frame_copy_props(out, base);
else if (bsrc[x] > brightsrc[x] + overshoot)
dst[x] = brightsrc[x] + overshoot;
else
dst[x] = bsrc[x];
}
dst += dlinesize; td.b = base;
bsrc += blinesize; td.o = dark;
darksrc += darklinesize; td.m = bright;
brightsrc += brightlinesize; td.d = out;
}
ctx->internal->execute(ctx, maskedclamp_slice, &td, NULL, FFMIN(s->height[0],
ff_filter_get_nb_threads(ctx)));
} }
out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base);
return 0; return ff_filter_frame(outlink, out);
} }
#define MASKEDCLAMP(type, name) \
static void maskedclamp##name(const uint8_t *bbsrc, uint8_t *ddst, \
const uint8_t *ddarksrc, const uint8_t *bbrightsrc, \
int w, int undershoot, int overshoot) \
{ \
const type *bsrc = (const type *)bbsrc; \
const type *darksrc = (const type *)ddarksrc; \
const type *brightsrc = (const type *)bbrightsrc; \
type *dst = (type *)ddst; \
\
for (int x = 0; x < w; x++) { \
if (bsrc[x] < darksrc[x] - undershoot) \
dst[x] = darksrc[x] - undershoot; \
else if (bsrc[x] > brightsrc[x] + overshoot) \
dst[x] = brightsrc[x] + overshoot; \
else \
dst[x] = bsrc[x]; \
} \
}
MASKEDCLAMP(uint8_t, 8)
MASKEDCLAMP(uint16_t, 16)
static int config_input(AVFilterLink *inlink) static int config_input(AVFilterLink *inlink)
{ {
AVFilterContext *ctx = inlink->dst; AVFilterContext *ctx = inlink->dst;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment