X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=libavfilter%2Fvf_cropdetect.c;h=ea9e47d279d16969aadda3766fc5db70831e7b10;hb=ad8159e0fe2bfc1c34739f0956ce464f9859b5a7;hp=d321afdd40cf660ec4db0deab2990c21d9b5c519;hpb=c04c533f62b80e9d6bbcb89946bab6206a8873c5;p=ffmpeg diff --git a/libavfilter/vf_cropdetect.c b/libavfilter/vf_cropdetect.c index d321afdd40c..ea9e47d279d 100644 --- a/libavfilter/vf_cropdetect.c +++ b/libavfilter/vf_cropdetect.c @@ -23,11 +23,19 @@ * Ported from MPlayer libmpcodecs/vf_cropdetect.c. */ +#include + #include "libavutil/imgutils.h" +#include "libavutil/internal.h" +#include "libavutil/opt.h" + #include "avfilter.h" +#include "formats.h" +#include "internal.h" #include "video.h" typedef struct { + const AVClass *class; int x1, y1, x2, y2; int limit; int round; @@ -38,16 +46,16 @@ typedef struct { static int query_formats(AVFilterContext *ctx) { - static const enum PixelFormat pix_fmts[] = { - PIX_FMT_YUV420P, PIX_FMT_YUVJ420P, - PIX_FMT_YUV422P, PIX_FMT_YUVJ422P, - PIX_FMT_YUV444P, PIX_FMT_YUVJ444P, - PIX_FMT_YUV411P, PIX_FMT_GRAY8, - PIX_FMT_NV12, PIX_FMT_NV21, - PIX_FMT_NONE + static const enum AVPixelFormat pix_fmts[] = { + AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUVJ420P, + AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVJ422P, + AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUVJ444P, + AV_PIX_FMT_YUV411P, AV_PIX_FMT_GRAY8, + AV_PIX_FMT_NV12, AV_PIX_FMT_NV21, + AV_PIX_FMT_NONE }; - avfilter_set_common_formats(ctx, avfilter_make_format_list(pix_fmts)); + ff_set_common_formats(ctx, ff_make_format_list(pix_fmts)); return 0; } @@ -78,20 +86,14 @@ static int checkline(void *ctx, const unsigned char *src, int stride, int len, i return total; } -static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) +static av_cold int init(AVFilterContext *ctx) { - CropDetectContext *cd = ctx->priv; - - cd->limit = 24; - cd->round = 0; - cd->reset_count = 0; - cd->frame_nb = -2; + CropDetectContext *s = ctx->priv; - if (args) - sscanf(args, "%d:%d:%d", &cd->limit, &cd->round, &cd->reset_count); + s->frame_nb = -2; - av_log(ctx, AV_LOG_INFO, "limit:%d round:%d reset_count:%d\n", - cd->limit, cd->round, cd->reset_count); + av_log(ctx, AV_LOG_VERBOSE, "limit:%d round:%d reset_count:%d\n", + s->limit, s->round, s->reset_count); return 0; } @@ -99,117 +101,144 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) static int config_input(AVFilterLink *inlink) { AVFilterContext *ctx = inlink->dst; - CropDetectContext *cd = ctx->priv; + CropDetectContext *s = ctx->priv; - av_image_fill_max_pixsteps(cd->max_pixsteps, NULL, - &av_pix_fmt_descriptors[inlink->format]); + av_image_fill_max_pixsteps(s->max_pixsteps, NULL, + av_pix_fmt_desc_get(inlink->format)); - cd->x1 = inlink->w - 1; - cd->y1 = inlink->h - 1; - cd->x2 = 0; - cd->y2 = 0; + s->x1 = inlink->w - 1; + s->y1 = inlink->h - 1; + s->x2 = 0; + s->y2 = 0; return 0; } -static void end_frame(AVFilterLink *inlink) +static int filter_frame(AVFilterLink *inlink, AVFrame *frame) { AVFilterContext *ctx = inlink->dst; - CropDetectContext *cd = ctx->priv; - AVFilterBufferRef *picref = inlink->cur_buf; - int bpp = cd->max_pixsteps[0]; + CropDetectContext *s = ctx->priv; + int bpp = s->max_pixsteps[0]; int w, h, x, y, shrink_by; // ignore first 2 frames - they may be empty - if (++cd->frame_nb > 0) { + if (++s->frame_nb > 0) { // Reset the crop area every reset_count frames, if reset_count is > 0 - if (cd->reset_count > 0 && cd->frame_nb > cd->reset_count) { - cd->x1 = picref->video->w-1; - cd->y1 = picref->video->h-1; - cd->x2 = 0; - cd->y2 = 0; - cd->frame_nb = 1; + if (s->reset_count > 0 && s->frame_nb > s->reset_count) { + s->x1 = frame->width - 1; + s->y1 = frame->height - 1; + s->x2 = 0; + s->y2 = 0; + s->frame_nb = 1; } - for (y = 0; y < cd->y1; y++) { - if (checkline(ctx, picref->data[0] + picref->linesize[0] * y, bpp, picref->video->w, bpp) > cd->limit) { - cd->y1 = y; + for (y = 0; y < s->y1; y++) { + if (checkline(ctx, frame->data[0] + frame->linesize[0] * y, bpp, frame->width, bpp) > s->limit) { + s->y1 = y; break; } } - for (y = picref->video->h-1; y > cd->y2; y--) { - if (checkline(ctx, picref->data[0] + picref->linesize[0] * y, bpp, picref->video->w, bpp) > cd->limit) { - cd->y2 = y; + for (y = frame->height - 1; y > s->y2; y--) { + if (checkline(ctx, frame->data[0] + frame->linesize[0] * y, bpp, frame->width, bpp) > s->limit) { + s->y2 = y; break; } } - for (y = 0; y < cd->x1; y++) { - if (checkline(ctx, picref->data[0] + bpp*y, picref->linesize[0], picref->video->h, bpp) > cd->limit) { - cd->x1 = y; + for (y = 0; y < s->x1; y++) { + if (checkline(ctx, frame->data[0] + bpp*y, frame->linesize[0], frame->height, bpp) > s->limit) { + s->x1 = y; break; } } - for (y = picref->video->w-1; y > cd->x2; y--) { - if (checkline(ctx, picref->data[0] + bpp*y, picref->linesize[0], picref->video->h, bpp) > cd->limit) { - cd->x2 = y; + for (y = frame->width - 1; y > s->x2; y--) { + if (checkline(ctx, frame->data[0] + bpp*y, frame->linesize[0], frame->height, bpp) > s->limit) { + s->x2 = y; break; } } // round x and y (up), important for yuv colorspaces // make sure they stay rounded! - x = (cd->x1+1) & ~1; - y = (cd->y1+1) & ~1; + x = (s->x1+1) & ~1; + y = (s->y1+1) & ~1; - w = cd->x2 - x + 1; - h = cd->y2 - y + 1; + w = s->x2 - x + 1; + h = s->y2 - y + 1; // w and h must be divisible by 2 as well because of yuv // colorspace problems. - if (cd->round <= 1) - cd->round = 16; - if (cd->round % 2) - cd->round *= 2; + if (s->round <= 1) + s->round = 16; + if (s->round % 2) + s->round *= 2; - shrink_by = w % cd->round; + shrink_by = w % s->round; w -= shrink_by; x += (shrink_by/2 + 1) & ~1; - shrink_by = h % cd->round; + shrink_by = h % s->round; h -= shrink_by; y += (shrink_by/2 + 1) & ~1; av_log(ctx, AV_LOG_INFO, - "x1:%d x2:%d y1:%d y2:%d w:%d h:%d x:%d y:%d pos:%"PRId64" pts:%"PRId64" t:%f crop=%d:%d:%d:%d\n", - cd->x1, cd->x2, cd->y1, cd->y2, w, h, x, y, picref->pos, picref->pts, - picref->pts == AV_NOPTS_VALUE ? -1 : picref->pts * av_q2d(inlink->time_base), + "x1:%d x2:%d y1:%d y2:%d w:%d h:%d x:%d y:%d pts:%"PRId64" t:%f crop=%d:%d:%d:%d\n", + s->x1, s->x2, s->y1, s->y2, w, h, x, y, frame->pts, + frame->pts == AV_NOPTS_VALUE ? -1 : frame->pts * av_q2d(inlink->time_base), w, h, x, y); } - avfilter_end_frame(inlink->dst->outputs[0]); + return ff_filter_frame(inlink->dst->outputs[0], frame); } -AVFilter avfilter_vf_cropdetect = { +#define OFFSET(x) offsetof(CropDetectContext, x) +#define FLAGS AV_OPT_FLAG_VIDEO_PARAM +static const AVOption options[] = { + { "limit", "Threshold below which the pixel is considered black", OFFSET(limit), AV_OPT_TYPE_INT, { .i64 = 24 }, 0, INT_MAX, FLAGS }, + { "round", "Value by which the width/height should be divisible", OFFSET(round), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS }, + { "reset", "Recalculate the crop area after this many frames", OFFSET(reset_count), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS }, + { NULL }, +}; + +static const AVClass cropdetect_class = { + .class_name = "cropdetect", + .item_name = av_default_item_name, + .option = options, + .version = LIBAVUTIL_VERSION_INT, +}; + +static const AVFilterPad avfilter_vf_cropdetect_inputs[] = { + { + .name = "default", + .type = AVMEDIA_TYPE_VIDEO, + .config_props = config_input, + .get_video_buffer = ff_null_get_video_buffer, + .filter_frame = filter_frame, + }, + { NULL } +}; + +static const AVFilterPad avfilter_vf_cropdetect_outputs[] = { + { + .name = "default", + .type = AVMEDIA_TYPE_VIDEO + }, + { NULL } +}; + +AVFilter ff_vf_cropdetect = { .name = "cropdetect", .description = NULL_IF_CONFIG_SMALL("Auto-detect crop size."), .priv_size = sizeof(CropDetectContext), + .priv_class = &cropdetect_class, .init = init, .query_formats = query_formats, - .inputs = (AVFilterPad[]) {{ .name = "default", - .type = AVMEDIA_TYPE_VIDEO, - .config_props = config_input, - .get_video_buffer = ff_null_get_video_buffer, - .start_frame = ff_null_start_frame, - .end_frame = end_frame, }, - { .name = NULL}}, - - .outputs = (AVFilterPad[]) {{ .name = "default", - .type = AVMEDIA_TYPE_VIDEO }, - { .name = NULL}}, + .inputs = avfilter_vf_cropdetect_inputs, + + .outputs = avfilter_vf_cropdetect_outputs, };