FFmpeg
|
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "libavutil/mem_internal.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 | 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 enum AVPixelFormat | pix_fmts [] |
static const AVFilterPad | owdenoise_inputs [] |
static const AVFilterPad | owdenoise_outputs [] |
const AVFilter | ff_vf_owdenoise |
#define OFFSET | ( | x | ) | offsetof(OWDenoiseContext, x) |
Definition at line 54 of file vf_owdenoise.c.
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 55 of file vf_owdenoise.c.
AVFILTER_DEFINE_CLASS | ( | owdenoise | ) |
|
inlinestatic |
Definition at line 109 of file vf_owdenoise.c.
Referenced by decompose2D().
|
inlinestatic |
Definition at line 128 of file vf_owdenoise.c.
Referenced by compose2D().
|
inlinestatic |
Definition at line 146 of file vf_owdenoise.c.
Referenced by decompose2D2().
|
inlinestatic |
Definition at line 159 of file vf_owdenoise.c.
Referenced by compose2D2().
|
static |
Definition at line 172 of file vf_owdenoise.c.
Referenced by filter().
|
static |
Definition at line 180 of file vf_owdenoise.c.
Referenced by filter().
|
static |
Definition at line 188 of file vf_owdenoise.c.
Referenced by filter_frame().
|
static |
Definition at line 251 of file vf_owdenoise.c.
|
static |
Definition at line 316 of file vf_owdenoise.c.
|
static |
Definition at line 338 of file vf_owdenoise.c.
|
static |
Definition at line 56 of file vf_owdenoise.c.
|
static |
Definition at line 67 of file vf_owdenoise.c.
Referenced by filter().
|
static |
Definition at line 78 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(), check_yuv2yuvX(), chs_filter_band_data(), code_filter_coeffs(), code_matrix_coeffs(), coeff_unpack_golomb(), 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 93 of file vf_owdenoise.c.
Referenced by compose().
|
static |
Definition at line 300 of file vf_owdenoise.c.
|
static |
Definition at line 348 of file vf_owdenoise.c.
|
static |
Definition at line 357 of file vf_owdenoise.c.
const AVFilter ff_vf_owdenoise |
Definition at line 364 of file vf_owdenoise.c.