FFmpeg
|
#include <string.h>
#include "libavutil/imgutils.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "filters.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 308 of file vf_tiltandshift.c.
#define V AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 309 of file vf_tiltandshift.c.
enum PaddingOption |
Enumerator | |
---|---|
TILT_NONE | |
TILT_FRAME | |
TILT_BLACK | |
TILT_OPT_MAX |
Definition at line 37 of file vf_tiltandshift.c.
|
static |
Definition at line 74 of file vf_tiltandshift.c.
Referenced by filter_frame().
|
static |
Definition at line 88 of file vf_tiltandshift.c.
Referenced by output_frame(), and uninit().
|
static |
Definition at line 106 of file vf_tiltandshift.c.
|
static |
Definition at line 114 of file vf_tiltandshift.c.
|
static |
Definition at line 167 of file vf_tiltandshift.c.
Referenced by output_frame().
|
static |
Definition at line 190 of file vf_tiltandshift.c.
Referenced by filter_frame(), and request_frame().
|
static |
Definition at line 255 of file vf_tiltandshift.c.
|
static |
Definition at line 276 of file vf_tiltandshift.c.
AVFILTER_DEFINE_CLASS | ( | tiltandshift | ) |
|
static |
Definition at line 98 of file vf_tiltandshift.c.
|
static |
|
static |
Definition at line 342 of file vf_tiltandshift.c.
|
static |
Definition at line 350 of file vf_tiltandshift.c.
const AVFilter ff_vf_tiltandshift |
Definition at line 359 of file vf_tiltandshift.c.