#include "avfilter.h"
Go to the source code of this file.
Functions | |
| static int | split_init (AVFilterContext *ctx, const char *args, void *opaque) |
| static void | split_uninit (AVFilterContext *ctx) |
| static void | start_frame (AVFilterLink *inlink, AVFilterBufferRef *picref) |
| static void | draw_slice (AVFilterLink *inlink, int y, int h, int slice_dir) |
| static void | end_frame (AVFilterLink *inlink) |
Variables | |
| AVFilter | avfilter_vf_split |
Definition in file vf_split.c.
| static void draw_slice | ( | AVFilterLink * | inlink, | |
| int | y, | |||
| int | h, | |||
| int | slice_dir | |||
| ) | [static] |
Definition at line 73 of file vf_split.c.
| static void end_frame | ( | AVFilterLink * | inlink | ) | [static] |
Definition at line 82 of file vf_split.c.
| static int split_init | ( | AVFilterContext * | ctx, | |
| const char * | args, | |||
| void * | opaque | |||
| ) | [static] |
Definition at line 28 of file vf_split.c.
| static void split_uninit | ( | AVFilterContext * | ctx | ) | [static] |
Definition at line 55 of file vf_split.c.
| static void start_frame | ( | AVFilterLink * | inlink, | |
| AVFilterBufferRef * | picref | |||
| ) | [static] |
Definition at line 63 of file vf_split.c.
Initial value:
{
.name = "split",
.description = NULL_IF_CONFIG_SMALL("Pass on the input to two outputs."),
.init = split_init,
.uninit = split_uninit,
.inputs = (const AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer= avfilter_null_get_video_buffer,
.start_frame = start_frame,
.draw_slice = draw_slice,
.end_frame = end_frame, },
{ .name = NULL}},
.outputs = (AVFilterPad[]) {{ .name = NULL}},
}
Definition at line 93 of file vf_split.c.
1.5.8