|
FFmpeg
4.4.8
|
#include "libavutil/avassert.h"#include "libavutil/opt.h"#include "libavutil/parseutils.h"#include "libavutil/pixdesc.h"#include "libavutil/xga_font_data.h"#include "avfilter.h"#include "filters.h"#include "formats.h"#include "internal.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | ThreadData |
| Used for passing data between threads. More... | |
| struct | GraticuleLine |
| struct | GraticuleLines |
| struct | WaveformContext |
Macros | |
| #define | OFFSET(x) offsetof(WaveformContext, x) |
| #define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
| #define | LOWPASS16_FUNC(name, column, mirror) |
| #define | LOWPASS_FUNC(name, column, mirror) |
| #define | FLAT16_FUNC(name, column, mirror) |
| #define | FLAT_FUNC(name, column, mirror) |
| #define | AFLAT16(name, update_cb, update_cr, column, mirror) |
| #define | AFLAT(name, update_cb, update_cr, column, mirror) |
| #define | CHROMA16_FUNC(name, column, mirror) |
| #define | CHROMA_FUNC(name, column, mirror) |
| #define | COLOR16_FUNC(name, column, mirror) |
| #define | COLOR_FUNC(name, column, mirror) |
| #define | ACOLOR16_FUNC(name, column, mirror) |
| #define | ACOLOR_FUNC(name, column, mirror) |
Enumerations | |
| enum | FilterType { DC_TYPE , AC_TYPE , SQ_TYPE , PS_TYPE , NB_TYPES , BUTTERWORTH , CHEBYSHEV1 , CHEBYSHEV2 , NB_TYPES , biquad , equalizer , bass , treble , bandpass , bandreject , allpass , highpass , lowpass , lowshelf , highshelf , WEAK , STRONG , NB_FILTER , LOWPASS , FLAT , AFLAT , CHROMA , COLOR , ACOLOR , XFLAT , YFLAT , NB_FILTERS } |
| enum | DisplayType { OVERLAY , STACK , PARADE , NB_DISPLAYS } |
| enum | ScaleType { DIGITAL , MILLIVOLTS , IRE , NB_SCALES } |
| enum | GraticuleType { GRAT_NONE , GRAT_GREEN , GRAT_COLOR , GRAT_INVERT , NB_GRATICULES , GRAT_NONE , GRAT_GREEN , GRAT_ORANGE , GRAT_INVERT , NB_GRATICULES } |
Functions | |
| AVFILTER_DEFINE_CLASS (waveform) | |
| static int | query_formats (AVFilterContext *ctx) |
| static void | envelope_instant16 (WaveformContext *s, AVFrame *out, int plane, int component, int offset) |
| static void | envelope_instant (WaveformContext *s, AVFrame *out, int plane, int component, int offset) |
| static void | envelope_peak16 (WaveformContext *s, AVFrame *out, int plane, int component, int offset) |
| static void | envelope_peak (WaveformContext *s, AVFrame *out, int plane, int component, int offset) |
| static void | envelope16 (WaveformContext *s, AVFrame *out, int plane, int component, int offset) |
| static void | envelope (WaveformContext *s, AVFrame *out, int plane, int component, int offset) |
| static void | update16 (uint16_t *target, int max, int intensity, int limit) |
| static void | update (uint8_t *target, int max, int intensity) |
| static void | update_cr (uint8_t *target, int unused, int intensity) |
| static void | update16_cr (uint16_t *target, int unused, int intensity, int limit) |
| static av_always_inline void | lowpass16 (WaveformContext *s, AVFrame *in, AVFrame *out, int component, int intensity, int offset_y, int offset_x, int column, int mirror, int jobnr, int nb_jobs) |
| static av_always_inline void | lowpass (WaveformContext *s, AVFrame *in, AVFrame *out, int component, int intensity, int offset_y, int offset_x, int column, int mirror, int jobnr, int nb_jobs) |
| static av_always_inline void | flat16 (WaveformContext *s, AVFrame *in, AVFrame *out, int component, int intensity, int offset_y, int offset_x, int column, int mirror, int jobnr, int nb_jobs) |
| static av_always_inline void | flat (WaveformContext *s, AVFrame *in, AVFrame *out, int component, int intensity, int offset_y, int offset_x, int column, int mirror, int jobnr, int nb_jobs) |
| static av_always_inline void | chroma16 (WaveformContext *s, AVFrame *in, AVFrame *out, int component, int intensity, int offset_y, int offset_x, int column, int mirror, int jobnr, int nb_jobs) |
| static av_always_inline void | chroma (WaveformContext *s, AVFrame *in, AVFrame *out, int component, int intensity, int offset_y, int offset_x, int column, int mirror, int jobnr, int nb_jobs) |
| static av_always_inline void | color16 (WaveformContext *s, AVFrame *in, AVFrame *out, int component, int intensity, int offset_y, int offset_x, int column, int mirror, int jobnr, int nb_jobs) |
| static av_always_inline void | color (WaveformContext *s, AVFrame *in, AVFrame *out, int component, int intensity, int offset_y, int offset_x, int column, int mirror, int jobnr, int nb_jobs) |
| static av_always_inline void | acolor16 (WaveformContext *s, AVFrame *in, AVFrame *out, int component, int intensity, int offset_y, int offset_x, int column, int mirror, int jobnr, int nb_jobs) |
| static av_always_inline void | acolor (WaveformContext *s, AVFrame *in, AVFrame *out, int component, int intensity, int offset_y, int offset_x, int column, int mirror, int jobnr, int nb_jobs) |
| static void | blend_vline (uint8_t *dst, int height, int linesize, float o1, float o2, int v, int step) |
| static void | blend_vline16 (uint8_t *ddst, int height, int linesize, float o1, float o2, int v, int step) |
| static void | blend_hline (uint8_t *dst, int width, int unused, float o1, float o2, int v, int step) |
| static void | blend_hline16 (uint8_t *ddst, int width, int unused, float o1, float o2, int v, int step) |
| static void | draw_htext (AVFrame *out, int x, int y, int mult, float o1, float o2, const char *txt, const uint8_t color[4]) |
| static void | draw_htext16 (AVFrame *out, int x, int y, int mult, float o1, float o2, const char *txt, const uint8_t color[4]) |
| static void | draw_vtext (AVFrame *out, int x, int y, int mult, float o1, float o2, const char *txt, const uint8_t color[4]) |
| static void | draw_vtext16 (AVFrame *out, int x, int y, int mult, float o1, float o2, const char *txt, const uint8_t color[4]) |
| static void | iblend_vline (uint8_t *dst, int height, int linesize, float o1, float o2, int v, int step) |
| static void | iblend_vline16 (uint8_t *ddst, int height, int linesize, float o1, float o2, int v, int step) |
| static void | iblend_hline (uint8_t *dst, int width, int unused, float o1, float o2, int v, int step) |
| static void | iblend_hline16 (uint8_t *ddst, int width, int unused, float o1, float o2, int v, int step) |
| static void | idraw_htext (AVFrame *out, int x, int y, int mult, float o1, float o2, const char *txt, const uint8_t color[4]) |
| static void | idraw_htext16 (AVFrame *out, int x, int y, int mult, float o1, float o2, const char *txt, const uint8_t color[4]) |
| static void | idraw_vtext (AVFrame *out, int x, int y, int mult, float o1, float o2, const char *txt, const uint8_t color[4]) |
| static void | idraw_vtext16 (AVFrame *out, int x, int y, int mult, float o1, float o2, const char *txt, const uint8_t color[4]) |
| static void | graticule_none (WaveformContext *s, AVFrame *out) |
| static void | graticule_row (WaveformContext *s, AVFrame *out) |
| static void | graticule16_row (WaveformContext *s, AVFrame *out) |
| static void | graticule_column (WaveformContext *s, AVFrame *out) |
| static void | graticule16_column (WaveformContext *s, AVFrame *out) |
| static int | config_input (AVFilterLink *inlink) |
| static int | config_output (AVFilterLink *outlink) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
| static av_cold void | uninit (AVFilterContext *ctx) |
| #define OFFSET | ( | x | ) | offsetof(WaveformContext, x) |
Definition at line 131 of file vf_waveform.c.
| #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 132 of file vf_waveform.c.
Definition at line 789 of file vf_waveform.c.
Definition at line 926 of file vf_waveform.c.
Definition at line 1065 of file vf_waveform.c.
Definition at line 1202 of file vf_waveform.c.
Definition at line 1227 of file vf_waveform.c.
Definition at line 1361 of file vf_waveform.c.
Definition at line 1600 of file vf_waveform.c.
Definition at line 1704 of file vf_waveform.c.
Definition at line 1837 of file vf_waveform.c.
Definition at line 1969 of file vf_waveform.c.
Definition at line 2103 of file vf_waveform.c.
Definition at line 2236 of file vf_waveform.c.
| enum FilterType |
Definition at line 41 of file vf_waveform.c.
| enum DisplayType |
| Enumerator | |
|---|---|
| OVERLAY | |
| STACK | |
| PARADE | |
| NB_DISPLAYS | |
Definition at line 53 of file vf_waveform.c.
| enum ScaleType |
| Enumerator | |
|---|---|
| DIGITAL | |
| MILLIVOLTS | |
| IRE | |
| NB_SCALES | |
Definition at line 60 of file vf_waveform.c.
| enum GraticuleType |
| Enumerator | |
|---|---|
| GRAT_NONE | |
| GRAT_GREEN | |
| GRAT_COLOR | |
| GRAT_INVERT | |
| NB_GRATICULES | |
| GRAT_NONE | |
| GRAT_GREEN | |
| GRAT_ORANGE | |
| GRAT_INVERT | |
| NB_GRATICULES | |
Definition at line 67 of file vf_waveform.c.
| AVFILTER_DEFINE_CLASS | ( | waveform | ) |
|
static |
Definition at line 307 of file vf_waveform.c.
|
static |
Definition at line 388 of file vf_waveform.c.
Referenced by envelope16(), and envelope_peak16().
|
static |
Definition at line 436 of file vf_waveform.c.
Referenced by envelope(), and envelope_peak().
|
static |
Definition at line 483 of file vf_waveform.c.
Referenced by envelope16().
|
static |
Definition at line 553 of file vf_waveform.c.
Referenced by envelope().
|
static |
Definition at line 622 of file vf_waveform.c.
Referenced by filter_frame().
|
static |
Definition at line 633 of file vf_waveform.c.
Referenced by filter_frame().
Definition at line 644 of file vf_waveform.c.
Referenced by acolor16(), chroma16(), flat16(), and lowpass16().
Definition at line 660 of file vf_waveform.c.
Definition at line 668 of file vf_waveform.c.
|
static |
Definition at line 676 of file vf_waveform.c.
|
static |
Definition at line 814 of file vf_waveform.c.
|
static |
Definition at line 951 of file vf_waveform.c.
|
static |
Definition at line 1090 of file vf_waveform.c.
Referenced by ff_loop_filter_h_44_16_msa(), ff_loop_filter_h_48_16_msa(), ff_loop_filter_h_4_8_msa(), ff_loop_filter_h_84_16_msa(), ff_loop_filter_h_88_16_msa(), ff_loop_filter_h_8_8_msa(), ff_loop_filter_v_16_8_msa(), ff_loop_filter_v_44_16_msa(), ff_loop_filter_v_48_16_msa(), ff_loop_filter_v_4_8_msa(), ff_loop_filter_v_84_16_msa(), ff_loop_filter_v_88_16_msa(), ff_loop_filter_v_8_8_msa(), ff_vp8_h_loop_filter16_inner_msa(), ff_vp8_h_loop_filter16_msa(), ff_vp8_h_loop_filter8uv_inner_msa(), ff_vp8_h_loop_filter8uv_msa(), ff_vp8_v_loop_filter16_inner_msa(), ff_vp8_v_loop_filter16_msa(), ff_vp8_v_loop_filter8uv_inner_msa(), ff_vp8_v_loop_filter8uv_msa(), flat_init(), flat_print_section_header(), flat_print_str(), vp9_hz_lpf_t16_16w(), vp9_hz_lpf_t4_and_t8_16w(), vp9_vt_lpf_t16_16w(), vp9_vt_lpf_t16_8w(), vp9_vt_lpf_t4_and_t8_16w(), and vp9_vt_lpf_t4_and_t8_8w().
|
static |
Definition at line 1519 of file vf_waveform.c.
|
static |
Definition at line 1625 of file vf_waveform.c.
Referenced by calc_plane_dct(), check_idct_dc4(), cmp_inline(), compute_quant_matrix(), deblocking_filter_CTB(), dv_init_enc_block(), ff_h264_filter_mb(), fic_draw_cursor(), filter_frame(), filter_mb_dir(), get_flags(), h264_filter_mb_fast_internal(), pred_weight_table(), rv40_adaptive_loop_filter(), rv40_h_strong_loop_filter(), rv40_strong_loop_filter(), rv40_v_strong_loop_filter(), set_frame_data(), ulti_convert_yuv(), ulti_decode_frame(), ulti_grad(), ulti_pattern(), x8_decode_intra_mb(), and x8_setup_spatial_predictor().
|
static |
Definition at line 1729 of file vf_waveform.c.
|
static |
Definition at line 1862 of file vf_waveform.c.
|
static |
Definition at line 1994 of file vf_waveform.c.
|
static |
Definition at line 2128 of file vf_waveform.c.
|
static |
Definition at line 2576 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2587 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2599 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2608 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2618 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2644 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2670 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2695 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2720 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2731 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2743 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2752 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2762 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2788 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2814 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2839 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2864 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2868 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2909 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2951 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2992 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 3034 of file vf_waveform.c.
|
static |
Definition at line 3305 of file vf_waveform.c.
|
static |
Definition at line 3367 of file vf_waveform.c.
|
static |
Definition at line 3468 of file vf_waveform.c.
|
static |
Definition at line 134 of file vf_waveform.c.
|
static |
Definition at line 192 of file vf_waveform.c.
Referenced by query_formats().
|
static |
|
static |
|
static |
Definition at line 192 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 192 of file vf_waveform.c.
Referenced by query_formats().
|
static |
|
static |
|
static |
Definition at line 192 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 192 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 192 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 192 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 192 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 192 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 192 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 192 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 2261 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2262 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2264 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2270 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2276 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2282 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2288 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2296 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2304 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2312 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2320 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2330 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2340 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2350 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2360 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2366 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2372 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2378 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2384 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2392 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2400 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2408 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2416 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2426 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2436 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2446 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2456 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2462 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2468 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2474 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2480 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2488 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2496 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2504 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2512 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2520 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2528 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2536 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2544 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2552 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2560 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2568 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 3475 of file vf_waveform.c.
|
static |
Definition at line 3485 of file vf_waveform.c.
| AVFilter ff_vf_waveform |
Definition at line 3494 of file vf_waveform.c.