|
FFmpeg
|
#include <string.h>#include "libavutil/common.h"#include "libavutil/imgutils.h"#include "libavutil/opt.h"#include "libavutil/pixdesc.h"#include "libavutil/rational.h"#include "avfilter.h"#include "formats.h"#include "internal.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | TiltandshiftContext |
Macros | |
| #define | OFFSET(x) offsetof(TiltandshiftContext, x) |
| #define | V AV_OPT_FLAG_VIDEO_PARAM |
Enumerations | |
| enum | PaddingOption { TILT_NONE, TILT_FRAME, TILT_BLACK, TILT_OPT_MAX } |
Functions | |
| static int | list_add_frame (TiltandshiftContext *s, AVFrame *frame) |
| static void | list_remove_head (TiltandshiftContext *s) |
| static av_cold void | uninit (AVFilterContext *ctx) |
| static int | config_props (AVFilterLink *outlink) |
| static void | copy_column (AVFilterLink *outlink, uint8_t *dst_data[4], int dst_linesizes[4], const uint8_t *src_data[4], const int src_linesizes[4], int ncol, int tilt) |
| static int | output_frame (AVFilterLink *outlink) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *frame) |
| static int | request_frame (AVFilterLink *outlink) |
| AVFILTER_DEFINE_CLASS (tiltandshift) | |
Variables | |
| static enum AVPixelFormat | pix_fmts [] |
| static const AVOption | tiltandshift_options [] |
| static const AVFilterPad | tiltandshift_inputs [] |
| static const AVFilterPad | tiltandshift_outputs [] |
| const AVFilter | ff_vf_tiltandshift |
Simple time and space inverter.
Definition in file vf_tiltandshift.c.
| #define OFFSET | ( | x | ) | offsetof(TiltandshiftContext, x) |
Definition at line 310 of file vf_tiltandshift.c.
| #define V AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 311 of file vf_tiltandshift.c.
| enum PaddingOption |
| Enumerator | |
|---|---|
| TILT_NONE | |
| TILT_FRAME | |
| TILT_BLACK | |
| TILT_OPT_MAX | |
Definition at line 39 of file vf_tiltandshift.c.
|
static |
Definition at line 76 of file vf_tiltandshift.c.
Referenced by filter_frame().
|
static |
Definition at line 90 of file vf_tiltandshift.c.
Referenced by output_frame(), and uninit().
|
static |
Definition at line 108 of file vf_tiltandshift.c.
|
static |
Definition at line 116 of file vf_tiltandshift.c.
|
static |
Definition at line 169 of file vf_tiltandshift.c.
Referenced by output_frame().
|
static |
Definition at line 192 of file vf_tiltandshift.c.
Referenced by filter_frame(), and request_frame().
|
static |
Definition at line 257 of file vf_tiltandshift.c.
|
static |
Definition at line 278 of file vf_tiltandshift.c.
| AVFILTER_DEFINE_CLASS | ( | tiltandshift | ) |
|
static |
Definition at line 100 of file vf_tiltandshift.c.
|
static |
|
static |
Definition at line 344 of file vf_tiltandshift.c.
|
static |
Definition at line 352 of file vf_tiltandshift.c.
| const AVFilter ff_vf_tiltandshift |
Definition at line 361 of file vf_tiltandshift.c.
1.8.17