FFmpeg
Data Structures | Macros | Enumerations | Functions | Variables
avf_showcwt.c File Reference
#include <float.h>
#include <math.h>
#include "libavutil/tx.h"
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/channel_layout.h"
#include "libavutil/float_dsp.h"
#include "libavutil/cpu.h"
#include "libavutil/opt.h"
#include "libavutil/parseutils.h"
#include "audio.h"
#include "formats.h"
#include "video.h"
#include "avfilter.h"
#include "filters.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  ShowCWTContext
 

Macros

#define OFFSET(x)   offsetof(ShowCWTContext, x)
 
#define FLAGS   AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
 
#define DRAW_BAR_COLOR(x)
 

Enumerations

enum  FrequencyScale {
  FSCALE_LINEAR, FSCALE_LOG, FSCALE_BARK, FSCALE_MEL,
  FSCALE_ERBS, FSCALE_SQRT, FSCALE_CBRT, FSCALE_QDRT,
  FSCALE_FM, NB_FSCALE, FS_LINEAR, FS_LOG,
  FS_RLOG, NB_FSCALES, F_LINEAR, F_LOG,
  NB_FSCALES
}
 
enum  IntensityScale {
  ISCALE_LOG, ISCALE_LINEAR, ISCALE_SQRT, ISCALE_CBRT,
  ISCALE_QDRT, NB_ISCALE
}
 
enum  DirectionMode {
  DIRECTION_LR, DIRECTION_RL, DIRECTION_UD, DIRECTION_DU,
  NB_DIRECTION
}
 
enum  SlideMode {
  REPLACE, SCROLL, NB_SLIDES, SLIDE_REPLACE,
  SLIDE_SCROLL, SLIDE_FRAME, NB_SLIDE, REPLACE,
  SCROLL, FULLFRAME, RSCROLL, LREPLACE,
  NB_SLIDES, REPLACE, SCROLL, FULLFRAME,
  RSCROLL, NB_SLIDES
}
 

Functions

 AVFILTER_DEFINE_CLASS (showcwt)
 
static av_cold void uninit (AVFilterContext *ctx)
 
static int query_formats (AVFilterContext *ctx)
 
static float frequency_band (float *frequency_band, int frequency_band_count, float frequency_range, float frequency_offset, int frequency_scale, float deviation)
 
static float remap_log (ShowCWTContext *s, float value, int iscale, float log_factor)
 
static int run_channel_cwt_prepare (AVFilterContext *ctx, void *arg, int jobnr, int ch)
 
static void draw_bar (ShowCWTContext *s, int y, float Y, float U, float V)
 
static int draw (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
 
static int run_channel_cwt (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
 
static int compute_kernel (AVFilterContext *ctx)
 
static int config_output (AVFilterLink *outlink)
 
static int output_frame (AVFilterContext *ctx)
 
static int run_channels_cwt_prepare (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
 
static int activate (AVFilterContext *ctx)
 

Variables

static const AVOption showcwt_options []
 
static const AVFilterPad showcwt_outputs []
 
const AVFilter ff_avf_showcwt
 

Macro Definition Documentation

◆ OFFSET

#define OFFSET (   x)    offsetof(ShowCWTContext, x)

Definition at line 132 of file avf_showcwt.c.

◆ FLAGS

Definition at line 133 of file avf_showcwt.c.

◆ DRAW_BAR_COLOR

#define DRAW_BAR_COLOR (   x)
Value:
do { \
if (Y <= ht) { \
dstY[x] = 0; \
dstU[x] = 128; \
dstV[x] = 128; \
} else { \
float mul = (Y - ht) * bh[0]; \
dstY[x] = av_clip_uint8(lrintf(Y * mul * 255.f)); \
dstU[x] = av_clip_uint8(lrintf((U-0.5f) * 128.f + 128)); \
dstV[x] = av_clip_uint8(lrintf((V-0.5f) * 128.f + 128)); \
} \
} while (0)

Definition at line 376 of file avf_showcwt.c.

Enumeration Type Documentation

◆ FrequencyScale

Enumerator
FSCALE_LINEAR 
FSCALE_LOG 
FSCALE_BARK 
FSCALE_MEL 
FSCALE_ERBS 
FSCALE_SQRT 
FSCALE_CBRT 
FSCALE_QDRT 
FSCALE_FM 
NB_FSCALE 
FS_LINEAR 
FS_LOG 
FS_RLOG 
NB_FSCALES 
F_LINEAR 
F_LOG 
NB_FSCALES 

Definition at line 39 of file avf_showcwt.c.

◆ IntensityScale

Enumerator
ISCALE_LOG 
ISCALE_LINEAR 
ISCALE_SQRT 
ISCALE_CBRT 
ISCALE_QDRT 
NB_ISCALE 

Definition at line 52 of file avf_showcwt.c.

◆ DirectionMode

Enumerator
DIRECTION_LR 
DIRECTION_RL 
DIRECTION_UD 
DIRECTION_DU 
NB_DIRECTION 

Definition at line 61 of file avf_showcwt.c.

◆ SlideMode

enum SlideMode
Enumerator
REPLACE 
SCROLL 
NB_SLIDES 
SLIDE_REPLACE 
SLIDE_SCROLL 
SLIDE_FRAME 
NB_SLIDE 
REPLACE 
SCROLL 
FULLFRAME 
RSCROLL 
LREPLACE 
NB_SLIDES 
REPLACE 
SCROLL 
FULLFRAME 
RSCROLL 
NB_SLIDES 

Definition at line 69 of file avf_showcwt.c.

Function Documentation

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( showcwt  )

◆ uninit()

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 185 of file avf_showcwt.c.

Referenced by config_output().

◆ query_formats()

static int query_formats ( AVFilterContext ctx)
static

Definition at line 227 of file avf_showcwt.c.

◆ frequency_band()

static float frequency_band ( float frequency_band,
int  frequency_band_count,
float  frequency_range,
float  frequency_offset,
int  frequency_scale,
float  deviation 
)
static

Definition at line 256 of file avf_showcwt.c.

Referenced by config_output().

◆ remap_log()

static float remap_log ( ShowCWTContext s,
float  value,
int  iscale,
float  log_factor 
)
static

Definition at line 313 of file avf_showcwt.c.

Referenced by draw().

◆ run_channel_cwt_prepare()

static int run_channel_cwt_prepare ( AVFilterContext ctx,
void *  arg,
int  jobnr,
int  ch 
)
static

Definition at line 346 of file avf_showcwt.c.

Referenced by run_channels_cwt_prepare().

◆ draw_bar()

static void draw_bar ( ShowCWTContext s,
int  y,
float  Y,
float  U,
float  V 
)
static

Definition at line 390 of file avf_showcwt.c.

Referenced by draw().

◆ draw()

static int draw ( AVFilterContext ctx,
void *  arg,
int  jobnr,
int  nb_jobs 
)
static

◆ run_channel_cwt()

static int run_channel_cwt ( AVFilterContext ctx,
void *  arg,
int  jobnr,
int  nb_jobs 
)
static

Definition at line 652 of file avf_showcwt.c.

Referenced by activate().

◆ compute_kernel()

static int compute_kernel ( AVFilterContext ctx)
static

Definition at line 723 of file avf_showcwt.c.

Referenced by config_output().

◆ config_output()

static int config_output ( AVFilterLink outlink)
static

Definition at line 812 of file avf_showcwt.c.

◆ output_frame()

static int output_frame ( AVFilterContext ctx)
static

Definition at line 1045 of file avf_showcwt.c.

Referenced by activate().

◆ run_channels_cwt_prepare()

static int run_channels_cwt_prepare ( AVFilterContext ctx,
void *  arg,
int  jobnr,
int  nb_jobs 
)
static

Definition at line 1229 of file avf_showcwt.c.

Referenced by activate().

◆ activate()

static int activate ( AVFilterContext ctx)
static

Definition at line 1242 of file avf_showcwt.c.

Variable Documentation

◆ showcwt_options

const AVOption showcwt_options[]
static

Definition at line 135 of file avf_showcwt.c.

◆ showcwt_outputs

const AVFilterPad showcwt_outputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = config_output,
},
}

Definition at line 1321 of file avf_showcwt.c.

◆ ff_avf_showcwt

const AVFilter ff_avf_showcwt
Initial value:
= {
.name = "showcwt",
.description = NULL_IF_CONFIG_SMALL("Convert input audio to a CWT (Continuous Wavelet Transform) spectrum video output."),
.uninit = uninit,
.priv_size = sizeof(ShowCWTContext),
.activate = activate,
.priv_class = &showcwt_class,
}

Definition at line 1329 of file avf_showcwt.c.

FILTER_QUERY_FUNC
#define FILTER_QUERY_FUNC(func)
Definition: internal.h:159
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: avf_showcwt.c:185
ShowCWTContext
Definition: avf_showcwt.c:76
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:182
V
#define V
Definition: avdct.c:30
ff_audio_default_filterpad
const AVFilterPad ff_audio_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_AUDIO.
Definition: audio.c:33
f
f
Definition: af_crystalizer.c:121
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:106
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: avf_showcwt.c:227
Y
#define Y
Definition: boxblur.h:37
lrintf
#define lrintf(x)
Definition: libm_mips.h:72
activate
static int activate(AVFilterContext *ctx)
Definition: avf_showcwt.c:1242
config_output
static int config_output(AVFilterLink *outlink)
Definition: avf_showcwt.c:812
U
#define U(x)
Definition: vpx_arith.h:37
av_clip_uint8
#define av_clip_uint8
Definition: common.h:104
AVFILTER_FLAG_SLICE_THREADS
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition: avfilter.h:117
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:183
showcwt_outputs
static const AVFilterPad showcwt_outputs[]
Definition: avf_showcwt.c:1321