]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_bbox.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavfilter / vf_bbox.c
1 /*
2  * Copyright (c) 2012 Stefano Sabatini
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 /**
22  * @file
23  * bounding box detection filter
24  */
25
26 #include "libavutil/pixdesc.h"
27 #include "libavutil/timestamp.h"
28 #include "avfilter.h"
29 #include "bbox.h"
30 #include "internal.h"
31
32 typedef struct {
33     unsigned int frame;
34     int vsub, hsub;
35 } BBoxContext;
36
37 static av_cold int init(AVFilterContext *ctx, const char *args)
38 {
39     BBoxContext *bbox = ctx->priv;
40     bbox->frame = 0;
41     return 0;
42 }
43
44 static int query_formats(AVFilterContext *ctx)
45 {
46     static const enum PixelFormat pix_fmts[] = {
47         PIX_FMT_YUV420P,
48         PIX_FMT_YUV444P,
49         PIX_FMT_YUV440P,
50         PIX_FMT_YUV422P,
51         PIX_FMT_YUV411P,
52         PIX_FMT_NONE,
53     };
54
55     ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
56     return 0;
57 }
58
59 static int end_frame(AVFilterLink *inlink)
60 {
61     AVFilterContext *ctx = inlink->dst;
62     BBoxContext *bbox = ctx->priv;
63     AVFilterBufferRef *picref = inlink->cur_buf;
64     FFBoundingBox box;
65     int has_bbox, w, h;
66
67     has_bbox =
68         ff_calculate_bounding_box(&box,
69                                   picref->data[0], picref->linesize[0],
70                                   inlink->w, inlink->h, 16);
71     w = box.x2 - box.x1 + 1;
72     h = box.y2 - box.y1 + 1;
73
74     av_log(ctx, AV_LOG_INFO,
75            "n:%d pts:%s pts_time:%s", bbox->frame,
76            av_ts2str(picref->pts), av_ts2timestr(picref->pts, &inlink->time_base));
77
78     if (has_bbox) {
79         av_log(ctx, AV_LOG_INFO,
80                " x1:%d x2:%d y1:%d y2:%d w:%d h:%d"
81                " crop=%d:%d:%d:%d drawbox=%d:%d:%d:%d",
82                box.x1, box.x2, box.y1, box.y2, w, h,
83                w, h, box.x1, box.y1,    /* crop params */
84                box.x1, box.y1, w, h);   /* drawbox params */
85     }
86     av_log(ctx, AV_LOG_INFO, "\n");
87
88     bbox->frame++;
89     return ff_end_frame(inlink->dst->outputs[0]);
90 }
91
92 AVFilter avfilter_vf_bbox = {
93     .name          = "bbox",
94     .description   = NULL_IF_CONFIG_SMALL("Compute bounding box for each frame."),
95     .priv_size     = sizeof(BBoxContext),
96     .query_formats = query_formats,
97     .init          = init,
98
99     .inputs = (const AVFilterPad[]) {
100         { .name             = "default",
101           .type             = AVMEDIA_TYPE_VIDEO,
102           .get_video_buffer = ff_null_get_video_buffer,
103           .start_frame      = ff_null_start_frame_keep_ref,
104           .end_frame        = end_frame,
105           .min_perms        = AV_PERM_READ, },
106         { .name = NULL }
107     },
108
109     .outputs = (const AVFilterPad[]) {
110         { .name             = "default",
111           .type             = AVMEDIA_TYPE_VIDEO },
112         { .name = NULL }
113     },
114 };