FFmpeg
|
Generic equation change filter Originally written by Michael Niedermayer for the MPlayer project, and ported by Clément Bœsch for FFmpeg. More...
#include "libavutil/avstring.h"
#include "libavutil/eval.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | GEQContext |
Macros | |
#define | OFFSET(x) offsetof(GEQContext, x) |
#define | FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Enumerations | |
enum | { Y = 0, U, V, A, G, B, R } |
enum | { VAR_X, VAR_Y, VAR_W, VAR_H, VAR_N, VAR_SW, VAR_SH, VAR_T, VAR_VARS_NB } |
Functions | |
AVFILTER_DEFINE_CLASS (geq) | |
static double | getpix (void *priv, double x, double y, int plane) |
static double | lum (void *priv, double x, double y) |
static double | cb (void *priv, double x, double y) |
static double | cr (void *priv, double x, double y) |
static double | alpha (void *priv, double x, double y) |
static av_cold int | geq_init (AVFilterContext *ctx) |
static int | geq_query_formats (AVFilterContext *ctx) |
static int | geq_config_props (AVFilterLink *inlink) |
static int | geq_filter_frame (AVFilterLink *inlink, AVFrame *in) |
static av_cold void | geq_uninit (AVFilterContext *ctx) |
Variables | |
static const AVOption | geq_options [] |
static const char *const | var_names [] = { "X", "Y", "W", "H", "N", "SW", "SH", "T", NULL } |
static const AVFilterPad | geq_inputs [] |
static const AVFilterPad | geq_outputs [] |
AVFilter | ff_vf_geq |
Generic equation change filter Originally written by Michael Niedermayer for the MPlayer project, and ported by Clément Bœsch for FFmpeg.
Definition in file vf_geq.c.
#define OFFSET | ( | x | ) | offsetof(GEQContext, x) |
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
anonymous enum |
AVFILTER_DEFINE_CLASS | ( | geq | ) |
|
inlinestatic |
|
static |
Definition at line 95 of file vf_geq.c.
Referenced by blend_subrect(), and geq_init().
|
static |
Definition at line 96 of file vf_geq.c.
Referenced by av_lockmgr_register(), blend_subrect(), codebook_trellis_rate(), config_output(), create_vorbis_context(), decode_frame(), decode_lsp(), decode_q_branch(), dvbsub_parse_clut_segment(), encode_frame(), encode_q_branch(), encode_window_bands_info(), escape130_decode_frame(), ff_atrac3p_init_vlcs(), fill_gv_table(), fill_table(), filter_frame(), find_best_vect(), find_min_book(), geq_init(), idct_put(), paf_audio_decode(), parse_palette_segment(), pgmyuv_save(), quantize_and_encode_band_cost_template(), ready_residue(), register_exit(), rgb_to_yuv(), search_for_quantizers_anmr(), search_for_quantizers_twoloop(), set_blocks(), snow_set_blocks(), unpack_codebook(), vcr1_decode_frame(), vorbis_parse_setup_hdr_codebooks(), yuv_a_to_rgba(), and yuv_to_rgba().
|
static |
Definition at line 97 of file vf_geq.c.
Referenced by blend_subrect(), decode_frame(), decode_q_branch(), draw_mandelbrot(), dvbsub_parse_clut_segment(), encode_frame(), encode_q_branch(), escape130_decode_frame(), geq_init(), idct_put(), parse_palette_segment(), pgmyuv_save(), rgb_to_yuv(), set_blocks(), snow_set_blocks(), vcr1_decode_frame(), yuv_a_to_rgba(), and yuv_to_rgba().
|
static |
Definition at line 98 of file vf_geq.c.
Referenced by adaptive_gain_control(), av_parse_color(), blend_image(), blend_line(), blend_pixel(), bmp_decode_frame(), celt_decode_coarse_energy(), config_input(), config_output(), decode_dvd_subtitles(), dvbsub_parse_clut_segment(), encode_frame(), ff_adaptive_gain_control(), ff_ass_split_override_codes(), ff_blend_mask(), ff_blend_rectangle(), ff_cavs_filter(), ff_mdct_init(), fft_ref_init(), filter(), filter_frame(), filter_mb_edgech(), filter_mb_edgecv(), filter_mb_edgeh(), filter_mb_edgev(), filter_mb_mbaff_edgecv(), filter_mb_mbaff_edgev(), g2m_paint_cursor(), geq_init(), guess_palette(), loop_filter_c2(), loop_filter_l2(), mpeg4_decode_sprite_trajectory(), parse_palette_segment(), plot_cqt(), predict(), ps_tableinit(), Rgb16ToPlanarRgb16Wrapper(), rv40_adaptive_loop_filter(), rv40_loop_filter(), sbr_dequant(), sbr_hf_gen_c(), sub_left_prediction_bgr32(), and vp7_fade_frame().
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
Definition at line 100 of file vf_geq.c.
Referenced by geq_init().
|
static |
|
static |
AVFilter ff_vf_geq |