#include "libavutil/eval.h"
#include "libavutil/fifo.h"
#include "avfilter.h"
#include "video.h"
Go to the source code of this file.
Definition in file vf_select.c.
#define D2TS | ( | d | ) | (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d)) |
#define FIFO_SIZE 8 |
#define INTERLACE_TYPE_B 2 |
#define INTERLACE_TYPE_P 0 |
#define INTERLACE_TYPE_T 1 |
#define TS2D | ( | ts | ) | ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts)) |
enum var_name |
Definition at line 68 of file vf_select.c.
static int config_input | ( | AVFilterLink * | inlink | ) | [static] |
Definition at line 138 of file vf_select.c.
static void draw_slice | ( | AVFilterLink * | inlink, | |
int | y, | |||
int | h, | |||
int | slice_dir | |||
) | [static] |
Definition at line 236 of file vf_select.c.
static void end_frame | ( | AVFilterLink * | inlink | ) | [static] |
Definition at line 244 of file vf_select.c.
static av_cold int init | ( | AVFilterContext * | ctx, | |
const char * | args, | |||
void * | opaque | |||
) | [static] |
Definition at line 115 of file vf_select.c.
static int poll_frame | ( | AVFilterLink * | outlink | ) | [static] |
Definition at line 283 of file vf_select.c.
static int request_frame | ( | AVFilterLink * | outlink | ) | [static] |
Definition at line 257 of file vf_select.c.
static int select_frame | ( | AVFilterContext * | ctx, | |
AVFilterBufferRef * | picref | |||
) | [static] |
static void start_frame | ( | AVFilterLink * | inlink, | |
AVFilterBufferRef * | picref | |||
) | [static] |
Definition at line 216 of file vf_select.c.
static av_cold void uninit | ( | AVFilterContext * | ctx | ) | [static] |
Definition at line 305 of file vf_select.c.
Initial value:
{ .name = "select", .description = NULL_IF_CONFIG_SMALL("Select frames to pass in output."), .init = init, .uninit = uninit, .priv_size = sizeof(SelectContext), .inputs = (const AVFilterPad[]) {{ .name = "default", .type = AVMEDIA_TYPE_VIDEO, .get_video_buffer = ff_null_get_video_buffer, .config_props = config_input, .start_frame = start_frame, .draw_slice = draw_slice, .end_frame = end_frame }, { .name = NULL }}, .outputs = (const AVFilterPad[]) {{ .name = "default", .type = AVMEDIA_TYPE_VIDEO, .poll_frame = poll_frame, .request_frame = request_frame, }, { .name = NULL}}, }
Definition at line 320 of file vf_select.c.
const char* const var_names[] [static] |
Definition at line 31 of file vf_select.c.