#include "libavutil/internal.h"
#include "avfilter.h"
#include "internal.h"
#include "video.h"
Go to the source code of this file.
| Variables | |
| AVFilter | avfilter_vf_null | 
Definition in file vf_null.c.
Initial value:
 {
    .name      = "null",
    .description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."),
    .priv_size = 0,
    .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        = ff_null_end_frame },
                                        { .name = NULL}},
    .outputs   = (const AVFilterPad[]) {{ .name             = "default",
                                          .type             = AVMEDIA_TYPE_VIDEO, },
                                        { .name = NULL}},
}
 1.5.8
 1.5.8