#include "avfilter.h"
#include "internal.h"
#include "libavutil/internal.h"
Go to the source code of this file.
Functions | |
static int | start_frame (AVFilterLink *link, AVFilterBufferRef *picref) |
static int | end_frame (AVFilterLink *link) |
Variables | |
AVFilter | avfilter_vsink_nullsink |
static int end_frame | ( | AVFilterLink * | link | ) | [static] |
Definition at line 28 of file vsink_nullsink.c.
static int start_frame | ( | AVFilterLink * | link, | |
AVFilterBufferRef * | picref | |||
) | [static] |
Definition at line 23 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 = NULL, }
Definition at line 33 of file vsink_nullsink.c.