#include "libavutil/eval.h"
#include "libavutil/fifo.h"
#include "avfilter.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 71 of file vf_select.c.
| static int config_input | ( | AVFilterLink * | inlink | ) | [static] |
Definition at line 145 of file vf_select.c.
| static void draw_slice | ( | AVFilterLink * | inlink, | |
| int | y, | |||
| int | h, | |||
| int | slice_dir | |||
| ) | [static] |
Definition at line 245 of file vf_select.c.
| static void end_frame | ( | AVFilterLink * | inlink | ) | [static] |
Definition at line 253 of file vf_select.c.
| static av_cold int init | ( | AVFilterContext * | ctx, | |
| const char * | args, | |||
| void * | opaque | |||
| ) | [static] |
Definition at line 122 of file vf_select.c.
| static int poll_frame | ( | AVFilterLink * | outlink | ) | [static] |
Definition at line 292 of file vf_select.c.
| static int request_frame | ( | AVFilterLink * | outlink | ) | [static] |
Definition at line 266 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 225 of file vf_select.c.
| static av_cold void uninit | ( | AVFilterContext * | ctx | ) | [static] |
Definition at line 314 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 = (AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer = avfilter_null_get_video_buffer,
.config_props = config_input,
.start_frame = start_frame,
.draw_slice = draw_slice,
.end_frame = end_frame },
{ .name = NULL }},
.outputs = (AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.poll_frame = poll_frame,
.request_frame = request_frame, },
{ .name = NULL}},
}
Definition at line 330 of file vf_select.c.
const char* var_names[] [static] |
Definition at line 30 of file vf_select.c.
1.5.8