|
FFmpeg
|
Postprocessing filter - 7. More...
#include "libavutil/imgutils.h"#include "libavutil/mem.h"#include "libavutil/mem_internal.h"#include "libavutil/opt.h"#include "libavutil/pixdesc.h"#include "libavutil/video_enc_params.h"#include "avfilter.h"#include "filters.h"#include "qp_table.h"#include "vf_pp7dsp.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | PP7Context |
Macros | |
| #define | OFFSET(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_HARD , MODE_SOFT , MODE_MEDIUM } |
Functions | |
| AVFILTER_DEFINE_CLASS (pp7) | |
| static void | init_thres2 (PP7Context *p) |
| static void | dctA_c (int16_t *dst, const uint8_t *src, int stride) |
| static int | hardthresh_c (const PP7Context *p, const int16_t *src, int qp) |
| static int | mediumthresh_c (const PP7Context *p, const int16_t *src, int qp) |
| static int | softthresh_c (const PP7Context *p, const int16_t *src, int qp) |
| static void | filter (PP7Context *p, uint8_t *dst, const uint8_t *src, int dst_stride, int src_stride, int width, int height, const uint8_t *qp_store, int qp_stride, int is_luma) |
| 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 enum AVPixelFormat | pix_fmts [] |
| static const AVFilterPad | pp7_inputs [] |
| const FFFilter | 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 | ) |
| #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
| #define N0 4 |
Definition at line 90 of file vf_pp7.c.
Referenced by celt_deinterleave_hadamard(), celt_extract_collapse_mask(), celt_haar1(), celt_interleave_hadamard(), and quant_band_template().
| #define N2 10 |
Definition at line 92 of file vf_pp7.c.
Referenced by celt_compute_qn(), and qmf_synth().
| #define SN0 2 |
Definition at line 93 of file vf_pp7.c.
Referenced by init_thres2().
| #define SN2 3.16227766017 |
Definition at line 95 of file vf_pp7.c.
Referenced by init_thres2().
| AVFILTER_DEFINE_CLASS | ( | pp7 | ) |
|
static |
Definition at line 105 of file vf_pp7.c.
Referenced by config_input().
|
inlinestatic |
|
static |
Definition at line 140 of file vf_pp7.c.
Referenced by config_input(), and 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(), and config_input().
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
Definition at line 98 of file vf_pp7.c.
Referenced by adaptive_quantization(), amplify_frame(), analyze_plane(), aptx_bin_search(), av_bessel_i0(), avpriv_solve_lls(), bitreduction(), blend_frame(), build_filter(), calculate_factors(), calculate_motion(), cfhd_decode(), check_cd_factors(), config_eq_output(), config_filter(), config_input(), config_input(), config_output(), config_output(), config_output(), config_output(), convert_full_range(), convolve_sobel(), create_default_qtables(), decode_block(), decode_log_area(), decompose_zp2biquads(), dequantize_coefficients(), do_despill_slice(), do_transform(), draw_gradients_slice(), draw_gradients_slice16(), draw_gradients_slice32_planar(), eq_interp(), ff_build_rac_states(), ff_jpegls_reset_coding_parameters(), ff_tx_fft_init_naive_small(), ff_tx_fft_naive(), filter_block2d(), filter_block3d1(), filter_block3d2(), filter_dbl(), filter_flt(), filter_frame(), filter_frame(), filter_frame(), gate(), get_lowpass(), get_qtable(), hardthresh_c(), is_expand_bit(), lfe_fir_float_c(), lfe_iir_c(), mediumthresh_c(), mip_upsampling_1d(), multiply(), normalize_coeffs(), osq_decode_block(), parse_keyframes_index(), process_bayer(), quantize_band(), resample_init(), softthresh_c(), try_push_frame(), unpack(), and vtenc_create_encoder().
|
static |
|
static |
| const FFFilter ff_vf_pp7 |