#include "libavutil/eval.h"
#include "libavutil/fifo.h"
#include "libavutil/internal.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.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)) | 
Definition at line 232 of file vf_select.c.
| #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)) | 
Definition at line 233 of file vf_select.c.
| enum var_name | 
Definition at line 77 of file vf_select.c.
| static int config_input | ( | AVFilterLink * | inlink | ) |  [static] | 
        
Definition at line 162 of file vf_select.c.
| static int draw_slice | ( | AVFilterLink * | inlink, | |
| int | y, | |||
| int | h, | |||
| int | slice_dir | |||
| ) |  [static] | 
        
Definition at line 310 of file vf_select.c.
| static int end_frame | ( | AVFilterLink * | inlink | ) |  [static] | 
        
Definition at line 319 of file vf_select.c.
| static av_cold int init | ( | AVFilterContext * | ctx, | |
| const char * | args | |||
| ) |  [static] | 
        
Definition at line 133 of file vf_select.c.
| static int poll_frame | ( | AVFilterLink * | outlink | ) |  [static] | 
        
Definition at line 359 of file vf_select.c.
| static int query_formats | ( | AVFilterContext * | ctx | ) |  [static] | 
        
Definition at line 404 of file vf_select.c.
| static int request_frame | ( | AVFilterLink * | outlink | ) |  [static] | 
        
Definition at line 331 of file vf_select.c.
| static int select_frame | ( | AVFilterContext * | ctx, | |
| AVFilterBufferRef * | picref | |||
| ) |  [static] | 
        
| static int start_frame | ( | AVFilterLink * | inlink, | |
| AVFilterBufferRef * | picref | |||
| ) |  [static] | 
        
Definition at line 284 of file vf_select.c.
| static av_cold void uninit | ( | AVFilterContext * | ctx | ) |  [static] | 
        
Definition at line 381 of file vf_select.c.
Initial value:
 {
    .name      = "select",
    .description = NULL_IF_CONFIG_SMALL("Select frames to pass in output."),
    .init      = init,
    .uninit    = uninit,
    .query_formats = query_formats,
    .priv_size = sizeof(SelectContext),
    .inputs    = (const AVFilterPad[]) {{ .name             = "default",
                                          .type             = AVMEDIA_TYPE_VIDEO,
                                          .get_video_buffer = ff_null_get_video_buffer,
                                          .min_perms        = AV_PERM_PRESERVE,
                                          .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 420 of file vf_select.c.
const char* const var_names[] [static]           | 
        
Definition at line 38 of file vf_select.c.
 1.5.8