]> 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
31 typedef struct {
32     unsigned int frame;
33     int vsub, hsub;
34 } BBoxContext;
35
36 static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
37 {
38     BBoxContext *bbox = ctx->priv;
39     bbox->frame = 0;
40     return 0;
41 }
42
43 static int query_formats(AVFilterContext *ctx)
44 {
45     static const enum PixelFormat pix_fmts[] = {
46         PIX_FMT_YUV420P,
47         PIX_FMT_YUV444P,
48         PIX_FMT_YUV440P,
49         PIX_FMT_YUV422P,
50         PIX_FMT_YUV411P,
51         PIX_FMT_NONE,
52     };
53
54     avfilter_set_common_pixel_formats(ctx, avfilter_make_format_list(pix_fmts));
55     return 0;
56 }
57
58 static void end_frame(AVFilterLink *inlink)
59 {
60     AVFilterContext *ctx = inlink->dst;
61     BBoxContext *bbox = ctx->priv;
62     AVFilterBufferRef *picref = inlink->cur_buf;
63     FFBoundingBox box;
64     int has_bbox, w, h;
65
66     has_bbox =
67         ff_calculate_bounding_box(&box,
68                                   picref->data[0], picref->linesize[0],
69                                   inlink->w, inlink->h, 16);
70     w = box.x2 - box.x1 + 1;
71     h = box.y2 - box.y1 + 1;
72
73     av_log(ctx, AV_LOG_INFO,
74            "n:%d pts:%s pts_time:%s", bbox->frame,
75            av_ts2str(picref->pts), av_ts2timestr(picref->pts, &inlink->time_base));
76
77     if (has_bbox) {
78         av_log(ctx, AV_LOG_INFO,
79                "x1:%d x2:%d y1:%d y2:%d w:%d h:%d"
80                " crop=%d:%d:%d:%d drawbox=%d:%d:%d:%d",
81                box.x1, box.x2, box.y1, box.y2, w, h,
82                w, h, box.x1, box.y1,    /* crop params */
83                box.x1, box.y1, w, h);   /* drawbox params */
84     }
85     av_log(ctx, AV_LOG_INFO, "\n");
86
87     bbox->frame++;
88     avfilter_end_frame(inlink->dst->outputs[0]);
89 }
90
91 AVFilter avfilter_vf_bbox = {
92     .name          = "bbox",
93     .description   = NULL_IF_CONFIG_SMALL("Compute bounding box for each frame."),
94     .priv_size     = sizeof(BBoxContext),
95     .query_formats = query_formats,
96     .init          = init,
97
98     .inputs = (const AVFilterPad[]) {
99         { .name             = "default",
100           .type             = AVMEDIA_TYPE_VIDEO,
101           .get_video_buffer = avfilter_null_get_video_buffer,
102           .start_frame      = avfilter_null_start_frame,
103           .end_frame        = end_frame,
104           .min_perms        = AV_PERM_READ, },
105         { .name = NULL }
106     },
107
108     .outputs = (const AVFilterPad[]) {
109         { .name             = "default",
110           .type             = AVMEDIA_TYPE_VIDEO },
111         { .name = NULL }
112     },
113 };