]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_showinfo.c
Merge commit '43e7f0797f9f821a3866a20f05e512e13c82076a'
[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 <inttypes.h>
26
27 #include "libavutil/adler32.h"
28 #include "libavutil/imgutils.h"
29 #include "libavutil/internal.h"
30 #include "libavutil/pixdesc.h"
31 #include "libavutil/stereo3d.h"
32 #include "libavutil/timestamp.h"
33
34 #include "avfilter.h"
35 #include "internal.h"
36 #include "video.h"
37
38 static void dump_stereo3d(AVFilterContext *ctx, AVFrameSideData *sd)
39 {
40     AVStereo3D *stereo;
41
42     av_log(ctx, AV_LOG_INFO, "stereoscopic information: ");
43     if (sd->size < sizeof(*stereo)) {
44         av_log(ctx, AV_LOG_INFO, "invalid data");
45         return;
46     }
47
48     stereo = (AVStereo3D *)sd->data;
49
50     av_log(ctx, AV_LOG_INFO, "type - ");
51     switch (stereo->type) {
52     case AV_STEREO3D_2D:                  av_log(ctx, AV_LOG_INFO, "2D");                     break;
53     case AV_STEREO3D_SIDEBYSIDE:          av_log(ctx, AV_LOG_INFO, "side by side");           break;
54     case AV_STEREO3D_TOPBOTTOM:           av_log(ctx, AV_LOG_INFO, "top and bottom");         break;
55     case AV_STEREO3D_FRAMESEQUENCE:       av_log(ctx, AV_LOG_INFO, "frame alternate");        break;
56     case AV_STEREO3D_CHECKERBOARD:        av_log(ctx, AV_LOG_INFO, "checkerboard");           break;
57     case AV_STEREO3D_LINES:               av_log(ctx, AV_LOG_INFO, "interleaved lines");      break;
58     case AV_STEREO3D_COLUMNS:             av_log(ctx, AV_LOG_INFO, "interleaved columns");    break;
59     case AV_STEREO3D_SIDEBYSIDE_QUINCUNX: av_log(ctx, AV_LOG_INFO, "side by side "
60                                                                    "(quincunx subsampling)"); break;
61     default:                              av_log(ctx, AV_LOG_WARNING, "unknown");             break;
62     }
63
64     if (stereo->flags & AV_STEREO3D_FLAG_INVERT)
65         av_log(ctx, AV_LOG_INFO, " (inverted)");
66 }
67
68 static void update_sample_stats(const uint8_t *src, int len, int64_t *sum, int64_t *sum2)
69 {
70     int i;
71
72     for (i = 0; i < len; i++) {
73         *sum += src[i];
74         *sum2 += src[i] * src[i];
75     }
76 }
77
78 static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
79 {
80     AVFilterContext *ctx = inlink->dst;
81     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
82     uint32_t plane_checksum[4] = {0}, checksum = 0;
83     int64_t sum[4] = {0}, sum2[4] = {0};
84     int32_t pixelcount[4] = {0};
85     int i, plane, vsub = desc->log2_chroma_h;
86
87     for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++) {
88         int64_t linesize = av_image_get_linesize(frame->format, frame->width, plane);
89         uint8_t *data = frame->data[plane];
90         int h = plane == 1 || plane == 2 ? FF_CEIL_RSHIFT(inlink->h, vsub) : inlink->h;
91
92         if (linesize < 0)
93             return linesize;
94
95         for (i = 0; i < h; i++) {
96             plane_checksum[plane] = av_adler32_update(plane_checksum[plane], data, linesize);
97             checksum = av_adler32_update(checksum, data, linesize);
98
99             update_sample_stats(data, linesize, sum+plane, sum2+plane);
100             pixelcount[plane] += linesize;
101             data += frame->linesize[plane];
102         }
103     }
104
105     av_log(ctx, AV_LOG_INFO,
106            "n:%"PRId64" pts:%s pts_time:%s pos:%"PRId64" "
107            "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c "
108            "checksum:%08"PRIX32" plane_checksum:[%08"PRIX32,
109            inlink->frame_count,
110            av_ts2str(frame->pts), av_ts2timestr(frame->pts, &inlink->time_base), av_frame_get_pkt_pos(frame),
111            desc->name,
112            frame->sample_aspect_ratio.num, frame->sample_aspect_ratio.den,
113            frame->width, frame->height,
114            !frame->interlaced_frame ? 'P' :         /* Progressive  */
115            frame->top_field_first   ? 'T' : 'B',    /* Top / Bottom */
116            frame->key_frame,
117            av_get_picture_type_char(frame->pict_type),
118            checksum, plane_checksum[0]);
119
120     for (plane = 1; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
121         av_log(ctx, AV_LOG_INFO, " %08"PRIX32, plane_checksum[plane]);
122     av_log(ctx, AV_LOG_INFO, "] mean:[");
123     for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
124         av_log(ctx, AV_LOG_INFO, "%"PRId64" ", (sum[plane] + pixelcount[plane]/2) / pixelcount[plane]);
125     av_log(ctx, AV_LOG_INFO, "\b] stdev:[");
126     for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
127         av_log(ctx, AV_LOG_INFO, "%3.1f ",
128                sqrt((sum2[plane] - sum[plane]*(double)sum[plane]/pixelcount[plane])/pixelcount[plane]));
129     av_log(ctx, AV_LOG_INFO, "\b]\n");
130
131     for (i = 0; i < frame->nb_side_data; i++) {
132         AVFrameSideData *sd = frame->side_data[i];
133
134         av_log(ctx, AV_LOG_INFO, "  side data - ");
135         switch (sd->type) {
136         case AV_FRAME_DATA_PANSCAN:
137             av_log(ctx, AV_LOG_INFO, "pan/scan");
138             break;
139         case AV_FRAME_DATA_A53_CC:
140             av_log(ctx, AV_LOG_INFO, "A/53 closed captions (%d bytes)", sd->size);
141             break;
142         case AV_FRAME_DATA_STEREO3D:
143             dump_stereo3d(ctx, sd);
144             break;
145         default:
146             av_log(ctx, AV_LOG_WARNING, "unknown side data type %d (%d bytes)",
147                    sd->type, sd->size);
148             break;
149         }
150
151         av_log(ctx, AV_LOG_INFO, "\n");
152     }
153
154     return ff_filter_frame(inlink->dst->outputs[0], frame);
155 }
156
157 static const AVFilterPad avfilter_vf_showinfo_inputs[] = {
158     {
159         .name         = "default",
160         .type         = AVMEDIA_TYPE_VIDEO,
161         .filter_frame = filter_frame,
162     },
163     { NULL }
164 };
165
166 static const AVFilterPad avfilter_vf_showinfo_outputs[] = {
167     {
168         .name = "default",
169         .type = AVMEDIA_TYPE_VIDEO
170     },
171     { NULL }
172 };
173
174 AVFilter ff_vf_showinfo = {
175     .name        = "showinfo",
176     .description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
177     .inputs      = avfilter_vf_showinfo_inputs,
178     .outputs     = avfilter_vf_showinfo_outputs,
179 };