FFmpeg
|
#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 "formats.h"
#include "internal.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
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) |
Enumerations | |
enum | FilterType { BUTTERWORTH, CHEBYSHEV1, CHEBYSHEV2, NB_TYPES, biquad, equalizer, bass, treble, band, bandpass, bandreject, allpass, highpass, lowpass, LOWPASS, FLAT, AFLAT, CHROMA, COLOR, ACOLOR, NB_FILTERS } |
enum | DisplayType { OVERLAY, STACK, PARADE, NB_DISPLAYS } |
enum | ScaleType { DIGITAL, MILLIVOLTS, IRE, NB_SCALES } |
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 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) |
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) |
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) |
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) |
static av_always_inline void | aflat16 (WaveformContext *s, AVFrame *in, AVFrame *out, int component, int intensity, int offset_y, int offset_x, int column, int mirror) |
static av_always_inline void | aflat (WaveformContext *s, AVFrame *in, AVFrame *out, int component, int intensity, int offset_y, int offset_x, int column, int mirror) |
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) |
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) |
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) |
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) |
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) |
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) |
static void | blend_vline (uint8_t *dst, int height, int linesize, float o1, float o2, int v, int step) |
static void | blend_vline16 (uint16_t *dst, int height, int linesize, float o1, float o2, int v, int step) |
static void | blend_hline (uint8_t *dst, int width, float o1, float o2, int v, int step) |
static void | blend_hline16 (uint16_t *dst, int width, float o1, float o2, int v, int step) |
static void | draw_htext (AVFrame *out, int x, int y, 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, 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 | graticule_none (WaveformContext *s, AVFrame *out) |
static void | graticule_green_row (WaveformContext *s, AVFrame *out) |
static void | graticule16_green_row (WaveformContext *s, AVFrame *out) |
static void | graticule_green_column (WaveformContext *s, AVFrame *out) |
static void | graticule16_green_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 105 of file vf_waveform.c.
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 106 of file vf_waveform.c.
#define LOWPASS16_FUNC | ( | name, | |
column, | |||
mirror | |||
) |
Definition at line 659 of file vf_waveform.c.
#define LOWPASS_FUNC | ( | name, | |
column, | |||
mirror | |||
) |
Definition at line 757 of file vf_waveform.c.
enum FilterType |
Enumerator | |
---|---|
BUTTERWORTH | |
CHEBYSHEV1 | |
CHEBYSHEV2 | |
NB_TYPES | |
biquad | |
equalizer | |
bass | |
treble | |
band | |
bandpass | |
bandreject | |
allpass | |
highpass | |
lowpass | |
LOWPASS | |
FLAT | |
AFLAT | |
CHROMA | |
COLOR | |
ACOLOR | |
NB_FILTERS |
Definition at line 32 of file vf_waveform.c.
enum DisplayType |
Enumerator | |
---|---|
OVERLAY | |
STACK | |
PARADE | |
NB_DISPLAYS |
Definition at line 42 of file vf_waveform.c.
enum ScaleType |
Enumerator | |
---|---|
DIGITAL | |
MILLIVOLTS | |
IRE | |
NB_SCALES |
Definition at line 49 of file vf_waveform.c.
AVFILTER_DEFINE_CLASS | ( | waveform | ) |
|
static |
Definition at line 262 of file vf_waveform.c.
|
static |
Definition at line 328 of file vf_waveform.c.
Referenced by envelope16(), and envelope_peak16().
|
static |
Definition at line 376 of file vf_waveform.c.
Referenced by envelope(), and envelope_peak().
|
static |
Definition at line 423 of file vf_waveform.c.
Referenced by envelope16().
|
static |
Definition at line 493 of file vf_waveform.c.
Referenced by envelope().
|
static |
Definition at line 562 of file vf_waveform.c.
Referenced by acolor16(), aflat16(), chroma16(), color16(), flat16(), and lowpass16().
|
static |
|
static |
Definition at line 584 of file vf_waveform.c.
Referenced by acolor16(), aflat16(), chroma16(), flat16(), and lowpass16().
|
static |
Definition at line 600 of file vf_waveform.c.
|
static |
Definition at line 675 of file vf_waveform.c.
|
static |
Definition at line 773 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 885 of file vf_waveform.c.
Referenced by config_input(), 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 995 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1121 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1245 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1323 of file vf_waveform.c.
Referenced by config_input(), deblocking_filter_CTB(), encode_slice_plane(), ff_h264_filter_mb(), fic_draw_cursor(), filter_frame(), h264_filter_mb_fast_internal(), rv40_adaptive_loop_filter(), set_frame_data(), ulti_decode_frame(), and x8_decode_intra_mb().
|
static |
Definition at line 1399 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1504 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1608 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1714 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2135 of file vf_waveform.c.
Referenced by graticule_green_row().
|
static |
Definition at line 2146 of file vf_waveform.c.
Referenced by graticule16_green_row().
Definition at line 2157 of file vf_waveform.c.
Referenced by graticule_green_column().
|
static |
Definition at line 2166 of file vf_waveform.c.
Referenced by graticule16_green_column().
|
static |
Definition at line 2175 of file vf_waveform.c.
Referenced by graticule_green_column().
|
static |
Definition at line 2201 of file vf_waveform.c.
Referenced by graticule16_green_column().
|
static |
Definition at line 2227 of file vf_waveform.c.
Referenced by graticule_green_row().
|
static |
Definition at line 2252 of file vf_waveform.c.
Referenced by graticule16_green_row().
|
static |
Definition at line 2277 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2281 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2321 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2362 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2402 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2443 of file vf_waveform.c.
|
static |
Definition at line 2670 of file vf_waveform.c.
|
static |
Definition at line 2729 of file vf_waveform.c.
|
static |
Definition at line 2784 of file vf_waveform.c.
|
static |
Definition at line 108 of file vf_waveform.c.
|
static |
Definition at line 160 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 178 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 195 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 210 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 215 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 220 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 225 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 230 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 235 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 240 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 245 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 250 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 255 of file vf_waveform.c.
|
static |
Definition at line 1819 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1820 of file vf_waveform.c.
Referenced by graticule16_green_column(), graticule16_green_row(), graticule_green_column(), and graticule_green_row().
|
static |
Definition at line 1821 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1823 of file vf_waveform.c.
|
static |
Definition at line 1829 of file vf_waveform.c.
|
static |
Definition at line 1835 of file vf_waveform.c.
|
static |
Definition at line 1841 of file vf_waveform.c.
|
static |
Definition at line 1847 of file vf_waveform.c.
|
static |
Definition at line 1855 of file vf_waveform.c.
|
static |
Definition at line 1863 of file vf_waveform.c.
|
static |
Definition at line 1871 of file vf_waveform.c.
|
static |
Definition at line 1879 of file vf_waveform.c.
|
static |
Definition at line 1889 of file vf_waveform.c.
|
static |
Definition at line 1899 of file vf_waveform.c.
|
static |
Definition at line 1909 of file vf_waveform.c.
|
static |
Definition at line 1919 of file vf_waveform.c.
|
static |
Definition at line 1925 of file vf_waveform.c.
|
static |
Definition at line 1931 of file vf_waveform.c.
|
static |
Definition at line 1937 of file vf_waveform.c.
|
static |
Definition at line 1943 of file vf_waveform.c.
|
static |
Definition at line 1951 of file vf_waveform.c.
|
static |
Definition at line 1959 of file vf_waveform.c.
|
static |
Definition at line 1967 of file vf_waveform.c.
|
static |
Definition at line 1975 of file vf_waveform.c.
|
static |
Definition at line 1985 of file vf_waveform.c.
|
static |
Definition at line 1995 of file vf_waveform.c.
|
static |
Definition at line 2005 of file vf_waveform.c.
|
static |
Definition at line 2015 of file vf_waveform.c.
|
static |
Definition at line 2021 of file vf_waveform.c.
|
static |
Definition at line 2027 of file vf_waveform.c.
|
static |
Definition at line 2033 of file vf_waveform.c.
|
static |
Definition at line 2039 of file vf_waveform.c.
|
static |
Definition at line 2047 of file vf_waveform.c.
|
static |
Definition at line 2055 of file vf_waveform.c.
|
static |
Definition at line 2063 of file vf_waveform.c.
|
static |
Definition at line 2071 of file vf_waveform.c.
|
static |
Definition at line 2079 of file vf_waveform.c.
|
static |
Definition at line 2087 of file vf_waveform.c.
|
static |
Definition at line 2095 of file vf_waveform.c.
|
static |
Definition at line 2103 of file vf_waveform.c.
|
static |
Definition at line 2111 of file vf_waveform.c.
|
static |
Definition at line 2119 of file vf_waveform.c.
|
static |
Definition at line 2127 of file vf_waveform.c.
|
static |
Definition at line 2791 of file vf_waveform.c.
|
static |
Definition at line 2801 of file vf_waveform.c.
AVFilter ff_vf_waveform |
Definition at line 2810 of file vf_waveform.c.