FFmpeg
|
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | OWDenoiseContext |
Macros | |
#define | OFFSET(x) offsetof(OWDenoiseContext, x) |
#define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Functions | |
AVFILTER_DEFINE_CLASS (owdenoise) | |
static void | decompose (float *dst_l, float *dst_h, const float *src, int linesize, int w) |
static void | compose (float *dst, const float *src_l, const float *src_h, int linesize, int w) |
static void | decompose2D (float *dst_l, float *dst_h, const float *src, int xlinesize, int ylinesize, int step, int w, int h) |
static void | compose2D (float *dst, const float *src_l, const float *src_h, int xlinesize, int ylinesize, int step, int w, int h) |
static void | decompose2D2 (float *dst[4], float *src, float *temp[2], int linesize, int step, int w, int h) |
static void | compose2D2 (float *dst, float *src[4], float *temp[2], int linesize, int step, int w, int h) |
static void | filter (OWDenoiseContext *s, uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int width, int height, double strength) |
static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
static int | query_formats (AVFilterContext *ctx) |
static int | config_input (AVFilterLink *inlink) |
static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
static const AVOption | owdenoise_options [] |
static const uint8_t | dither [8][8] |
static const double | coeff [2][5] |
static const double | icoeff [2][5] |
static const AVFilterPad | owdenoise_inputs [] |
static const AVFilterPad | owdenoise_outputs [] |
AVFilter | ff_vf_owdenoise |
#define OFFSET | ( | x | ) | offsetof(OWDenoiseContext, x) |
Definition at line 48 of file vf_owdenoise.c.
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 49 of file vf_owdenoise.c.
AVFILTER_DEFINE_CLASS | ( | owdenoise | ) |
|
inlinestatic |
Definition at line 103 of file vf_owdenoise.c.
Referenced by decompose2D().
|
inlinestatic |
Definition at line 122 of file vf_owdenoise.c.
Referenced by compose2D().
|
inlinestatic |
Definition at line 140 of file vf_owdenoise.c.
Referenced by decompose2D2().
|
inlinestatic |
Definition at line 153 of file vf_owdenoise.c.
Referenced by compose2D2().
|
static |
Definition at line 166 of file vf_owdenoise.c.
Referenced by filter().
|
static |
Definition at line 174 of file vf_owdenoise.c.
Referenced by filter().
|
static |
Definition at line 182 of file vf_owdenoise.c.
Referenced by filter_frame().
|
static |
Definition at line 245 of file vf_owdenoise.c.
|
static |
Definition at line 294 of file vf_owdenoise.c.
|
static |
Definition at line 317 of file vf_owdenoise.c.
|
static |
Definition at line 339 of file vf_owdenoise.c.
|
static |
Definition at line 50 of file vf_owdenoise.c.
|
static |
Definition at line 61 of file vf_owdenoise.c.
Referenced by filter().
|
static |
Definition at line 72 of file vf_owdenoise.c.
Referenced by adpcm_decode_frame(), ana_convert(), assemble_freq_bands_c(), bandwidth_expansion(), bitreduction(), calc_power(), cfhd_decode(), check_multiply3x3(), check_rgb2yuv(), check_yuv2rgb(), check_yuv2yuv(), chs_filter_band_data(), code_filter_coeffs(), code_matrix_coeffs(), coeff_unpack_golomb(), colorlevel_slice_16(), colorlevel_slice_8(), convert_coeffs(), convert_lpc(), copy_TMPL(), dct_quantize_refine(), dct_quantize_trellis_c(), decode_block(), decode_block_coeffs_internal(), decode_channel(), decode_hf_c(), decode_subblock1(), decompose(), decor_c(), deemphasis_c(), dmix_add_c(), dmix_sub_c(), encode_block(), encode_subband(), eval_poly(), ff_adx_calculate_coeffs(), ff_adx_decode_header(), ff_dcaadpcm_predict(), ff_eac3_apply_spectral_extension(), ff_eval_poly(), ff_lpc_calc_coefs(), ff_vc1_inv_trans_4x4_mmi(), filter0(), filter1(), filter_frame(), filter_frame_fixed(), filter_frame_float(), fir_quantum(), get_block(), get_coeff(), init_dequantizer(), init_pass2(), initFilter(), lbr_bank_c(), mlp_filter_channel(), parse_dmix_coeffs(), postfilter(), predict(), prescale_down_mix(), psy_3gpp_init(), test_deemphasis(), undo_down_mix(), unpack_coeffs(), unpack_vlcs(), vlc_decode_block(), vp5_parse_coeff(), vp6_parse_coeff(), vp6_parse_coeff_huffman(), and write_matrix_params().
|
static |
Definition at line 87 of file vf_owdenoise.c.
Referenced by compose().
|
static |
Definition at line 349 of file vf_owdenoise.c.
|
static |
Definition at line 359 of file vf_owdenoise.c.
AVFilter ff_vf_owdenoise |
Definition at line 367 of file vf_owdenoise.c.