[FFmpeg-cvslog] avfilter/af_replaygain: export results into read-only options
Paul B Mahol
git at videolan.org
Sun May 7 18:34:51 EEST 2023
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sat May 6 01:50:08 2023 +0200| [7153642992c5abe33d56ca50609706bc924cd66c] | committer: Paul B Mahol
avfilter/af_replaygain: export results into read-only options
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7153642992c5abe33d56ca50609706bc924cd66c
---
doc/filters.texi | 10 ++++++++++
libavfilter/af_replaygain.c | 37 ++++++++++++++++++++++++++++++++-----
2 files changed, 42 insertions(+), 5 deletions(-)
diff --git a/doc/filters.texi b/doc/filters.texi
index 9a0fe9c0a1..2f9d319b6a 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -6058,6 +6058,16 @@ ReplayGain scanner filter. This filter takes an audio stream as an input and
outputs it unchanged.
At end of filtering it displays @code{track_gain} and @code{track_peak}.
+The filter accepts the following exported read-only options:
+
+ at table @option
+ at item track_gain
+Exported track gain in dB at end of stream.
+
+ at item track_peak
+Exported track peak at end of stream.
+ at end table
+
@section resample
Convert the audio sample format, sample rate and channel layout. It is
diff --git a/libavfilter/af_replaygain.c b/libavfilter/af_replaygain.c
index 53852ac8bc..128454aa6b 100644
--- a/libavfilter/af_replaygain.c
+++ b/libavfilter/af_replaygain.c
@@ -23,8 +23,11 @@
* ReplayGain scanner
*/
+#include <float.h>
+
#include "libavutil/avassert.h"
#include "libavutil/channel_layout.h"
+#include "libavutil/opt.h"
#include "audio.h"
#include "avfilter.h"
#include "internal.h"
@@ -306,8 +309,11 @@ static const ReplayGainFreqInfo freqinfos[] =
};
typedef struct ReplayGainContext {
+ const AVClass *class;
+
uint32_t histogram[HISTOGRAM_SLOTS];
float peak;
+ float gain;
int yule_hist_i, butter_hist_i;
const double *yule_coeff_a;
const double *yule_coeff_b;
@@ -576,13 +582,22 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
return ff_filter_frame(outlink, in);
}
-static av_cold void uninit(AVFilterContext *ctx)
+static int request_frame(AVFilterLink *outlink)
{
+ AVFilterContext *ctx = outlink->src;
ReplayGainContext *s = ctx->priv;
- float gain = calc_replaygain(s->histogram);
+ int ret = 0;
- av_log(ctx, AV_LOG_INFO, "track_gain = %+.2f dB\n", gain);
- av_log(ctx, AV_LOG_INFO, "track_peak = %.6f\n", s->peak);
+ ret = ff_request_frame(ctx->inputs[0]);
+
+ if (ret == AVERROR_EOF) {
+ s->gain = calc_replaygain(s->histogram);
+
+ av_log(ctx, AV_LOG_INFO, "track_gain = %+.2f dB\n", s->gain);
+ av_log(ctx, AV_LOG_INFO, "track_peak = %.6f\n", s->peak);
+ }
+
+ return ret;
}
static const AVFilterPad replaygain_inputs[] = {
@@ -598,14 +613,26 @@ static const AVFilterPad replaygain_outputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_AUDIO,
+ .request_frame = request_frame,
},
};
+#define OFFSET(x) offsetof(ReplayGainContext, x)
+#define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_EXPORT|AV_OPT_FLAG_READONLY
+
+static const AVOption replaygain_options[] = {
+ { "track_gain", "track gain (dB)", OFFSET(gain), AV_OPT_TYPE_FLOAT,{.dbl=0}, -FLT_MAX, FLT_MAX, FLAGS },
+ { "track_peak", "track peak", OFFSET(peak), AV_OPT_TYPE_FLOAT,{.dbl=0}, -FLT_MAX, FLT_MAX, FLAGS },
+ { NULL }
+};
+
+AVFILTER_DEFINE_CLASS(replaygain);
+
const AVFilter ff_af_replaygain = {
.name = "replaygain",
.description = NULL_IF_CONFIG_SMALL("ReplayGain scanner."),
- .uninit = uninit,
.priv_size = sizeof(ReplayGainContext),
+ .priv_class = &replaygain_class,
.flags = AVFILTER_FLAG_METADATA_ONLY,
FILTER_INPUTS(replaygain_inputs),
FILTER_OUTPUTS(replaygain_outputs),
More information about the ffmpeg-cvslog
mailing list