#include "avfilter.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
struct | BufPic |
struct | FifoContext |
Functions | |
static av_cold int | init (AVFilterContext *ctx, const char *args, void *opaque) |
static av_cold void | uninit (AVFilterContext *ctx) |
static void | start_frame (AVFilterLink *inlink, AVFilterBufferRef *picref) |
static void | end_frame (AVFilterLink *inlink) |
static void | draw_slice (AVFilterLink *inlink, int y, int h, int slice_dir) |
static int | request_frame (AVFilterLink *outlink) |
Variables | |
AVFilter | avfilter_vf_fifo |
Definition in file vf_fifo.c.
static void draw_slice | ( | AVFilterLink * | inlink, | |
int | y, | |||
int | h, | |||
int | slice_dir | |||
) | [static] |
static void end_frame | ( | AVFilterLink * | inlink | ) | [static] |
static av_cold int init | ( | AVFilterContext * | ctx, | |
const char * | args, | |||
void * | opaque | |||
) | [static] |
static int request_frame | ( | AVFilterLink * | outlink | ) | [static] |
static void start_frame | ( | AVFilterLink * | inlink, | |
AVFilterBufferRef * | picref | |||
) | [static] |
static av_cold void uninit | ( | AVFilterContext * | ctx | ) | [static] |
Initial value:
{ .name = "fifo", .description = NULL_IF_CONFIG_SMALL("Buffer input images and send them when they are requested."), .init = init, .uninit = uninit, .priv_size = sizeof(FifoContext), .inputs = (const AVFilterPad[]) {{ .name = "default", .type = AVMEDIA_TYPE_VIDEO, .get_video_buffer= ff_null_get_video_buffer, .start_frame = start_frame, .draw_slice = draw_slice, .end_frame = end_frame, .rej_perms = AV_PERM_REUSE2, }, { .name = NULL}}, .outputs = (const AVFilterPad[]) {{ .name = "default", .type = AVMEDIA_TYPE_VIDEO, .request_frame = request_frame, }, { .name = NULL}}, }