#include "avfilter.h"
Go to the source code of this file.
Data Structures | |
struct | SetFieldContext |
Enumerations | |
enum | SetFieldMode { MODE_AUTO = -1, MODE_BFF, MODE_TFF, MODE_PROG } |
Functions | |
static av_cold int | init (AVFilterContext *ctx, const char *args, void *opaque) |
static void | start_frame (AVFilterLink *inlink, AVFilterBufferRef *inpicref) |
Variables | |
AVFilter | avfilter_vf_setfield |
Definition in file vf_setfield.c.
enum SetFieldMode |
static av_cold int init | ( | AVFilterContext * | ctx, | |
const char * | args, | |||
void * | opaque | |||
) | [static] |
Definition at line 39 of file vf_setfield.c.
static void start_frame | ( | AVFilterLink * | inlink, | |
AVFilterBufferRef * | inpicref | |||
) | [static] |
Definition at line 71 of file vf_setfield.c.
Initial value:
{ .name = "setfield", .description = NULL_IF_CONFIG_SMALL("Force field for the output video frame."), .init = init, .priv_size = sizeof(SetFieldContext), .inputs = (const AVFilterPad[]) { { .name = "default", .type = AVMEDIA_TYPE_VIDEO, .get_video_buffer = avfilter_null_get_video_buffer, .start_frame = start_frame, }, { .name = NULL } }, .outputs = (const AVFilterPad[]) { { .name = "default", .type = AVMEDIA_TYPE_VIDEO, }, { .name = NULL } }, }
Definition at line 85 of file vf_setfield.c.