FFmpeg
|
#include "libavutil/avassert.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "internal.h"
#include "vf_pp7.h"
Go to the source code of this file.
Macros | |
#define | OFFSET(x) offsetof(PP7Context, x) |
#define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
#define | N0 4 |
#define | N1 5 |
#define | N2 10 |
#define | SN0 2 |
#define | SN1 2.2360679775 |
#define | SN2 3.16227766017 |
#define | N (1 << 16) |
Enumerations | |
enum | mode { FF_EBUR128_MODE_M = (1 << 0), FF_EBUR128_MODE_S = (1 << 1) | FF_EBUR128_MODE_M, FF_EBUR128_MODE_I = (1 << 2) | FF_EBUR128_MODE_M, FF_EBUR128_MODE_LRA = (1 << 3) | FF_EBUR128_MODE_S, FF_EBUR128_MODE_SAMPLE_PEAK = (1 << 4) | FF_EBUR128_MODE_M, MODE_NONE, MODE_RO, MODE_RW, MODE_TOGGLE, MODE_RANDOM, NB_MODES, MODE_COVER, MODE_BLUR, NB_MODES, MODE_HARD, MODE_SOFT, MODE_MEDIUM, MODE_HARD, MODE_SOFT, NB_MODES } |
Functions | |
AVFILTER_DEFINE_CLASS (pp7) | |
static void | init_thres2 (PP7Context *p) |
static void | dctA_c (int16_t *dst, uint8_t *src, int stride) |
static void | dctB_c (int16_t *dst, int16_t *src) |
static int | hardthresh_c (PP7Context *p, int16_t *src, int qp) |
static int | mediumthresh_c (PP7Context *p, int16_t *src, int qp) |
static int | softthresh_c (PP7Context *p, int16_t *src, int qp) |
static void | filter (PP7Context *p, uint8_t *dst, uint8_t *src, int dst_stride, int src_stride, int width, int height, uint8_t *qp_store, int qp_stride, int is_luma) |
static int | query_formats (AVFilterContext *ctx) |
static int | config_input (AVFilterLink *inlink) |
static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
static const AVOption | pp7_options [] |
static const uint8_t | dither [8][8] |
static const int | factor [16] |
static const AVFilterPad | pp7_inputs [] |
static const AVFilterPad | pp7_outputs [] |
AVFilter | ff_vf_pp7 |
Postprocessing filter - 7
Originally written by Michael Niedermayer for the MPlayer project, and ported by Arwa Arif for FFmpeg.
Definition in file vf_pp7.c.
#define OFFSET | ( | x | ) | offsetof(PP7Context, x) |
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
enum mode |
AVFILTER_DEFINE_CLASS | ( | pp7 | ) |
|
static |
Definition at line 82 of file vf_pp7.c.
Referenced by config_input().
|
static |
Definition at line 117 of file vf_pp7.c.
Referenced by config_input().
|
static |
Definition at line 140 of file vf_pp7.c.
Referenced by config_input().
|
static |
Definition at line 156 of file vf_pp7.c.
Referenced by config_input().
|
static |
Definition at line 180 of file vf_pp7.c.
Referenced by config_input().
|
static |
Definition at line 200 of file vf_pp7.c.
Referenced by filter_frame().
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
Definition at line 56 of file vf_pp7.c.
Referenced by filter().
|
static |
Definition at line 75 of file vf_pp7.c.
Referenced by adaptive_quantization(), amplify_frame(), aptx_bin_search(), avpriv_solve_lls(), bessel(), build_filter(), config_output(), create_default_qtables(), decode_block(), decode_log_area(), do_despill_slice(), ff_audio_resample_init(), ff_build_rac_states(), ff_jpegls_reset_coding_parameters(), filter_frame(), filter_plane2d(), filter_plane3d1(), filter_plane3d2(), find_rms(), hardthresh_c(), lfe_fir_float_c(), lfe_iir_c(), mediumthresh_c(), resample_init(), softthresh_c(), and try_push_frame().
|
static |
|
static |
AVFilter ff_vf_pp7 |