|
FFmpeg
|
a filter enforcing given constant framerate More...
#include <float.h>#include <stdint.h>#include "libavutil/avassert.h"#include "libavutil/eval.h"#include "libavutil/mathematics.h"#include "libavutil/opt.h"#include "avfilter.h"#include "ccfifo.h"#include "filters.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | FPSContext |
Macros | |
| #define | OFFSET(x) |
| #define | V AV_OPT_FLAG_VIDEO_PARAM |
| #define | F AV_OPT_FLAG_FILTERING_PARAM |
Enumerations | |
| enum | EOFAction { EOF_ACTION_ROUND , EOF_ACTION_PASS , EOF_ACTION_NB } |
| enum | var_name { VAR_SOURCE_FPS , VAR_FPS_NTSC , VAR_FPS_PAL , VAR_FPS_FILM , VAR_FPS_NTSC_FILM , VARS_NB } |
Functions | |
| AVFILTER_DEFINE_CLASS (fps) | |
| static av_cold int | init (AVFilterContext *ctx) |
| static AVFrame * | shift_frame (AVFilterContext *ctx, FPSContext *s) |
| static av_cold void | uninit (AVFilterContext *ctx) |
| static int | config_props (AVFilterLink *outlink) |
| static int | read_frame (AVFilterContext *ctx, FPSContext *s, AVFilterLink *inlink, AVFilterLink *outlink) |
| static int | write_frame (AVFilterContext *ctx, FPSContext *s, AVFilterLink *outlink, int *again) |
| static void | update_eof_pts (AVFilterContext *ctx, FPSContext *s, AVFilterLink *inlink, AVFilterLink *outlink, int64_t status_pts) |
| static int | activate (AVFilterContext *ctx) |
Variables | |
| static const char *const | var_names [] |
| static const double | ntsc_fps = 30000.0 / 1001.0 |
| static const double | pal_fps = 25.0 |
| static const double | film_fps = 24.0 |
| static const double | ntsc_film_fps = 24000.0 / 1001.0 |
| static const AVOption | fps_options [] |
| static const AVFilterPad | avfilter_vf_fps_outputs [] |
| const FFFilter | ff_vf_fps |
a filter enforcing given constant framerate
Definition in file vf_fps.c.
| #define OFFSET | ( | x | ) |
| #define V AV_OPT_FLAG_VIDEO_PARAM |
| #define F AV_OPT_FLAG_FILTERING_PARAM |
| enum EOFAction |
| enum var_name |
| AVFILTER_DEFINE_CLASS | ( | fps | ) |
|
static |
|
static |
Definition at line 132 of file vf_fps.c.
Referenced by uninit(), and write_frame().
|
static |
|
static |
|
static |
Definition at line 230 of file vf_fps.c.
Referenced by activate().
|
static |
Definition at line 264 of file vf_fps.c.
Referenced by activate().
|
static |
Definition at line 317 of file vf_fps.c.
Referenced by activate().
|
static |
|
static |
|
static |
Definition at line 65 of file vf_fps.c.
Referenced by config_props().
|
static |
Definition at line 66 of file vf_fps.c.
Referenced by config_props().
|
static |
Definition at line 67 of file vf_fps.c.
Referenced by config_props().
|
static |
Definition at line 68 of file vf_fps.c.
Referenced by config_props().
|
static |
|
static |
| const FFFilter ff_vf_fps |