#include "avfilter.h"
Go to the source code of this file.
Functions | |
static void | null_filter_samples (AVFilterLink *link, AVFilterBufferRef *samplesref) |
Variables | |
AVFilter | avfilter_asink_anullsink |
static void null_filter_samples | ( | AVFilterLink * | link, | |
AVFilterBufferRef * | samplesref | |||
) | [static] |
Definition at line 21 of file asink_anullsink.c.
Initial value:
{ .name = "anullsink", .description = NULL_IF_CONFIG_SMALL("Do absolutely nothing with the input audio."), .priv_size = 0, .inputs = (const AVFilterPad[]) { { .name = "default", .type = AVMEDIA_TYPE_AUDIO, .filter_samples = null_filter_samples, }, { .name = NULL}, }, .outputs = (const AVFilterPad[]) {{ .name = NULL }}, }
Definition at line 23 of file asink_anullsink.c.