#include "libavutil/adler32.h"
#include "libavutil/imgutils.h"
#include "libavutil/internal.h"
#include "libavutil/pixdesc.h"
#include "libavutil/timestamp.h"
#include "avfilter.h"
#include "internal.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
| struct | ShowInfoContext |
Functions | |
| static av_cold int | init (AVFilterContext *ctx, const char *args) |
| static int | end_frame (AVFilterLink *inlink) |
Variables | |
| AVFilter | avfilter_vf_showinfo |
Definition in file vf_showinfo.c.
| static int end_frame | ( | AVFilterLink * | inlink | ) | [static] |
Definition at line 45 of file vf_showinfo.c.
| static av_cold int init | ( | AVFilterContext * | ctx, | |
| const char * | args | |||
| ) | [static] |
Definition at line 38 of file vf_showinfo.c.
Initial value:
{
.name = "showinfo",
.description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
.priv_size = sizeof(ShowInfoContext),
.init = init,
.inputs = (const AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer = ff_null_get_video_buffer,
.start_frame = ff_null_start_frame,
.end_frame = end_frame,
.min_perms = AV_PERM_READ, },
{ .name = NULL}},
.outputs = (const AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO },
{ .name = NULL}},
}
Definition at line 88 of file vf_showinfo.c.
1.5.8