#include "libavutil/pixdesc.h"
#include "avfilter.h"
Go to the source code of this file.
Data Structures | |
struct | FlipContext |
Functions | |
static int | config_input (AVFilterLink *link) |
static AVFilterPicRef * | get_video_buffer (AVFilterLink *link, int perms, int w, int h) |
static void | start_frame (AVFilterLink *link, AVFilterPicRef *picref) |
static void | draw_slice (AVFilterLink *link, int y, int h, int slice_dir) |
Variables | |
AVFilter | avfilter_vf_vflip |
Definition in file vf_vflip.c.
static int config_input | ( | AVFilterLink * | link | ) | [static] |
Definition at line 33 of file vf_vflip.c.
static void draw_slice | ( | AVFilterLink * | link, | |
int | y, | |||
int | h, | |||
int | slice_dir | |||
) | [static] |
Definition at line 80 of file vf_vflip.c.
static AVFilterPicRef* get_video_buffer | ( | AVFilterLink * | link, | |
int | perms, | |||
int | w, | |||
int | h | |||
) | [static] |
static void start_frame | ( | AVFilterLink * | link, | |
AVFilterPicRef * | picref | |||
) | [static] |
Definition at line 63 of file vf_vflip.c.
Initial value:
{ .name = "vflip", .description = NULL_IF_CONFIG_SMALL("Flip the input video vertically."), .priv_size = sizeof(FlipContext), .inputs = (AVFilterPad[]) {{ .name = "default", .type = AVMEDIA_TYPE_VIDEO, .get_video_buffer = get_video_buffer, .start_frame = start_frame, .draw_slice = draw_slice, .end_frame = avfilter_null_end_frame, .config_props = config_input, }, { .name = NULL}}, .outputs = (AVFilterPad[]) {{ .name = "default", .type = AVMEDIA_TYPE_VIDEO, }, { .name = NULL}}, }
Definition at line 87 of file vf_vflip.c.