]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_showinfo.c
lavf/showinfo: use error level when get invalid sidedata
[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/display.h"
29 #include "libavutil/imgutils.h"
30 #include "libavutil/internal.h"
31 #include "libavutil/opt.h"
32 #include "libavutil/pixdesc.h"
33 #include "libavutil/spherical.h"
34 #include "libavutil/stereo3d.h"
35 #include "libavutil/timestamp.h"
36 #include "libavutil/timecode.h"
37 #include "libavutil/mastering_display_metadata.h"
38
39 #include "avfilter.h"
40 #include "internal.h"
41 #include "video.h"
42
43 typedef struct ShowInfoContext {
44     const AVClass *class;
45     int calculate_checksums;
46 } ShowInfoContext;
47
48 #define OFFSET(x) offsetof(ShowInfoContext, x)
49 #define VF AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
50
51 static const AVOption showinfo_options[] = {
52     { "checksum", "calculate checksums", OFFSET(calculate_checksums), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, VF },
53     { NULL }
54 };
55
56 AVFILTER_DEFINE_CLASS(showinfo);
57
58 static void dump_spherical(AVFilterContext *ctx, AVFrame *frame, AVFrameSideData *sd)
59 {
60     AVSphericalMapping *spherical = (AVSphericalMapping *)sd->data;
61     double yaw, pitch, roll;
62
63     av_log(ctx, AV_LOG_INFO, "spherical information: ");
64     if (sd->size < sizeof(*spherical)) {
65         av_log(ctx, AV_LOG_ERROR, "invalid data");
66         return;
67     }
68
69     if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR)
70         av_log(ctx, AV_LOG_INFO, "equirectangular ");
71     else if (spherical->projection == AV_SPHERICAL_CUBEMAP)
72         av_log(ctx, AV_LOG_INFO, "cubemap ");
73     else if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE)
74         av_log(ctx, AV_LOG_INFO, "tiled equirectangular ");
75     else {
76         av_log(ctx, AV_LOG_WARNING, "unknown");
77         return;
78     }
79
80     yaw = ((double)spherical->yaw) / (1 << 16);
81     pitch = ((double)spherical->pitch) / (1 << 16);
82     roll = ((double)spherical->roll) / (1 << 16);
83     av_log(ctx, AV_LOG_INFO, "(%f/%f/%f) ", yaw, pitch, roll);
84
85     if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE) {
86         size_t l, t, r, b;
87         av_spherical_tile_bounds(spherical, frame->width, frame->height,
88                                  &l, &t, &r, &b);
89         av_log(ctx, AV_LOG_INFO,
90                "[%"SIZE_SPECIFIER", %"SIZE_SPECIFIER", %"SIZE_SPECIFIER", %"SIZE_SPECIFIER"] ",
91                l, t, r, b);
92     } else if (spherical->projection == AV_SPHERICAL_CUBEMAP) {
93         av_log(ctx, AV_LOG_INFO, "[pad %"PRIu32"] ", spherical->padding);
94     }
95 }
96
97 static void dump_stereo3d(AVFilterContext *ctx, AVFrameSideData *sd)
98 {
99     AVStereo3D *stereo;
100
101     av_log(ctx, AV_LOG_INFO, "stereoscopic information: ");
102     if (sd->size < sizeof(*stereo)) {
103         av_log(ctx, AV_LOG_ERROR, "invalid data");
104         return;
105     }
106
107     stereo = (AVStereo3D *)sd->data;
108
109     av_log(ctx, AV_LOG_INFO, "type - %s", av_stereo3d_type_name(stereo->type));
110
111     if (stereo->flags & AV_STEREO3D_FLAG_INVERT)
112         av_log(ctx, AV_LOG_INFO, " (inverted)");
113 }
114
115 static void dump_roi(AVFilterContext *ctx, AVFrameSideData *sd)
116 {
117     int nb_rois;
118     const AVRegionOfInterest *roi;
119     uint32_t roi_size;
120
121     roi = (const AVRegionOfInterest *)sd->data;
122     roi_size = roi->self_size;
123     if (!roi_size || sd->size % roi_size != 0) {
124         av_log(ctx, AV_LOG_ERROR, "Invalid AVRegionOfInterest.self_size.");
125         return;
126     }
127     nb_rois = sd->size / roi_size;
128
129     av_log(ctx, AV_LOG_INFO, "Regions Of Interest(RoI) information: ");
130     for (int i = 0; i < nb_rois; i++) {
131         roi = (const AVRegionOfInterest *)(sd->data + roi_size * i);
132         av_log(ctx, AV_LOG_INFO, "index: %d, region: (%d, %d)/(%d, %d), qp offset: %d/%d.\n",
133                i, roi->left, roi->top, roi->right, roi->bottom, roi->qoffset.num, roi->qoffset.den);
134     }
135 }
136
137 static void dump_mastering_display(AVFilterContext *ctx, AVFrameSideData *sd)
138 {
139     AVMasteringDisplayMetadata *mastering_display;
140
141     av_log(ctx, AV_LOG_INFO, "mastering display: ");
142     if (sd->size < sizeof(*mastering_display)) {
143         av_log(ctx, AV_LOG_ERROR, "invalid data");
144         return;
145     }
146
147     mastering_display = (AVMasteringDisplayMetadata *)sd->data;
148
149     av_log(ctx, AV_LOG_INFO, "has_primaries:%d has_luminance:%d "
150            "r(%5.4f,%5.4f) g(%5.4f,%5.4f) b(%5.4f %5.4f) wp(%5.4f, %5.4f) "
151            "min_luminance=%f, max_luminance=%f",
152            mastering_display->has_primaries, mastering_display->has_luminance,
153            av_q2d(mastering_display->display_primaries[0][0]),
154            av_q2d(mastering_display->display_primaries[0][1]),
155            av_q2d(mastering_display->display_primaries[1][0]),
156            av_q2d(mastering_display->display_primaries[1][1]),
157            av_q2d(mastering_display->display_primaries[2][0]),
158            av_q2d(mastering_display->display_primaries[2][1]),
159            av_q2d(mastering_display->white_point[0]), av_q2d(mastering_display->white_point[1]),
160            av_q2d(mastering_display->min_luminance), av_q2d(mastering_display->max_luminance));
161 }
162
163 static void dump_color_property(AVFilterContext *ctx, AVFrame *frame)
164 {
165     const char *color_range_str     = av_color_range_name(frame->color_range);
166     const char *colorspace_str      = av_color_space_name(frame->colorspace);
167     const char *color_primaries_str = av_color_primaries_name(frame->color_primaries);
168     const char *color_trc_str       = av_color_transfer_name(frame->color_trc);
169
170     if (!color_range_str || frame->color_range == AVCOL_RANGE_UNSPECIFIED) {
171         av_log(ctx, AV_LOG_INFO, "color_range:unknown");
172     } else {
173         av_log(ctx, AV_LOG_INFO, "color_range:%s", color_range_str);
174     }
175
176     if (!colorspace_str || frame->colorspace == AVCOL_SPC_UNSPECIFIED) {
177         av_log(ctx, AV_LOG_INFO, " color_space:unknown");
178     } else {
179         av_log(ctx, AV_LOG_INFO, " color_space:%s", colorspace_str);
180     }
181
182     if (!color_primaries_str || frame->color_primaries == AVCOL_PRI_UNSPECIFIED) {
183         av_log(ctx, AV_LOG_INFO, " color_primaries:unknown");
184     } else {
185         av_log(ctx, AV_LOG_INFO, " color_primaries:%s", color_primaries_str);
186     }
187
188     if (!color_trc_str || frame->color_trc == AVCOL_TRC_UNSPECIFIED) {
189         av_log(ctx, AV_LOG_INFO, " color_trc:unknown");
190     } else {
191         av_log(ctx, AV_LOG_INFO, " color_trc:%s", color_trc_str);
192     }
193     av_log(ctx, AV_LOG_INFO, "\n");
194 }
195
196 static void update_sample_stats(const uint8_t *src, int len, int64_t *sum, int64_t *sum2)
197 {
198     int i;
199
200     for (i = 0; i < len; i++) {
201         *sum += src[i];
202         *sum2 += src[i] * src[i];
203     }
204 }
205
206 static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
207 {
208     AVFilterContext *ctx = inlink->dst;
209     ShowInfoContext *s = ctx->priv;
210     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
211     uint32_t plane_checksum[4] = {0}, checksum = 0;
212     int64_t sum[4] = {0}, sum2[4] = {0};
213     int32_t pixelcount[4] = {0};
214     int i, plane, vsub = desc->log2_chroma_h;
215
216     for (plane = 0; plane < 4 && s->calculate_checksums && frame->data[plane] && frame->linesize[plane]; plane++) {
217         uint8_t *data = frame->data[plane];
218         int h = plane == 1 || plane == 2 ? AV_CEIL_RSHIFT(inlink->h, vsub) : inlink->h;
219         int linesize = av_image_get_linesize(frame->format, frame->width, plane);
220
221         if (linesize < 0)
222             return linesize;
223
224         for (i = 0; i < h; i++) {
225             plane_checksum[plane] = av_adler32_update(plane_checksum[plane], data, linesize);
226             checksum = av_adler32_update(checksum, data, linesize);
227
228             update_sample_stats(data, linesize, sum+plane, sum2+plane);
229             pixelcount[plane] += linesize;
230             data += frame->linesize[plane];
231         }
232     }
233
234     av_log(ctx, AV_LOG_INFO,
235            "n:%4"PRId64" pts:%7s pts_time:%-7s pos:%9"PRId64" "
236            "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c ",
237            inlink->frame_count_out,
238            av_ts2str(frame->pts), av_ts2timestr(frame->pts, &inlink->time_base), frame->pkt_pos,
239            desc->name,
240            frame->sample_aspect_ratio.num, frame->sample_aspect_ratio.den,
241            frame->width, frame->height,
242            !frame->interlaced_frame ? 'P' :         /* Progressive  */
243            frame->top_field_first   ? 'T' : 'B',    /* Top / Bottom */
244            frame->key_frame,
245            av_get_picture_type_char(frame->pict_type));
246
247     if (s->calculate_checksums) {
248         av_log(ctx, AV_LOG_INFO,
249                "checksum:%08"PRIX32" plane_checksum:[%08"PRIX32,
250                checksum, plane_checksum[0]);
251
252         for (plane = 1; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
253             av_log(ctx, AV_LOG_INFO, " %08"PRIX32, plane_checksum[plane]);
254         av_log(ctx, AV_LOG_INFO, "] mean:[");
255         for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
256             av_log(ctx, AV_LOG_INFO, "%"PRId64" ", (sum[plane] + pixelcount[plane]/2) / pixelcount[plane]);
257         av_log(ctx, AV_LOG_INFO, "\b] stdev:[");
258         for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
259             av_log(ctx, AV_LOG_INFO, "%3.1f ",
260                    sqrt((sum2[plane] - sum[plane]*(double)sum[plane]/pixelcount[plane])/pixelcount[plane]));
261         av_log(ctx, AV_LOG_INFO, "\b]");
262     }
263     av_log(ctx, AV_LOG_INFO, "\n");
264
265     for (i = 0; i < frame->nb_side_data; i++) {
266         AVFrameSideData *sd = frame->side_data[i];
267
268         av_log(ctx, AV_LOG_INFO, "  side data - ");
269         switch (sd->type) {
270         case AV_FRAME_DATA_PANSCAN:
271             av_log(ctx, AV_LOG_INFO, "pan/scan");
272             break;
273         case AV_FRAME_DATA_A53_CC:
274             av_log(ctx, AV_LOG_INFO, "A/53 closed captions (%d bytes)", sd->size);
275             break;
276         case AV_FRAME_DATA_SPHERICAL:
277             dump_spherical(ctx, frame, sd);
278             break;
279         case AV_FRAME_DATA_STEREO3D:
280             dump_stereo3d(ctx, sd);
281             break;
282         case AV_FRAME_DATA_S12M_TIMECODE: {
283             uint32_t *tc = (uint32_t*)sd->data;
284             for (int j = 1; j <= tc[0]; j++) {
285                 char tcbuf[AV_TIMECODE_STR_SIZE];
286                 av_timecode_make_smpte_tc_string(tcbuf, tc[j], 0);
287                 av_log(ctx, AV_LOG_INFO, "timecode - %s%s", tcbuf, j != tc[0] ? ", " : "");
288             }
289             break;
290         }
291         case AV_FRAME_DATA_DISPLAYMATRIX:
292             av_log(ctx, AV_LOG_INFO, "displaymatrix: rotation of %.2f degrees",
293                    av_display_rotation_get((int32_t *)sd->data));
294             break;
295         case AV_FRAME_DATA_AFD:
296             av_log(ctx, AV_LOG_INFO, "afd: value of %"PRIu8, sd->data[0]);
297             break;
298         case AV_FRAME_DATA_REGIONS_OF_INTEREST:
299             dump_roi(ctx, sd);
300             break;
301         case AV_FRAME_DATA_MASTERING_DISPLAY_METADATA:
302             dump_mastering_display(ctx, sd);
303             break;
304         default:
305             av_log(ctx, AV_LOG_WARNING, "unknown side data type %d (%d bytes)",
306                    sd->type, sd->size);
307             break;
308         }
309
310         av_log(ctx, AV_LOG_INFO, "\n");
311     }
312
313     dump_color_property(ctx, frame);
314
315     return ff_filter_frame(inlink->dst->outputs[0], frame);
316 }
317
318 static int config_props(AVFilterContext *ctx, AVFilterLink *link, int is_out)
319 {
320
321     av_log(ctx, AV_LOG_INFO, "config %s time_base: %d/%d, frame_rate: %d/%d\n",
322            is_out ? "out" : "in",
323            link->time_base.num, link->time_base.den,
324            link->frame_rate.num, link->frame_rate.den);
325
326     return 0;
327 }
328
329 static int config_props_in(AVFilterLink *link)
330 {
331     AVFilterContext *ctx = link->dst;
332     return config_props(ctx, link, 0);
333 }
334
335 static int config_props_out(AVFilterLink *link)
336 {
337     AVFilterContext *ctx = link->src;
338     return config_props(ctx, link, 1);
339 }
340
341 static const AVFilterPad avfilter_vf_showinfo_inputs[] = {
342     {
343         .name             = "default",
344         .type             = AVMEDIA_TYPE_VIDEO,
345         .filter_frame     = filter_frame,
346         .config_props     = config_props_in,
347     },
348     { NULL }
349 };
350
351 static const AVFilterPad avfilter_vf_showinfo_outputs[] = {
352     {
353         .name = "default",
354         .type = AVMEDIA_TYPE_VIDEO,
355         .config_props  = config_props_out,
356     },
357     { NULL }
358 };
359
360 AVFilter ff_vf_showinfo = {
361     .name        = "showinfo",
362     .description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
363     .inputs      = avfilter_vf_showinfo_inputs,
364     .outputs     = avfilter_vf_showinfo_outputs,
365     .priv_size   = sizeof(ShowInfoContext),
366     .priv_class  = &showinfo_class,
367 };