vf_showinfo.c
Go to the documentation of this file.
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 
25 #include "libavutil/adler32.h"
26 #include "libavutil/imgutils.h"
27 #include "libavutil/internal.h"
28 #include "libavutil/pixdesc.h"
29 #include "avfilter.h"
30 #include "internal.h"
31 #include "video.h"
32 
33 typedef struct {
34  unsigned int frame;
36 
37 static av_cold int init(AVFilterContext *ctx, const char *args)
38 {
39  ShowInfoContext *showinfo = ctx->priv;
40  showinfo->frame = 0;
41  return 0;
42 }
43 
44 static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *frame)
45 {
46  AVFilterContext *ctx = inlink->dst;
47  ShowInfoContext *showinfo = ctx->priv;
48  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
49  uint32_t plane_checksum[4] = {0}, checksum = 0;
50  int i, plane, vsub = desc->log2_chroma_h;
51 
52  for (plane = 0; frame->data[plane] && plane < 4; plane++) {
53  size_t linesize = av_image_get_linesize(frame->format, frame->video->w, plane);
54  uint8_t *data = frame->data[plane];
55  int h = plane == 1 || plane == 2 ? inlink->h >> vsub : inlink->h;
56 
57  for (i = 0; i < h; i++) {
58  plane_checksum[plane] = av_adler32_update(plane_checksum[plane], data, linesize);
59  checksum = av_adler32_update(checksum, data, linesize);
60  data += frame->linesize[plane];
61  }
62  }
63 
64  av_log(ctx, AV_LOG_INFO,
65  "n:%d pts:%"PRId64" pts_time:%f pos:%"PRId64" "
66  "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c "
67  "checksum:%u plane_checksum:[%u %u %u %u]\n",
68  showinfo->frame,
69  frame->pts, frame->pts * av_q2d(inlink->time_base), frame->pos,
70  desc->name,
71  frame->video->pixel_aspect.num, frame->video->pixel_aspect.den,
72  frame->video->w, frame->video->h,
73  !frame->video->interlaced ? 'P' : /* Progressive */
74  frame->video->top_field_first ? 'T' : 'B', /* Top / Bottom */
75  frame->video->key_frame,
77  checksum, plane_checksum[0], plane_checksum[1], plane_checksum[2], plane_checksum[3]);
78 
79  showinfo->frame++;
80  return ff_filter_frame(inlink->dst->outputs[0], frame);
81 }
82 
84  {
85  .name = "default",
86  .type = AVMEDIA_TYPE_VIDEO,
87  .get_video_buffer = ff_null_get_video_buffer,
88  .filter_frame = filter_frame,
89  .min_perms = AV_PERM_READ,
90  },
91  { NULL }
92 };
93 
95  {
96  .name = "default",
97  .type = AVMEDIA_TYPE_VIDEO
98  },
99  { NULL }
100 };
101 
103  .name = "showinfo",
104  .description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
105 
106  .priv_size = sizeof(ShowInfoContext),
107  .init = init,
108 
109  .inputs = avfilter_vf_showinfo_inputs,
110 
111  .outputs = avfilter_vf_showinfo_outputs,
112 };
int av_image_get_linesize(enum AVPixelFormat pix_fmt, int width, int plane)
Compute the size of an image line with format pix_fmt and width width for the plane plane...
Definition: imgutils.c:48
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:1435
AVFilterBufferRefVideoProps * video
video buffer specific properties
Definition: avfilter.h:159
int linesize[8]
number of bytes per line
Definition: avfilter.h:157
misc image utilities
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:122
int ff_filter_frame(AVFilterLink *link, AVFilterBufferRef *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:459
AVFilter avfilter_vf_showinfo
Definition: vf_showinfo.c:102
int num
numerator
Definition: rational.h:44
static const AVFilterPad avfilter_vf_showinfo_inputs[]
Definition: vf_showinfo.c:83
#define AV_PERM_READ
can read from the buffer
Definition: avfilter.h:97
const char * name
Pad name.
Definition: internal.h:39
uint8_t
int top_field_first
field order
Definition: avfilter.h:126
unsigned int frame
Definition: vf_showinfo.c:34
const char data[16]
Definition: mxf.c:66
static double av_q2d(AVRational a)
Convert rational to double.
Definition: rational.h:69
int key_frame
1 -> keyframe, 0-> not
Definition: avfilter.h:128
char av_get_picture_type_char(enum AVPictureType pict_type)
Return a single letter to describe the given picture type pict_type.
Definition: utils.c:43
unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf, unsigned int len)
Calculate the Adler32 checksum of a buffer.
Definition: adler32.c:33
AVRational pixel_aspect
pixel aspect ratio
Definition: avfilter.h:124
const char * name
Definition: pixdesc.h:56
int64_t pts
presentation timestamp.
Definition: avfilter.h:167
A filter pad used for either input or output.
Definition: internal.h:33
int h
image height
Definition: avfilter.h:123
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:75
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:88
void * priv
private data for use by the filter
Definition: avfilter.h:439
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:146
common internal API header
static av_cold int init(AVFilterContext *ctx, const char *args)
Definition: vf_showinfo.c:37
A reference to an AVFilterBuffer.
Definition: avfilter.h:139
NULL
Definition: eval.c:52
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:55
static const AVFilterPad avfilter_vf_showinfo_outputs[]
Definition: vf_showinfo.c:94
enum AVPictureType pict_type
picture type of the frame
Definition: avfilter.h:127
Filter definition.
Definition: avfilter.h:371
static const AVFilterPad inputs[]
Definition: af_ashowinfo.c:110
const char * name
filter name
Definition: avfilter.h:372
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:433
int interlaced
is frame interlaced
Definition: avfilter.h:125
int den
denominator
Definition: rational.h:45
static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *frame)
Definition: vf_showinfo.c:44
int64_t pos
byte position in stream, -1 if unknown
Definition: avfilter.h:168
uint8_t * data[8]
picture/audio data for each plane
Definition: avfilter.h:141
int format
media format
Definition: avfilter.h:170
An instance of a filter.
Definition: avfilter.h:418
internal API functions
AVFilterBufferRef * ff_null_get_video_buffer(AVFilterLink *link, int perms, int w, int h)
Definition: video.c:72