#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 |
Definition at line 104 of file vf_select.c.
| #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 67 of file vf_select.c.
| static int config_input | ( | AVFilterLink * | inlink | ) | [static] |
Definition at line 137 of file vf_select.c.
| static void draw_slice | ( | AVFilterLink * | inlink, | |
| int | y, | |||
| int | h, | |||
| int | slice_dir | |||
| ) | [static] |
Definition at line 235 of file vf_select.c.
| static void end_frame | ( | AVFilterLink * | inlink | ) | [static] |
Definition at line 243 of file vf_select.c.
| static av_cold int init | ( | AVFilterContext * | ctx, | |
| const char * | args, | |||
| void * | opaque | |||
| ) | [static] |
Definition at line 114 of file vf_select.c.
| static int poll_frame | ( | AVFilterLink * | outlink | ) | [static] |
Definition at line 282 of file vf_select.c.
| static int request_frame | ( | AVFilterLink * | outlink | ) | [static] |
Definition at line 256 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 215 of file vf_select.c.
| static av_cold void uninit | ( | AVFilterContext * | ctx | ) | [static] |
Definition at line 304 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 = avfilter_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 319 of file vf_select.c.
const char* const var_names[] [static] |
Definition at line 30 of file vf_select.c.
1.5.8