FFmpeg
|
#include "motion_estimation.h"
#include "libavcodec/mathops.h"
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "internal.h"
#include "video.h"
#include "scene_sad.h"
Go to the source code of this file.
Data Structures | |
struct | Cluster |
struct | Block |
struct | PixelMVS |
struct | PixelWeights |
struct | PixelRefs |
struct | Frame |
struct | MIContext |
Macros | |
#define | ME_MODE_BIDIR 0 |
Copyright (c) 2014-2015 Michael Niedermayer micha Copyright (c) 2016 Davinder Singh (DSM_) <ds.mudhar<@gmail.com> elni @gmx. atMore... | |
#define | ME_MODE_BILAT 1 |
#define | MC_MODE_OBMC 0 |
#define | MC_MODE_AOBMC 1 |
#define | SCD_METHOD_NONE 0 |
#define | SCD_METHOD_FDIFF 1 |
#define | NB_FRAMES 4 |
#define | NB_PIXEL_MVS 32 |
#define | NB_CLUSTERS 128 |
#define | ALPHA_MAX 1024 |
#define | CLUSTER_THRESHOLD 4 |
#define | PX_WEIGHT_MAX 255 |
#define | COST_PRED_SCALE 64 |
#define | OFFSET(x) offsetof(MIContext, x) |
#define | FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
#define | CONST(name, help, val, unit) { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, unit } |
#define | ADD_PRED(preds, px, py) |
#define | ADD_PIXELS(b_weight, mv_x, mv_y) |
Enumerations | |
enum | MIMode { MI_MODE_DUP = 0, MI_MODE_BLEND = 1, MI_MODE_MCI = 2 } |
Variables | |
static const uint8_t | obmc_linear32 [1024] |
static const uint8_t | obmc_linear16 [256] |
static const uint8_t | obmc_linear8 [64] |
static const uint8_t | obmc_linear4 [16] |
static const uint8_t *const | obmc_tab_linear [4] |
static const AVOption | minterpolate_options [] |
static enum AVPixelFormat | pix_fmts [] |
static const AVFilterPad | minterpolate_inputs [] |
static const AVFilterPad | minterpolate_outputs [] |
const AVFilter | ff_vf_minterpolate |
#define ME_MODE_BIDIR 0 |
Copyright (c) 2014-2015 Michael Niedermayer micha Copyright (c) 2016 Davinder Singh (DSM_) <ds.mudhar<@gmail.com> elni @gmx. at
This file is part of FFmpeg.
FFmpeg is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
FFmpeg is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with FFmpeg; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Definition at line 32 of file vf_minterpolate.c.
#define ME_MODE_BILAT 1 |
Definition at line 33 of file vf_minterpolate.c.
#define MC_MODE_OBMC 0 |
Definition at line 35 of file vf_minterpolate.c.
#define MC_MODE_AOBMC 1 |
Definition at line 36 of file vf_minterpolate.c.
#define SCD_METHOD_NONE 0 |
Definition at line 38 of file vf_minterpolate.c.
#define SCD_METHOD_FDIFF 1 |
Definition at line 39 of file vf_minterpolate.c.
#define NB_FRAMES 4 |
Definition at line 41 of file vf_minterpolate.c.
#define NB_PIXEL_MVS 32 |
Definition at line 42 of file vf_minterpolate.c.
#define NB_CLUSTERS 128 |
Definition at line 43 of file vf_minterpolate.c.
#define ALPHA_MAX 1024 |
Definition at line 45 of file vf_minterpolate.c.
#define CLUSTER_THRESHOLD 4 |
Definition at line 46 of file vf_minterpolate.c.
#define PX_WEIGHT_MAX 255 |
Definition at line 47 of file vf_minterpolate.c.
#define COST_PRED_SCALE 64 |
Definition at line 48 of file vf_minterpolate.c.
#define OFFSET | ( | x | ) | offsetof(MIContext, x) |
Definition at line 198 of file vf_minterpolate.c.
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 199 of file vf_minterpolate.c.
#define CONST | ( | name, | |
help, | |||
val, | |||
unit | |||
) | { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, unit } |
Definition at line 200 of file vf_minterpolate.c.
#define ADD_PRED | ( | preds, | |
px, | |||
py | |||
) |
Definition at line 407 of file vf_minterpolate.c.
#define ADD_PIXELS | ( | b_weight, | |
mv_x, | |||
mv_y | |||
) |
Definition at line 839 of file vf_minterpolate.c.
enum MIMode |
Enumerator | |
---|---|
MI_MODE_DUP | |
MI_MODE_BLEND | |
MI_MODE_MCI |
Definition at line 126 of file vf_minterpolate.c.
AVFILTER_DEFINE_CLASS | ( | minterpolate | ) |
|
static |
Definition at line 248 of file vf_minterpolate.c.
Referenced by bilateral_obmc(), and inject_frame().
|
static |
Definition at line 273 of file vf_minterpolate.c.
Referenced by config_input().
|
static |
Definition at line 299 of file vf_minterpolate.c.
Referenced by config_input().
|
static |
Definition at line 325 of file vf_minterpolate.c.
|
static |
Definition at line 397 of file vf_minterpolate.c.
Definition at line 414 of file vf_minterpolate.c.
Referenced by bilateral_me(), and inject_frame().
|
static |
Definition at line 556 of file vf_minterpolate.c.
Referenced by inject_frame().
Definition at line 577 of file vf_minterpolate.c.
Referenced by cluster_mvs().
Definition at line 639 of file vf_minterpolate.c.
Referenced by inject_frame().
|
static |
Definition at line 729 of file vf_minterpolate.c.
Referenced by filter_frame().
|
static |
Definition at line 815 of file vf_minterpolate.c.
Referenced by filter_frame().
Definition at line 855 of file vf_minterpolate.c.
Referenced by interpolate().
Definition at line 905 of file vf_minterpolate.c.
Referenced by interpolate().
|
static |
Definition at line 963 of file vf_minterpolate.c.
Referenced by interpolate().
|
static |
Definition at line 1002 of file vf_minterpolate.c.
Referenced by interpolate().
|
static |
Definition at line 1066 of file vf_minterpolate.c.
Referenced by filter_frame().
|
static |
Definition at line 1154 of file vf_minterpolate.c.
Definition at line 1205 of file vf_minterpolate.c.
Referenced by uninit().
|
static |
Definition at line 1213 of file vf_minterpolate.c.
|
static |
Definition at line 50 of file vf_minterpolate.c.
|
static |
Definition at line 85 of file vf_minterpolate.c.
|
static |
Definition at line 104 of file vf_minterpolate.c.
|
static |
Definition at line 115 of file vf_minterpolate.c.
|
static |
Definition at line 122 of file vf_minterpolate.c.
Referenced by bidirectional_obmc(), and bilateral_obmc().
|
static |
Definition at line 202 of file vf_minterpolate.c.
|
static |
Definition at line 236 of file vf_minterpolate.c.
|
static |
Definition at line 1236 of file vf_minterpolate.c.
|
static |
Definition at line 1245 of file vf_minterpolate.c.
const AVFilter ff_vf_minterpolate |
Definition at line 1253 of file vf_minterpolate.c.