|
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 102 of file vf_waveform.c.
| #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 103 of file vf_waveform.c.
| #define LOWPASS16_FUNC | ( | name, | |
| column, | |||
| mirror | |||
| ) |
Definition at line 654 of file vf_waveform.c.
| #define LOWPASS_FUNC | ( | name, | |
| column, | |||
| mirror | |||
| ) |
Definition at line 752 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 257 of file vf_waveform.c.
|
static |
Definition at line 323 of file vf_waveform.c.
Referenced by envelope16(), and envelope_peak16().
|
static |
Definition at line 371 of file vf_waveform.c.
Referenced by envelope(), and envelope_peak().
|
static |
Definition at line 418 of file vf_waveform.c.
Referenced by envelope16().
|
static |
Definition at line 488 of file vf_waveform.c.
Referenced by envelope().
|
static |
Definition at line 557 of file vf_waveform.c.
Referenced by acolor16(), aflat16(), chroma16(), color16(), flat16(), and lowpass16().
|
static |
|
static |
Definition at line 579 of file vf_waveform.c.
Referenced by acolor16(), aflat16(), chroma16(), flat16(), and lowpass16().
|
static |
Definition at line 595 of file vf_waveform.c.
|
static |
Definition at line 670 of file vf_waveform.c.
|
static |
Definition at line 768 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 880 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 990 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1116 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1240 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1318 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(), ulti_decode_frame(), and x8_decode_intra_mb().
|
static |
Definition at line 1394 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1499 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1603 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1709 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2130 of file vf_waveform.c.
Referenced by graticule_green_row().
|
static |
Definition at line 2141 of file vf_waveform.c.
Referenced by graticule16_green_row().
Definition at line 2152 of file vf_waveform.c.
Referenced by graticule_green_column().
|
static |
Definition at line 2161 of file vf_waveform.c.
Referenced by graticule16_green_column().
|
static |
Definition at line 2170 of file vf_waveform.c.
Referenced by graticule_green_column().
|
static |
Definition at line 2196 of file vf_waveform.c.
Referenced by graticule16_green_column().
|
static |
Definition at line 2222 of file vf_waveform.c.
Referenced by graticule_green_row().
|
static |
Definition at line 2247 of file vf_waveform.c.
Referenced by graticule16_green_row().
|
static |
Definition at line 2272 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 2316 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2357 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2397 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 2438 of file vf_waveform.c.
|
static |
Definition at line 2663 of file vf_waveform.c.
|
static |
Definition at line 2720 of file vf_waveform.c.
|
static |
Definition at line 2775 of file vf_waveform.c.
|
static |
Definition at line 105 of file vf_waveform.c.
|
static |
Definition at line 155 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 173 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 190 of file vf_waveform.c.
Referenced by query_formats().
|
static |
Definition at line 205 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.
|
static |
Definition at line 1814 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1815 of file vf_waveform.c.
Referenced by graticule16_green_column(), graticule16_green_row(), graticule_green_column(), and graticule_green_row().
|
static |
Definition at line 1816 of file vf_waveform.c.
Referenced by config_input().
|
static |
Definition at line 1818 of file vf_waveform.c.
|
static |
Definition at line 1824 of file vf_waveform.c.
|
static |
Definition at line 1830 of file vf_waveform.c.
|
static |
Definition at line 1836 of file vf_waveform.c.
|
static |
Definition at line 1842 of file vf_waveform.c.
|
static |
Definition at line 1850 of file vf_waveform.c.
|
static |
Definition at line 1858 of file vf_waveform.c.
|
static |
Definition at line 1866 of file vf_waveform.c.
|
static |
Definition at line 1874 of file vf_waveform.c.
|
static |
Definition at line 1884 of file vf_waveform.c.
|
static |
Definition at line 1894 of file vf_waveform.c.
|
static |
Definition at line 1904 of file vf_waveform.c.
|
static |
Definition at line 1914 of file vf_waveform.c.
|
static |
Definition at line 1920 of file vf_waveform.c.
|
static |
Definition at line 1926 of file vf_waveform.c.
|
static |
Definition at line 1932 of file vf_waveform.c.
|
static |
Definition at line 1938 of file vf_waveform.c.
|
static |
Definition at line 1946 of file vf_waveform.c.
|
static |
Definition at line 1954 of file vf_waveform.c.
|
static |
Definition at line 1962 of file vf_waveform.c.
|
static |
Definition at line 1970 of file vf_waveform.c.
|
static |
Definition at line 1980 of file vf_waveform.c.
|
static |
Definition at line 1990 of file vf_waveform.c.
|
static |
Definition at line 2000 of file vf_waveform.c.
|
static |
Definition at line 2010 of file vf_waveform.c.
|
static |
Definition at line 2016 of file vf_waveform.c.
|
static |
Definition at line 2022 of file vf_waveform.c.
|
static |
Definition at line 2028 of file vf_waveform.c.
|
static |
Definition at line 2034 of file vf_waveform.c.
|
static |
Definition at line 2042 of file vf_waveform.c.
|
static |
Definition at line 2050 of file vf_waveform.c.
|
static |
Definition at line 2058 of file vf_waveform.c.
|
static |
Definition at line 2066 of file vf_waveform.c.
|
static |
Definition at line 2074 of file vf_waveform.c.
|
static |
Definition at line 2082 of file vf_waveform.c.
|
static |
Definition at line 2090 of file vf_waveform.c.
|
static |
Definition at line 2098 of file vf_waveform.c.
|
static |
Definition at line 2106 of file vf_waveform.c.
|
static |
Definition at line 2114 of file vf_waveform.c.
|
static |
Definition at line 2122 of file vf_waveform.c.
|
static |
Definition at line 2782 of file vf_waveform.c.
|
static |
Definition at line 2792 of file vf_waveform.c.
| AVFilter ff_vf_waveform |
Definition at line 2801 of file vf_waveform.c.
1.8.6