FFmpeg
|
#include <float.h>
#include "libavutil/avassert.h"
#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
#include "libavfilter/bufferqueue.h"
#include "audio.h"
#include "avfilter.h"
#include "filters.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | local_gain |
struct | cqueue |
struct | DynamicAudioNormalizerContext |
Macros | |
#define | MIN_FILTER_SIZE 3 |
#define | MAX_FILTER_SIZE 301 |
#define | FF_BUFQUEUE_SIZE (MAX_FILTER_SIZE + 1) |
#define | OFFSET(x) offsetof(DynamicAudioNormalizerContext, x) |
#define | FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM |
Variables | |
static const AVOption | dynaudnorm_options [] |
static const AVFilterPad | avfilter_af_dynaudnorm_inputs [] |
static const AVFilterPad | avfilter_af_dynaudnorm_outputs [] |
const AVFilter | ff_af_dynaudnorm |
Dynamic Audio Normalizer
Definition in file af_dynaudnorm.c.
#define MIN_FILTER_SIZE 3 |
Definition at line 33 of file af_dynaudnorm.c.
#define MAX_FILTER_SIZE 301 |
Definition at line 34 of file af_dynaudnorm.c.
#define FF_BUFQUEUE_SIZE (MAX_FILTER_SIZE + 1) |
Definition at line 36 of file af_dynaudnorm.c.
#define OFFSET | ( | x | ) | offsetof(DynamicAudioNormalizerContext, x) |
Definition at line 96 of file af_dynaudnorm.c.
Definition at line 97 of file af_dynaudnorm.c.
AVFILTER_DEFINE_CLASS | ( | dynaudnorm | ) |
|
static |
Definition at line 129 of file af_dynaudnorm.c.
Definition at line 141 of file af_dynaudnorm.c.
Referenced by config_input(), and process_command().
Definition at line 147 of file af_dynaudnorm.c.
Referenced by config_input(), create_exec_ctx(), and ff_vk_create_exec_ctx().
|
static |
Definition at line 171 of file af_dynaudnorm.c.
Referenced by uninit().
Definition at line 178 of file af_dynaudnorm.c.
Referenced by gaussian_filter(), minimum_filter(), and update_gain_history().
Definition at line 183 of file af_dynaudnorm.c.
Referenced by cqueue_dequeue(), cqueue_pop(), filter_frame(), flush(), perform_compression(), perform_dc_correction(), and update_gain_history().
Definition at line 188 of file af_dynaudnorm.c.
Referenced by filter_frame(), and update_gain_history().
Definition at line 198 of file af_dynaudnorm.c.
Referenced by gaussian_filter(), minimum_filter(), and update_gain_history().
Definition at line 204 of file af_dynaudnorm.c.
Referenced by amplify_frame(), and filter_frame().
Definition at line 215 of file af_dynaudnorm.c.
Referenced by cqueue_resize(), and update_gain_history().
Definition at line 225 of file af_dynaudnorm.c.
Referenced by process_command().
|
static |
Definition at line 247 of file af_dynaudnorm.c.
Referenced by config_input(), and process_command().
|
static |
Definition at line 273 of file af_dynaudnorm.c.
Referenced by config_input().
|
static |
Definition at line 309 of file af_dynaudnorm.c.
Definition at line 359 of file af_dynaudnorm.c.
Referenced by amplify_frame(), perform_compression(), and perform_dc_correction().
Definition at line 367 of file af_dynaudnorm.c.
Referenced by compute_frame_rms(), and compute_frame_std_dev().
Definition at line 372 of file af_dynaudnorm.c.
Referenced by add_icc_profile_size(), get_max_local_gain(), mp_decode_layer1(), mp_decode_layer2(), perform_compression(), and setup_compress_thresh().
Definition at line 378 of file af_dynaudnorm.c.
Referenced by get_max_local_gain().
Definition at line 399 of file af_dynaudnorm.c.
Referenced by get_max_local_gain().
|
static |
Definition at line 425 of file af_dynaudnorm.c.
Referenced by analyze_frame().
Definition at line 439 of file af_dynaudnorm.c.
Referenced by update_gain_history().
|
static |
Definition at line 450 of file af_dynaudnorm.c.
Referenced by update_gain_history().
|
static |
Definition at line 469 of file af_dynaudnorm.c.
Referenced by analyze_frame().
Definition at line 524 of file af_dynaudnorm.c.
Referenced by perform_compression(), and perform_dc_correction().
|
inlinestatic |
Definition at line 530 of file af_dynaudnorm.c.
Referenced by amplify_frame(), perform_compression(), and perform_dc_correction().
|
static |
Definition at line 537 of file af_dynaudnorm.c.
Referenced by analyze_frame().
Definition at line 560 of file af_dynaudnorm.c.
Referenced by perform_compression().
|
static |
Definition at line 582 of file af_dynaudnorm.c.
Referenced by perform_compression().
|
static |
Definition at line 608 of file af_dynaudnorm.c.
Referenced by analyze_frame().
|
static |
Definition at line 658 of file af_dynaudnorm.c.
Referenced by filter_frame().
|
static |
Definition at line 726 of file af_dynaudnorm.c.
Referenced by filter_frame().
|
static |
Definition at line 749 of file af_dynaudnorm.c.
Referenced by activate(), and flush_buffer().
|
static |
Definition at line 799 of file af_dynaudnorm.c.
Referenced by flush().
|
static |
Definition at line 822 of file af_dynaudnorm.c.
Referenced by activate().
|
static |
Definition at line 842 of file af_dynaudnorm.c.
|
static |
Definition at line 894 of file af_dynaudnorm.c.
|
static |
Definition at line 99 of file af_dynaudnorm.c.
|
static |
Definition at line 923 of file af_dynaudnorm.c.
|
static |
Definition at line 931 of file af_dynaudnorm.c.
const AVFilter ff_af_dynaudnorm |
Definition at line 938 of file af_dynaudnorm.c.