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