cog/Visualization/ThirdParty/deadbeef/analyzer.h

149 lines
4.3 KiB
C

/*
DeaDBeeF -- the music player
Copyright (C) 2009-2021 Alexey Yakovenko and other contributors
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#ifndef analyzer_h
#define analyzer_h
#ifdef __cplusplus
extern "C" {
#endif
#define DDB_ANALYZER_MAX_LABEL_FREQS 20
typedef struct {
float freq;
float ratio;
int bin;
} ddb_analyzer_band_t;
typedef struct {
// interpolation data
int bin;
int last_bin;
float ratio;
// normalized position
float xpos;
float height;
float peak;
float peak_speed;
} ddb_analyzer_bar_t;
typedef struct {
float xpos;
float peak_ypos;
float bar_height;
} ddb_analyzer_draw_bar_t;
typedef struct {
int bar_count;
ddb_analyzer_draw_bar_t *bars;
float bar_width;
// freq label drawing positions in view space
float label_freq_positions[DDB_ANALYZER_MAX_LABEL_FREQS];
char label_freq_texts[DDB_ANALYZER_MAX_LABEL_FREQS][4];
int label_freq_count;
} ddb_analyzer_draw_data_t;
typedef enum {
DDB_ANALYZER_MODE_FREQUENCIES,
DDB_ANALYZER_MODE_OCTAVE_NOTE_BANDS,
} ddb_analyzer_mode_t;
typedef struct ddb_analyzer_s {
// Settings
float min_freq;
float max_freq;
ddb_analyzer_mode_t mode;
/// Set to 1 after changing the @c mode or @c octave_bars_step at runtime, to refresh the internal state
int mode_did_change;
/// Generate fractional bar positions and width. Default is 0.
int fractional_bars;
/// Process 2 channels, if available, and use the max value. Default is 0.
int max_of_stereo_data;
/// How to calculate the gap between bars. E.g. 10 means bar_width/10. Default is 3.
/// If this value is 0, no gap will be created.
/// If the gap is >=1, a gap of at least 1px will be created, unless the bar width itself is 1px.
int bar_gap_denominator;
/// Can be either a real or virtual view width.
/// The calculated values are normalized,
/// and are going to be converted to the real view size at the draw time.
int view_width;
float peak_hold; // how many frames to hold the peak in place
float peak_speed_scale;
float db_upper_bound; // dB value corresponding to the top of the view
float db_lower_bound; // dB value corresponding to the bottom of the view
int octave_bars_step; // how many notes in one bar (default 1)
int freq_is_log; // whether frequency mode is in logarithmic or linear space (default 1)
/// The bars get created / updated by calling @c ddb_analyzer_process.
/// The same bars get updated on every call to @c ddb_analyzer_tick.
ddb_analyzer_bar_t *bars;
int bar_count;
int bar_count_max;
int samplerate;
int channels;
int fft_size;
float *fft_data;
/// Calculated label texts and frequencies
float label_freq_positions[DDB_ANALYZER_MAX_LABEL_FREQS];
char label_freq_texts[DDB_ANALYZER_MAX_LABEL_FREQS][4];
int label_freq_count;
/// Tempered scale data, precalculated from fft pins
ddb_analyzer_band_t *tempered_scale_bands;
} ddb_analyzer_t;
ddb_analyzer_t *ddb_analyzer_alloc(void);
ddb_analyzer_t *ddb_analyzer_init(ddb_analyzer_t *analyzer);
void ddb_analyzer_dealloc(ddb_analyzer_t *analyzer);
void ddb_analyzer_free(ddb_analyzer_t *analyzer);
/// Process fft data into bars and peaks
void ddb_analyzer_process(ddb_analyzer_t *analyzer, int samplerate, int channels, const float *fft_data, int fft_size);
/// Update bars and peaks for the next frame
void ddb_analyzer_tick(ddb_analyzer_t *analyzer);
void ddb_analyzer_get_draw_data(ddb_analyzer_t *analyzer, int view_width, int view_height, ddb_analyzer_draw_data_t *draw_data);
void ddb_analyzer_draw_data_dealloc(ddb_analyzer_draw_data_t *draw_data);
#ifdef __cplusplus
}
#endif
#endif /* analyzer_h */