summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-21 21:27:27 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-21 21:27:27 +0000
commit0cddea37546e00caa3f438e0da6e21b931b8de48 (patch)
tree116519be254278e786e8102881c4506ee5eb5248
parent35fc0ebf3fe200b54af142e99facfe8dc2942544 (diff)
downloadmpv-0cddea37546e00caa3f438e0da6e21b931b8de48.tar.bz2
mpv-0cddea37546e00caa3f438e0da6e21b931b8de48.tar.xz
Add statistics audio filter that prints information about the audio stream.
patch by Nicolas George, nicolas.george normalesup org git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28696 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--Changelog1
-rw-r--r--DOCS/man/en/mplayer.17
-rw-r--r--Makefile1
-rw-r--r--libaf/af.c2
-rw-r--r--libaf/af_stats.c158
5 files changed, 169 insertions, 0 deletions
diff --git a/Changelog b/Changelog
index 263026c41c..e299463574 100644
--- a/Changelog
+++ b/Changelog
@@ -62,6 +62,7 @@ MPlayer (1.0)
* change vf_screenshot dependency from libpng to lavc
* add af_scaletempo which maintains audio pitch when changing playback speed
* fix multi-channel reordering
+ * af_stats, filter to print information about the audio stream
Streaming:
* tv:// support for Windows
diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1
index b5dbff3df8..c8d199fa6f 100644
--- a/DOCS/man/en/mplayer.1
+++ b/DOCS/man/en/mplayer.1
@@ -5486,6 +5486,13 @@ Changing playback speed, would change pitch, leaving audio tempo at 1.2x.
.RE
.PD 1
.
+.TP
+.B "stats\ \ "
+Collects and prints statistics about the audio stream, especially the volume.
+These statistics are especially intended to help adjusting the volume while
+avoiding clipping.
+The volumes are printed in dB and compatible with the volume audio filter.
+.
.
.
.SH "VIDEO FILTERS"
diff --git a/Makefile b/Makefile
index d4afdd524e..449b0589e3 100644
--- a/Makefile
+++ b/Makefile
@@ -68,6 +68,7 @@ SRCS_COMMON = asxparser.c \
libaf/af_resample.c \
libaf/af_scaletempo.c \
libaf/af_sinesuppress.c \
+ libaf/af_stats.c \
libaf/af_sub.c \
libaf/af_surround.c \
libaf/af_sweep.c \
diff --git a/libaf/af.c b/libaf/af.c
index 7333896882..77f30a4d45 100644
--- a/libaf/af.c
+++ b/libaf/af.c
@@ -51,6 +51,7 @@ extern af_info_t af_info_center;
extern af_info_t af_info_sinesuppress;
extern af_info_t af_info_karaoke;
extern af_info_t af_info_scaletempo;
+extern af_info_t af_info_stats;
static af_info_t* filter_list[]={
&af_info_dummy,
@@ -85,6 +86,7 @@ static af_info_t* filter_list[]={
&af_info_sinesuppress,
&af_info_karaoke,
&af_info_scaletempo,
+ &af_info_stats,
NULL
};
diff --git a/libaf/af_stats.c b/libaf/af_stats.c
new file mode 100644
index 0000000000..dc24802e16
--- /dev/null
+++ b/libaf/af_stats.c
@@ -0,0 +1,158 @@
+/*
+ * Copyright (C) 2009 Nicolas George <nicolas.george@normalesup.org>
+ *
+ * This file is part of MPlayer.
+ *
+ * MPlayer is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * MPlayer is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <inttypes.h>
+#include <math.h>
+
+#include "af.h"
+
+#define MAX_DB 80
+#define MIN_VAL 1E-8
+
+struct af_stats
+{
+ long long n_samples;
+ double tsquare;
+ int max;
+ long long histogram[65536];
+};
+
+static inline int logdb(double v)
+{
+ return v > 1 ? 0 : v <= MIN_VAL ? MAX_DB - 1 :
+ log(v) / -0.23025850929940456840179914546843642076;
+}
+
+static int stats_init(af_instance_t *af, struct af_stats *s, af_data_t *data)
+{
+ int i;
+
+ if (!data)
+ return AF_ERROR;
+ *(af->data) = *data;
+ af->data->format = AF_FORMAT_S16_NE;
+ af->data->bps = 2;
+ s->n_samples = 0;
+ s->tsquare = 0;
+ s->max = 0;
+ for (i = 0; i < 65536; i++)
+ s->histogram[i] = 0;
+ return af_test_output(af, data);
+}
+
+static void stats_print(struct af_stats *s)
+{
+ int i;
+ long long sum;
+ float v;
+ long long h[MAX_DB];
+
+ s->tsquare /= 32768 * 32768;
+ mp_msg(MSGT_AFILTER, MSGL_INFO, "stats: n_samples: %lld\n", s->n_samples);
+ if (s->n_samples == 0)
+ return;
+ mp_msg(MSGT_AFILTER, MSGL_INFO, "stats: mean_volume: -%d dB\n",
+ logdb(s->tsquare / s->n_samples));
+ mp_msg(MSGT_AFILTER, MSGL_INFO, "stats: max_volume: -%d dB\n",
+ logdb(s->max / 32768.0));
+ for (i = 0; i < MAX_DB; i++)
+ h[i] = 0;
+ for (i = 0; i < 65536; i++) {
+ v = (i - 32768) / 32768.0;
+ h[logdb(v * v)] += s->histogram[i];
+ }
+ for (i = 0; i < MAX_DB; i++)
+ if (h[i] != 0)
+ break;
+ sum = 0;
+ for (; i < MAX_DB; i++) {
+ sum += h[i];
+ mp_msg(MSGT_AFILTER, MSGL_INFO, "stats:histogram_%ddb: %lld\n",
+ i, h[i]);
+ if (sum > s->n_samples / 1000)
+ break;
+ }
+}
+
+static int control(struct af_instance_s *af, int cmd, void *arg)
+{
+ struct af_stats *s = (struct af_stats *)af->setup;
+
+ switch(cmd) {
+ case AF_CONTROL_REINIT:
+ return stats_init(af, s, arg);
+
+ case AF_CONTROL_PRE_DESTROY:
+ stats_print(s);
+ return AF_OK;
+ }
+ return AF_UNKNOWN;
+}
+
+static void uninit(struct af_instance_s *af)
+{
+ if (af->data)
+ free(af->data);
+ if (af->setup)
+ free(af->setup);
+}
+
+static af_data_t *play(struct af_instance_s *af, af_data_t *data)
+{
+ struct af_stats *s = (struct af_stats *)af->setup;
+ int16_t *a, *aend;
+ int v, v2;
+
+ a = data->audio;
+ aend = (int16_t *)((char *)data->audio + data->len);
+ s->n_samples += aend - a;
+ for (; a < aend; a++) {
+ v = *a;
+ v2 = v * v;
+ s->tsquare += v2;
+ s->histogram[v + 32768]++;
+ if (v2 > s->max)
+ s->max = v2;
+ }
+ return data;
+}
+
+static int af_open(af_instance_t* af){
+ af->control = control;
+ af->uninit = uninit;
+ af->play = play;
+ af->mul = 1;
+ af->data = malloc(sizeof(af_data_t));
+ af->setup = malloc(sizeof(struct af_stats));
+ if (af->data == NULL || af->setup == NULL)
+ return AF_ERROR;
+ return AF_OK;
+}
+
+af_info_t af_info_stats = {
+ "Statistics audio filter",
+ "stats",
+ "Nicolas George",
+ "",
+ 0,
+ af_open
+};