2009-01-05 12:41:40 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C)2002 Anders Johansson ajh@atri.curtin.edu.au
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2002-12-28 13:59:53 +00:00
|
|
|
|
2002-10-16 01:49:40 +00:00
|
|
|
/* This audio filter changes the volume of the sound, and can be used
|
2002-12-28 13:59:53 +00:00
|
|
|
when the mixer doesn't support the PCM channel. It can handle
|
2009-11-10 00:45:19 +00:00
|
|
|
between 1 and AF_NCH channels. The volume can be adjusted between -60dB
|
2002-12-28 13:59:53 +00:00
|
|
|
to +20dB and is set on a per channels basis. The is accessed through
|
|
|
|
AF_CONTROL_VOLUME_LEVEL.
|
2002-10-16 01:49:40 +00:00
|
|
|
|
2002-12-28 13:59:53 +00:00
|
|
|
The filter has support for soft-clipping, it is enabled by
|
2002-10-16 01:49:40 +00:00
|
|
|
AF_CONTROL_VOLUME_SOFTCLIPP. It has also a probing feature which
|
|
|
|
can be used to measure the power in the audio stream, both an
|
2002-12-28 13:59:53 +00:00
|
|
|
instantaneous value and the maximum value can be probed. The
|
2002-10-16 01:49:40 +00:00
|
|
|
probing is enable by AF_CONTROL_VOLUME_PROBE_ON_OFF and is done on a
|
|
|
|
per channel basis. The result from the probing is obtained using
|
|
|
|
AF_CONTROL_VOLUME_PROBE_GET and AF_CONTROL_VOLUME_PROBE_GET_MAX. The
|
2009-05-13 02:58:57 +00:00
|
|
|
probed values are calculated in dB.
|
2002-10-16 01:49:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2009-05-13 02:58:57 +00:00
|
|
|
#include <string.h>
|
2002-10-16 01:49:40 +00:00
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <math.h>
|
2002-12-28 13:59:53 +00:00
|
|
|
#include <limits.h>
|
2002-10-16 01:49:40 +00:00
|
|
|
|
|
|
|
#include "af.h"
|
|
|
|
|
|
|
|
// Data for specific instances of this filter
|
|
|
|
typedef struct af_volume_s
|
|
|
|
{
|
2002-12-28 13:59:53 +00:00
|
|
|
int enable[AF_NCH]; // Enable/disable / channel
|
|
|
|
float pow[AF_NCH]; // Estimated power level [dB]
|
|
|
|
float max[AF_NCH]; // Max Power level [dB]
|
|
|
|
float level[AF_NCH]; // Gain level for each channel
|
|
|
|
float time; // Forgetting factor for power estimate
|
|
|
|
int soft; // Enable/disable soft clipping
|
|
|
|
int fast; // Use fix-point volume control
|
2002-10-16 01:49:40 +00:00
|
|
|
}af_volume_t;
|
|
|
|
|
|
|
|
// Initialization and runtime control
|
|
|
|
static int control(struct af_instance_s* af, int cmd, void* arg)
|
|
|
|
{
|
2009-05-13 02:58:57 +00:00
|
|
|
af_volume_t* s = (af_volume_t*)af->setup;
|
2002-10-16 01:49:40 +00:00
|
|
|
|
|
|
|
switch(cmd){
|
|
|
|
case AF_CONTROL_REINIT:
|
|
|
|
// Sanity check
|
|
|
|
if(!arg) return AF_ERROR;
|
2009-05-13 02:58:57 +00:00
|
|
|
|
2002-10-16 01:49:40 +00:00
|
|
|
af->data->rate = ((af_data_t*)arg)->rate;
|
|
|
|
af->data->nch = ((af_data_t*)arg)->nch;
|
2009-05-13 02:58:57 +00:00
|
|
|
|
2004-12-27 17:30:15 +00:00
|
|
|
if(s->fast && (((af_data_t*)arg)->format != (AF_FORMAT_FLOAT_NE))){
|
|
|
|
af->data->format = AF_FORMAT_S16_NE;
|
2002-12-28 13:59:53 +00:00
|
|
|
af->data->bps = 2;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
// Cutoff set to 10Hz for forgetting factor
|
|
|
|
float x = 2.0*M_PI*15.0/(float)af->data->rate;
|
|
|
|
float t = 2.0-cos(x);
|
|
|
|
s->time = 1.0 - (t - sqrt(t*t - 1));
|
2009-03-28 19:57:56 +00:00
|
|
|
mp_msg(MSGT_AFILTER, MSGL_DBG2, "[volume] Forgetting factor = %0.5f\n",s->time);
|
2004-12-27 17:30:15 +00:00
|
|
|
af->data->format = AF_FORMAT_FLOAT_NE;
|
2002-12-28 13:59:53 +00:00
|
|
|
af->data->bps = 4;
|
|
|
|
}
|
|
|
|
return af_test_output(af,(af_data_t*)arg);
|
2002-10-31 08:03:51 +00:00
|
|
|
case AF_CONTROL_COMMAND_LINE:{
|
2004-11-30 19:02:29 +00:00
|
|
|
float v=0.0;
|
2002-12-28 13:59:53 +00:00
|
|
|
float vol[AF_NCH];
|
|
|
|
int i;
|
|
|
|
sscanf((char*)arg,"%f:%i", &v, &s->soft);
|
|
|
|
for(i=0;i<AF_NCH;i++) vol[i]=v;
|
|
|
|
return control(af,AF_CONTROL_VOLUME_LEVEL | AF_CONTROL_SET, vol);
|
2002-10-31 08:03:51 +00:00
|
|
|
}
|
2009-05-13 02:58:57 +00:00
|
|
|
case AF_CONTROL_POST_CREATE:
|
|
|
|
s->fast = ((((af_cfg_t*)arg)->force & AF_INIT_FORMAT_MASK) ==
|
2003-01-10 01:45:34 +00:00
|
|
|
AF_INIT_FLOAT) ? 0 : 1;
|
2002-10-16 01:49:40 +00:00
|
|
|
return AF_OK;
|
2002-12-28 13:59:53 +00:00
|
|
|
case AF_CONTROL_VOLUME_ON_OFF | AF_CONTROL_SET:
|
|
|
|
memcpy(s->enable,(int*)arg,AF_NCH*sizeof(int));
|
2009-05-13 02:58:57 +00:00
|
|
|
return AF_OK;
|
2002-12-28 13:59:53 +00:00
|
|
|
case AF_CONTROL_VOLUME_ON_OFF | AF_CONTROL_GET:
|
|
|
|
memcpy((int*)arg,s->enable,AF_NCH*sizeof(int));
|
2009-05-13 02:58:57 +00:00
|
|
|
return AF_OK;
|
2002-12-28 13:59:53 +00:00
|
|
|
case AF_CONTROL_VOLUME_SOFTCLIP | AF_CONTROL_SET:
|
|
|
|
s->soft = *(int*)arg;
|
2009-05-13 02:58:57 +00:00
|
|
|
return AF_OK;
|
2002-12-28 13:59:53 +00:00
|
|
|
case AF_CONTROL_VOLUME_SOFTCLIP | AF_CONTROL_GET:
|
|
|
|
*(int*)arg = s->soft;
|
2009-05-13 02:58:57 +00:00
|
|
|
return AF_OK;
|
2002-12-28 13:59:53 +00:00
|
|
|
case AF_CONTROL_VOLUME_LEVEL | AF_CONTROL_SET:
|
|
|
|
return af_from_dB(AF_NCH,(float*)arg,s->level,20.0,-200.0,60.0);
|
|
|
|
case AF_CONTROL_VOLUME_LEVEL | AF_CONTROL_GET:
|
|
|
|
return af_to_dB(AF_NCH,s->level,(float*)arg,20.0);
|
|
|
|
case AF_CONTROL_VOLUME_PROBE | AF_CONTROL_GET:
|
|
|
|
return af_to_dB(AF_NCH,s->pow,(float*)arg,10.0);
|
|
|
|
case AF_CONTROL_VOLUME_PROBE_MAX | AF_CONTROL_GET:
|
|
|
|
return af_to_dB(AF_NCH,s->max,(float*)arg,10.0);
|
2002-11-14 09:49:06 +00:00
|
|
|
case AF_CONTROL_PRE_DESTROY:{
|
|
|
|
float m = 0.0;
|
|
|
|
int i;
|
2003-01-10 01:45:34 +00:00
|
|
|
if(!s->fast){
|
|
|
|
for(i=0;i<AF_NCH;i++)
|
|
|
|
m=max(m,s->max[i]);
|
2004-06-25 15:26:59 +00:00
|
|
|
af_to_dB(1, &m, &m, 10.0);
|
2009-03-28 19:57:56 +00:00
|
|
|
mp_msg(MSGT_AFILTER, MSGL_INFO, "[volume] The maximum volume was %0.2fdB \n", m);
|
2003-01-10 01:45:34 +00:00
|
|
|
}
|
2002-11-14 09:49:06 +00:00
|
|
|
return AF_OK;
|
|
|
|
}
|
2002-10-16 01:49:40 +00:00
|
|
|
}
|
|
|
|
return AF_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
2009-05-13 02:58:57 +00:00
|
|
|
// Deallocate memory
|
2002-10-16 01:49:40 +00:00
|
|
|
static void uninit(struct af_instance_s* af)
|
|
|
|
{
|
|
|
|
free(af->data);
|
|
|
|
free(af->setup);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter data through filter
|
|
|
|
static af_data_t* play(struct af_instance_s* af, af_data_t* data)
|
|
|
|
{
|
2002-12-28 13:59:53 +00:00
|
|
|
af_data_t* c = data; // Current working data
|
|
|
|
af_volume_t* s = (af_volume_t*)af->setup; // Setup for this instance
|
|
|
|
int ch = 0; // Channel counter
|
2009-05-13 02:58:57 +00:00
|
|
|
register int nch = c->nch; // Number of channels
|
2002-12-28 13:59:53 +00:00
|
|
|
register int i = 0;
|
|
|
|
|
|
|
|
// Basic operation volume control only (used on slow machines)
|
2004-12-27 17:30:15 +00:00
|
|
|
if(af->data->format == (AF_FORMAT_S16_NE)){
|
2002-12-28 13:59:53 +00:00
|
|
|
int16_t* a = (int16_t*)c->audio; // Audio data
|
|
|
|
int len = c->len/2; // Number of samples
|
2002-10-16 01:49:40 +00:00
|
|
|
for(ch = 0; ch < nch ; ch++){
|
2002-12-28 13:59:53 +00:00
|
|
|
if(s->enable[ch]){
|
2009-05-13 02:58:57 +00:00
|
|
|
register int vol = (int)(255.0 * s->level[ch]);
|
2002-12-28 13:59:53 +00:00
|
|
|
for(i=ch;i<len;i+=nch){
|
|
|
|
register int x = (a[i] * vol) >> 8;
|
|
|
|
a[i]=clamp(x,SHRT_MIN,SHRT_MAX);
|
|
|
|
}
|
2002-10-16 01:49:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-12-28 13:59:53 +00:00
|
|
|
// Machine is fast and data is floating point
|
2009-05-13 02:58:57 +00:00
|
|
|
else if(af->data->format == (AF_FORMAT_FLOAT_NE)){
|
2002-12-28 13:59:53 +00:00
|
|
|
float* a = (float*)c->audio; // Audio data
|
|
|
|
int len = c->len/4; // Number of samples
|
2002-10-16 01:49:40 +00:00
|
|
|
for(ch = 0; ch < nch ; ch++){
|
2002-12-28 13:59:53 +00:00
|
|
|
// Volume control (fader)
|
|
|
|
if(s->enable[ch]){
|
|
|
|
float t = 1.0 - s->time;
|
|
|
|
for(i=ch;i<len;i+=nch){
|
|
|
|
register float x = a[i];
|
2009-05-13 02:58:57 +00:00
|
|
|
register float pow = x*x;
|
2002-12-28 13:59:53 +00:00
|
|
|
// Check maximum power value
|
|
|
|
if(pow > s->max[ch])
|
|
|
|
s->max[ch] = pow;
|
|
|
|
// Set volume
|
|
|
|
x *= s->level[ch];
|
|
|
|
// Peak meter
|
|
|
|
pow = x*x;
|
|
|
|
if(pow > s->pow[ch])
|
|
|
|
s->pow[ch] = pow;
|
|
|
|
else
|
|
|
|
s->pow[ch] = t*s->pow[ch] + pow*s->time; // LP filter
|
|
|
|
/* Soft clipping, the sound of a dream, thanks to Jon Wattes
|
|
|
|
post to Musicdsp.org */
|
2005-01-31 11:43:36 +00:00
|
|
|
if(s->soft)
|
|
|
|
x=af_softclip(x);
|
2002-12-28 13:59:53 +00:00
|
|
|
// Hard clipping
|
|
|
|
else
|
|
|
|
x=clamp(x,-1.0,1.0);
|
|
|
|
a[i] = x;
|
2002-10-16 01:49:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allocate memory and set function pointers
|
2007-03-20 09:46:00 +00:00
|
|
|
static int af_open(af_instance_t* af){
|
2002-10-16 01:49:40 +00:00
|
|
|
int i = 0;
|
|
|
|
af->control=control;
|
|
|
|
af->uninit=uninit;
|
|
|
|
af->play=play;
|
2007-11-01 06:52:01 +00:00
|
|
|
af->mul=1;
|
2002-10-16 01:49:40 +00:00
|
|
|
af->data=calloc(1,sizeof(af_data_t));
|
|
|
|
af->setup=calloc(1,sizeof(af_volume_t));
|
|
|
|
if(af->data == NULL || af->setup == NULL)
|
|
|
|
return AF_ERROR;
|
2003-01-20 10:46:32 +00:00
|
|
|
// Enable volume control and set initial volume to 0dB.
|
2002-12-28 13:59:53 +00:00
|
|
|
for(i=0;i<AF_NCH;i++){
|
|
|
|
((af_volume_t*)af->setup)->enable[i] = 1;
|
2003-01-20 10:46:32 +00:00
|
|
|
((af_volume_t*)af->setup)->level[i] = 1.0;
|
2002-12-28 13:59:53 +00:00
|
|
|
}
|
2002-10-16 01:49:40 +00:00
|
|
|
return AF_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Description of this filter
|
|
|
|
af_info_t af_info_volume = {
|
|
|
|
"Volume control audio filter",
|
|
|
|
"volume",
|
|
|
|
"Anders",
|
|
|
|
"",
|
|
|
|
AF_FLAGS_NOT_REENTRANT,
|
2007-03-20 09:46:00 +00:00
|
|
|
af_open
|
2002-10-16 01:49:40 +00:00
|
|
|
};
|