|
FFmpeg
|
#include "libavutil/avassert.h"#include "libavutil/imgutils.h"#include "libavutil/internal.h"#include "libavutil/opt.h"#include "libavutil/pixdesc.h"#include "avfilter.h"#include "internal.h"#include "video.h"#include "filters.h"#include "framerate.h"#include "scene_sad.h"Go to the source code of this file.
Data Structures | |
| struct | ThreadData |
| Used for passing data between threads. More... | |
Macros | |
| #define | DEBUG |
| #define | OFFSET(x) offsetof(FrameRateContext, x) |
| #define | V AV_OPT_FLAG_VIDEO_PARAM |
| #define | F AV_OPT_FLAG_FILTERING_PARAM |
| #define | FRAMERATE_FLAG_SCD 01 |
Functions | |
| AVFILTER_DEFINE_CLASS (framerate) | |
| static double | get_scene_score (AVFilterContext *ctx, AVFrame *crnt, AVFrame *next) |
| static int | filter_slice (AVFilterContext *ctx, void *arg, int job, int nb_jobs) |
| static int | blend_frames (AVFilterContext *ctx, int interpolate) |
| static int | process_work_frame (AVFilterContext *ctx) |
| static av_cold int | init (AVFilterContext *ctx) |
| static av_cold void | uninit (AVFilterContext *ctx) |
| static int | query_formats (AVFilterContext *ctx) |
| static void | blend_frames_c (BLEND_FUNC_PARAMS) |
| static void | blend_frames16_c (BLEND_FUNC_PARAMS) |
| void | ff_framerate_init (FrameRateContext *s) |
| static int | config_input (AVFilterLink *inlink) |
| static int | activate (AVFilterContext *ctx) |
| static int | config_output (AVFilterLink *outlink) |
Variables | |
| static const AVOption | framerate_options [] |
| static const AVFilterPad | framerate_inputs [] |
| static const AVFilterPad | framerate_outputs [] |
| AVFilter | ff_vf_framerate |
filter for upsampling or downsampling a progressive source
Definition in file vf_framerate.c.
| #define DEBUG |
Definition at line 29 of file vf_framerate.c.
| #define OFFSET | ( | x | ) | offsetof(FrameRateContext, x) |
Definition at line 44 of file vf_framerate.c.
| #define V AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 45 of file vf_framerate.c.
| #define F AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 46 of file vf_framerate.c.
| #define FRAMERATE_FLAG_SCD 01 |
Definition at line 47 of file vf_framerate.c.
| AVFILTER_DEFINE_CLASS | ( | framerate | ) |
|
static |
Definition at line 65 of file vf_framerate.c.
Referenced by blend_frames().
|
static |
Definition at line 94 of file vf_framerate.c.
Referenced by blend_frames().
|
static |
Definition at line 127 of file vf_framerate.c.
Referenced by process_work_frame().
|
static |
Definition at line 162 of file vf_framerate.c.
Referenced by activate().
|
static |
Definition at line 210 of file vf_framerate.c.
|
static |
Definition at line 217 of file vf_framerate.c.
|
static |
Definition at line 224 of file vf_framerate.c.
|
static |
Definition at line 245 of file vf_framerate.c.
Referenced by ff_framerate_init().
|
static |
Definition at line 257 of file vf_framerate.c.
Referenced by ff_framerate_init().
| void ff_framerate_init | ( | FrameRateContext * | s | ) |
Definition at line 276 of file vf_framerate.c.
Referenced by config_input().
|
static |
Definition at line 289 of file vf_framerate.c.
|
static |
Definition at line 315 of file vf_framerate.c.
|
static |
Definition at line 392 of file vf_framerate.c.
|
static |
Definition at line 49 of file vf_framerate.c.
|
static |
Definition at line 437 of file vf_framerate.c.
|
static |
Definition at line 446 of file vf_framerate.c.
| AVFilter ff_vf_framerate |
Definition at line 455 of file vf_framerate.c.
1.8.17