|
FFmpeg
|
#include "libavutil/avstring.h"#include "libavutil/opt.h"#include "libavutil/intreadwrite.h"#include "libavutil/parseutils.h"#include "libavutil/pixdesc.h"#include "avfilter.h"#include "drawutils.h"#include "internal.h"#include "video.h"#include <float.h>Go to the source code of this file.
Data Structures | |
| struct | ShearContext |
| struct | ThreadData |
| Used for passing data between threads. More... | |
Macros | |
| #define | OFFSET(x) offsetof(ShearContext, x) |
| #define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM |
| #define | NN(type, name) |
| #define | BL(type, name) |
Functions | |
| AVFILTER_DEFINE_CLASS (shear) | |
| static av_cold int | init (AVFilterContext *ctx) |
| static int | query_formats (AVFilterContext *ctx) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
| static int | config_output (AVFilterLink *outlink) |
| static int | process_command (AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags) |
Variables | |
| static const AVOption | shear_options [] |
| static const AVFilterPad | inputs [] |
| static const AVFilterPad | outputs [] |
| AVFilter | ff_vf_shear |
| #define OFFSET | ( | x | ) | offsetof(ShearContext, x) |
Definition at line 59 of file vf_shear.c.
Definition at line 60 of file vf_shear.c.
Definition at line 123 of file vf_shear.c.
Definition at line 169 of file vf_shear.c.
| AVFILTER_DEFINE_CLASS | ( | shear | ) |
|
static |
Definition at line 75 of file vf_shear.c.
Referenced by process_command().
|
static |
Definition at line 88 of file vf_shear.c.
|
static |
Definition at line 228 of file vf_shear.c.
|
static |
Definition at line 255 of file vf_shear.c.
|
static |
Definition at line 279 of file vf_shear.c.
|
static |
Definition at line 62 of file vf_shear.c.
|
static |
Definition at line 301 of file vf_shear.c.
|
static |
Definition at line 310 of file vf_shear.c.
| AVFilter ff_vf_shear |
Definition at line 319 of file vf_shear.c.
1.8.17