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 |
#define | BLEND_FRAME_FUNC(nbits) |
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) |
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.
#define BLEND_FRAME_FUNC | ( | nbits | ) |
Definition at line 240 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 120 of file vf_framerate.c.
Referenced by process_work_frame().
|
static |
Definition at line 155 of file vf_framerate.c.
Referenced by activate().
|
static |
Definition at line 205 of file vf_framerate.c.
|
static |
Definition at line 212 of file vf_framerate.c.
|
static |
Definition at line 219 of file vf_framerate.c.
void ff_framerate_init | ( | FrameRateContext * | s | ) |
Definition at line 265 of file vf_framerate.c.
Referenced by config_input().
|
static |
Definition at line 278 of file vf_framerate.c.
|
static |
Definition at line 304 of file vf_framerate.c.
|
static |
Definition at line 381 of file vf_framerate.c.
|
static |
Definition at line 49 of file vf_framerate.c.
|
static |
Definition at line 426 of file vf_framerate.c.
|
static |
Definition at line 435 of file vf_framerate.c.
AVFilter ff_vf_framerate |
Definition at line 444 of file vf_framerate.c.