resample: Avoid off-by-1 errors in PTS calcs.
[platform/upstream/libav.git] / libavfilter / vf_showinfo.c
1 /*
2  * Copyright (c) 2011 Stefano Sabatini
3  * This file is part of Libav.
4  *
5  * Libav 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  * Libav 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 Libav; 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/pixdesc.h"
32 #include "libavutil/stereo3d.h"
33
34 #include "avfilter.h"
35 #include "internal.h"
36 #include "video.h"
37
38 typedef struct ShowInfoContext {
39     unsigned int frame;
40 } ShowInfoContext;
41
42 static void dump_stereo3d(AVFilterContext *ctx, AVFrameSideData *sd)
43 {
44     AVStereo3D *stereo;
45
46     av_log(ctx, AV_LOG_INFO, "stereoscopic information: ");
47     if (sd->size < sizeof(*stereo)) {
48         av_log(ctx, AV_LOG_INFO, "invalid data");
49         return;
50     }
51
52     stereo = (AVStereo3D *)sd->data;
53
54     av_log(ctx, AV_LOG_INFO, "type - ");
55     switch (stereo->type) {
56     case AV_STEREO3D_2D:                  av_log(ctx, AV_LOG_INFO, "2D");                     break;
57     case AV_STEREO3D_SIDEBYSIDE:          av_log(ctx, AV_LOG_INFO, "side by side");           break;
58     case AV_STEREO3D_TOPBOTTOM:           av_log(ctx, AV_LOG_INFO, "top and bottom");         break;
59     case AV_STEREO3D_FRAMESEQUENCE:       av_log(ctx, AV_LOG_INFO, "frame alternate");        break;
60     case AV_STEREO3D_CHECKERBOARD:        av_log(ctx, AV_LOG_INFO, "checkerboard");           break;
61     case AV_STEREO3D_LINES:               av_log(ctx, AV_LOG_INFO, "interleaved lines");      break;
62     case AV_STEREO3D_COLUMNS:             av_log(ctx, AV_LOG_INFO, "interleaved columns");    break;
63     case AV_STEREO3D_SIDEBYSIDE_QUINCUNX: av_log(ctx, AV_LOG_INFO, "side by side "
64                                                                    "(quincunx subsampling)"); break;
65     default:                              av_log(ctx, AV_LOG_WARNING, "unknown");             break;
66     }
67
68     if (stereo->flags & AV_STEREO3D_FLAG_INVERT)
69         av_log(ctx, AV_LOG_INFO, " (inverted)");
70 }
71
72 static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
73 {
74     AVFilterContext *ctx = inlink->dst;
75     ShowInfoContext *showinfo = ctx->priv;
76     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
77     uint32_t plane_checksum[4] = {0}, checksum = 0;
78     int i, plane, vsub = desc->log2_chroma_h;
79
80     for (plane = 0; frame->data[plane] && plane < 4; plane++) {
81         size_t linesize = av_image_get_linesize(frame->format, frame->width, plane);
82         uint8_t *data = frame->data[plane];
83         int h = plane == 1 || plane == 2 ? inlink->h >> vsub : inlink->h;
84
85         for (i = 0; i < h; i++) {
86             plane_checksum[plane] = av_adler32_update(plane_checksum[plane], data, linesize);
87             checksum = av_adler32_update(checksum, data, linesize);
88             data += frame->linesize[plane];
89         }
90     }
91
92     av_log(ctx, AV_LOG_INFO,
93            "n:%d pts:%"PRId64" pts_time:%f "
94            "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c "
95            "checksum:%"PRIu32" plane_checksum:[%"PRIu32" %"PRIu32" %"PRIu32" %"PRIu32"]\n",
96            showinfo->frame,
97            frame->pts, frame->pts * av_q2d(inlink->time_base),
98            desc->name,
99            frame->sample_aspect_ratio.num, frame->sample_aspect_ratio.den,
100            frame->width, frame->height,
101            !frame->interlaced_frame ? 'P' :         /* Progressive  */
102            frame->top_field_first   ? 'T' : 'B',    /* Top / Bottom */
103            frame->key_frame,
104            av_get_picture_type_char(frame->pict_type),
105            checksum, plane_checksum[0], plane_checksum[1], plane_checksum[2], plane_checksum[3]);
106
107     for (i = 0; i < frame->nb_side_data; i++) {
108         AVFrameSideData *sd = frame->side_data[i];
109
110         av_log(ctx, AV_LOG_INFO, "  side data - ");
111         switch (sd->type) {
112         case AV_FRAME_DATA_PANSCAN:
113             av_log(ctx, AV_LOG_INFO, "pan/scan");
114             break;
115         case AV_FRAME_DATA_A53_CC:
116             av_log(ctx, AV_LOG_INFO, "A/53 closed captions (%d bytes)", sd->size);
117             break;
118         case AV_FRAME_DATA_STEREO3D:
119             dump_stereo3d(ctx, sd);
120             break;
121         case AV_FRAME_DATA_DISPLAYMATRIX:
122             av_log(ctx, AV_LOG_INFO, "displaymatrix: rotation of %.2f degrees",
123                    av_display_rotation_get((int32_t *)sd->data));
124             break;
125         case AV_FRAME_DATA_AFD:
126             av_log(ctx, AV_LOG_INFO, "afd: value of %"PRIu8, sd->data[0]);
127             break;
128         default:
129             av_log(ctx, AV_LOG_WARNING, "unknown side data type %d (%d bytes)",
130                    sd->type, sd->size);
131             break;
132         }
133
134         av_log(ctx, AV_LOG_INFO, "\n");
135     }
136
137     showinfo->frame++;
138     return ff_filter_frame(inlink->dst->outputs[0], frame);
139 }
140
141 static const AVFilterPad avfilter_vf_showinfo_inputs[] = {
142     {
143         .name             = "default",
144         .type             = AVMEDIA_TYPE_VIDEO,
145         .get_video_buffer = ff_null_get_video_buffer,
146         .filter_frame     = filter_frame,
147     },
148     { NULL }
149 };
150
151 static const AVFilterPad avfilter_vf_showinfo_outputs[] = {
152     {
153         .name = "default",
154         .type = AVMEDIA_TYPE_VIDEO
155     },
156     { NULL }
157 };
158
159 AVFilter ff_vf_showinfo = {
160     .name        = "showinfo",
161     .description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
162
163     .priv_size = sizeof(ShowInfoContext),
164
165     .inputs    = avfilter_vf_showinfo_inputs,
166
167     .outputs   = avfilter_vf_showinfo_outputs,
168 };