summaryrefslogtreecommitdiffstats
path: root/libaf
diff options
context:
space:
mode:
authoruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-21 22:07:39 +0000
committeruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-21 22:07:39 +0000
commit45626ad18cba03a67c904af579a8f25d8b4a1901 (patch)
treed92cef1f97e8b43b85357584048cc7f33eb0bc57 /libaf
parentdb757ae96bef4e296de7badcf9cd0921b8756705 (diff)
downloadmpv-45626ad18cba03a67c904af579a8f25d8b4a1901.tar.bz2
mpv-45626ad18cba03a67c904af579a8f25d8b4a1901.tar.xz
af_stats: Some fixes to the new filter
The just committed af_stats was an older version of the patch with broken max volume calculation. Fix that and do some cleanup. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28698 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libaf')
-rw-r--r--libaf/af_stats.c27
1 files changed, 14 insertions, 13 deletions
diff --git a/libaf/af_stats.c b/libaf/af_stats.c
index dc24802e16..3d78f72faa 100644
--- a/libaf/af_stats.c
+++ b/libaf/af_stats.c
@@ -28,8 +28,7 @@
#define MAX_DB 80
#define MIN_VAL 1E-8
-struct af_stats
-{
+struct af_stats {
long long n_samples;
double tsquare;
int max;
@@ -38,8 +37,11 @@ struct af_stats
static inline int logdb(double v)
{
- return v > 1 ? 0 : v <= MIN_VAL ? MAX_DB - 1 :
- log(v) / -0.23025850929940456840179914546843642076;
+ if (v > 1)
+ return 0;
+ if (v <= MIN_VAL)
+ return MAX_DB - 1;
+ return log(v) / -0.23025850929940456840179914546843642076;
}
static int stats_init(af_instance_t *af, struct af_stats *s, af_data_t *data)
@@ -73,7 +75,7 @@ static void stats_print(struct af_stats *s)
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));
+ logdb(s->max / (32768.0 * 32768.0)));
for (i = 0; i < MAX_DB; i++)
h[i] = 0;
for (i = 0; i < 65536; i++) {
@@ -86,7 +88,7 @@ static void stats_print(struct af_stats *s)
sum = 0;
for (; i < MAX_DB; i++) {
sum += h[i];
- mp_msg(MSGT_AFILTER, MSGL_INFO, "stats:histogram_%ddb: %lld\n",
+ mp_msg(MSGT_AFILTER, MSGL_INFO, "stats: histogram_%ddb: %lld\n",
i, h[i]);
if (sum > s->n_samples / 1000)
break;
@@ -95,7 +97,7 @@ static void stats_print(struct af_stats *s)
static int control(struct af_instance_s *af, int cmd, void *arg)
{
- struct af_stats *s = (struct af_stats *)af->setup;
+ struct af_stats *s = af->setup;
switch(cmd) {
case AF_CONTROL_REINIT:
@@ -110,15 +112,13 @@ static int control(struct af_instance_s *af, int cmd, void *arg)
static void uninit(struct af_instance_s *af)
{
- if (af->data)
- free(af->data);
- if (af->setup)
- free(af->setup);
+ free(af->data);
+ 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;
+ struct af_stats *s = af->setup;
int16_t *a, *aend;
int v, v2;
@@ -136,7 +136,8 @@ static af_data_t *play(struct af_instance_s *af, af_data_t *data)
return data;
}
-static int af_open(af_instance_t* af){
+static int af_open(af_instance_t *af)
+{
af->control = control;
af->uninit = uninit;
af->play = play;