FFmpeg
|
Postprocessing filter - 7. More...
#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 { 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 |
#define N0 4 |
Definition at line 67 of file vf_pp7.c.
Referenced by celt_decode_band(), celt_deinterleave_hadamard(), celt_extract_collapse_mask(), celt_haar1(), and celt_interleave_hadamard().
#define N2 10 |
Definition at line 69 of file vf_pp7.c.
Referenced by celt_compute_qn().
#define SN0 2 |
Definition at line 70 of file vf_pp7.c.
Referenced by init_thres2().
#define SN2 3.16227766017 |
Definition at line 72 of file vf_pp7.c.
Referenced by init_thres2().
#define N (1 << 16) |
Definition at line 73 of file vf_pp7.c.
Referenced by celt_cwrsi(), celt_decode_allocation(), celt_decode_band(), celt_deinterleave_hadamard(), celt_interleave_hadamard(), celt_normalize_residual(), celt_renormalize_vector(), celt_stereo_merge(), chebyshev1_bp_filter(), chebyshev2_bp_filter(), epic_decode_pixel_pred(), epic_decode_run_length(), evolve(), ff_generate_window_func(), ff_imdct15_init(), fft_calc(), hybrid6_cx(), and z_scan_block_avail().
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(), av_resample_init(), avpriv_solve_lls(), bessel(), build_filter(), config_output(), create_default_qtables(), ff_audio_resample_init(), ff_jpegls_reset_coding_parameters(), ffserver_set_float_param(), ffserver_set_int_param(), filter_frame(), 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 |