#include "avfilter.h"
Go to the source code of this file.
Functions | |
static void | start_frame (AVFilterLink *link, AVFilterBufferRef *picref) |
static void | end_frame (AVFilterLink *link) |
Variables | |
AVFilter | avfilter_vsink_nullsink |
static void end_frame | ( | AVFilterLink * | link | ) | [static] |
Definition at line 25 of file vsink_nullsink.c.
static void start_frame | ( | AVFilterLink * | link, | |
AVFilterBufferRef * | picref | |||
) | [static] |
Definition at line 21 of file vsink_nullsink.c.
Initial value:
{ .name = "nullsink", .description = NULL_IF_CONFIG_SMALL("Do absolutely nothing with the input video."), .priv_size = 0, .inputs = (const AVFilterPad[]) { { .name = "default", .type = AVMEDIA_TYPE_VIDEO, .start_frame = start_frame, .end_frame = end_frame, }, { .name = NULL}, }, .outputs = (const AVFilterPad[]) {{ .name = NULL }}, }
Definition at line 29 of file vsink_nullsink.c.