]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_showinfo.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavfilter / vf_showinfo.c
1 /*
2  * Copyright (c) 2011 Stefano Sabatini
3  * This file is part of FFmpeg.
4  *
5  * FFmpeg is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * FFmpeg is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with FFmpeg; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19
20 /**
21  * @file
22  * filter for showing textual video frame information
23  */
24
25 #include "libavutil/adler32.h"
26 #include "libavutil/imgutils.h"
27 #include "libavutil/pixdesc.h"
28 #include "libavutil/timestamp.h"
29 #include "avfilter.h"
30
31 typedef struct {
32     unsigned int frame;
33 } ShowInfoContext;
34
35 static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
36 {
37     ShowInfoContext *showinfo = ctx->priv;
38     showinfo->frame = 0;
39     return 0;
40 }
41
42 static void end_frame(AVFilterLink *inlink)
43 {
44     AVFilterContext *ctx = inlink->dst;
45     ShowInfoContext *showinfo = ctx->priv;
46     AVFilterBufferRef *picref = inlink->cur_buf;
47     uint32_t plane_checksum[4] = {0}, checksum = 0;
48     int i, plane, vsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_h;
49
50     for (plane = 0; picref->data[plane] && plane < 4; plane++) {
51         size_t linesize = av_image_get_linesize(picref->format, picref->video->w, plane);
52         uint8_t *data = picref->data[plane];
53         int h = plane == 1 || plane == 2 ? inlink->h >> vsub : inlink->h;
54
55         for (i = 0; i < h; i++) {
56             plane_checksum[plane] = av_adler32_update(plane_checksum[plane], data, linesize);
57             checksum = av_adler32_update(checksum, data, linesize);
58             data += picref->linesize[plane];
59         }
60     }
61
62     av_log(ctx, AV_LOG_INFO,
63            "n:%d pts:%s pts_time:%s pos:%"PRId64" "
64            "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c "
65            "checksum:%08X plane_checksum:[%08X",
66            showinfo->frame,
67            av_ts2str(picref->pts), av_ts2timestr(picref->pts, &inlink->time_base), picref->pos,
68            av_pix_fmt_descriptors[picref->format].name,
69            picref->video->sample_aspect_ratio.num, picref->video->sample_aspect_ratio.den,
70            picref->video->w, picref->video->h,
71            !picref->video->interlaced     ? 'P' :         /* Progressive  */
72            picref->video->top_field_first ? 'T' : 'B',    /* Top / Bottom */
73            picref->video->key_frame,
74            av_get_picture_type_char(picref->video->pict_type),
75            checksum, plane_checksum[0]);
76
77     for (plane = 1; picref->data[plane] && plane < 4; plane++)
78         av_log(ctx, AV_LOG_INFO, " %08X", plane_checksum[plane]);
79     av_log(ctx, AV_LOG_INFO, "]\n");
80
81     showinfo->frame++;
82     avfilter_end_frame(inlink->dst->outputs[0]);
83 }
84
85 AVFilter avfilter_vf_showinfo = {
86     .name        = "showinfo",
87     .description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
88
89     .priv_size = sizeof(ShowInfoContext),
90     .init      = init,
91
92     .inputs    = (const AVFilterPad[]) {{ .name       = "default",
93                                     .type             = AVMEDIA_TYPE_VIDEO,
94                                     .get_video_buffer = avfilter_null_get_video_buffer,
95                                     .start_frame      = avfilter_null_start_frame,
96                                     .end_frame        = end_frame,
97                                     .min_perms        = AV_PERM_READ, },
98                                   { .name = NULL}},
99
100     .outputs   = (const AVFilterPad[]) {{ .name       = "default",
101                                     .type             = AVMEDIA_TYPE_VIDEO },
102                                   { .name = NULL}},
103 };