2002-10-01 08:45:08 +02:00
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# ifdef HAVE_MALLOC_H
# include <malloc.h>
# endif
# include "../config.h"
# include "../mp_msg.h"
# include "af.h"
// Static list of filters
extern af_info_t af_info_dummy ;
extern af_info_t af_info_delay ;
extern af_info_t af_info_channels ;
extern af_info_t af_info_format ;
extern af_info_t af_info_resample ;
static af_info_t * filter_list [ ] = { \
& af_info_dummy , \
& af_info_delay , \
& af_info_channels , \
& af_info_format , \
& af_info_resample , \
NULL \
} ;
/* Find a filter in the static list of filters using it's name. This
function is used internally */
af_info_t * af_find ( char * name )
{
int i = 0 ;
while ( filter_list [ i ] ) {
if ( ! strcmp ( filter_list [ i ] - > name , name ) )
return filter_list [ i ] ;
i + + ;
}
mp_msg ( MSGT_AFILTER , MSGL_ERR , " Couldn't find audio filter '%s' \n " , name ) ;
return NULL ;
}
// Function for creating a new filter of type name
af_instance_t * af_create ( char * name )
{
// Allocate space for the new filter and reset all pointers
af_instance_t * new = malloc ( sizeof ( af_instance_t ) ) ;
if ( ! new ) {
mp_msg ( MSGT_AFILTER , MSGL_ERR , " Could not allocate memory \n " ) ;
return NULL ;
}
memset ( new , 0 , sizeof ( af_instance_t ) ) ;
// Find filter from name
new - > info = af_find ( name ) ;
// Initialize the new filter
if ( new - > info & & ( AF_OK = = new - > info - > open ( new ) ) )
return new ;
free ( new ) ;
mp_msg ( MSGT_AFILTER , MSGL_ERR , " Couldn't create audio filter '%s' \n " , name ) ;
return NULL ;
}
/* Create and insert a new filter of type name before the filter in the
argument . This function can be called during runtime , the return
value is the new filter */
2002-10-01 14:53:30 +02:00
af_instance_t * af_prepend ( af_stream_t * s , af_instance_t * af , char * name )
2002-10-01 08:45:08 +02:00
{
2002-10-01 14:53:30 +02:00
// Create the new filter and make sure it is OK
2002-10-01 08:45:08 +02:00
af_instance_t * new = af_create ( name ) ;
if ( ! new )
return NULL ;
// Update pointers
new - > next = af ;
if ( af ) {
new - > prev = af - > prev ;
af - > prev = new ;
}
else
2002-10-01 14:53:30 +02:00
s - > last = new ;
2002-10-01 08:45:08 +02:00
if ( new - > prev )
new - > prev - > next = new ;
else
2002-10-01 14:53:30 +02:00
s - > first = new ;
2002-10-01 08:45:08 +02:00
return new ;
}
/* Create and insert a new filter of type name after the filter in the
argument . This function can be called during runtime , the return
value is the new filter */
2002-10-01 14:53:30 +02:00
af_instance_t * af_append ( af_stream_t * s , af_instance_t * af , char * name )
2002-10-01 08:45:08 +02:00
{
// Create the new filter and make sure it is OK
af_instance_t * new = af_create ( name ) ;
if ( ! new )
return NULL ;
// Update pointers
new - > prev = af ;
if ( af ) {
new - > next = af - > next ;
af - > next = new ;
}
else
2002-10-01 14:53:30 +02:00
s - > first = new ;
2002-10-01 08:45:08 +02:00
if ( new - > next )
new - > next - > prev = new ;
else
2002-10-01 14:53:30 +02:00
s - > last = new ;
2002-10-01 08:45:08 +02:00
return new ;
}
// Uninit and remove the filter "af"
2002-10-01 14:53:30 +02:00
void af_remove ( af_stream_t * s , af_instance_t * af )
2002-10-01 08:45:08 +02:00
{
if ( ! af ) return ;
// Detach pointers
if ( af - > prev )
af - > prev - > next = af - > next ;
else
2002-10-01 14:53:30 +02:00
s - > first = af - > next ;
2002-10-01 08:45:08 +02:00
if ( af - > next )
af - > next - > prev = af - > prev ;
else
2002-10-01 14:53:30 +02:00
s - > last = af - > prev ;
2002-10-01 08:45:08 +02:00
// Uninitialize af and free memory
af - > uninit ( af ) ;
free ( af ) ;
}
/* Reinitializes all filters downstream from the filter given in the argument */
2002-10-01 14:53:30 +02:00
int af_reinit ( af_stream_t * s , af_instance_t * af )
2002-10-01 08:45:08 +02:00
{
if ( ! af )
return AF_ERROR ;
do {
af_data_t in ; // Format of the input to current filter
int rv = 0 ; // Return value
// Check if this is the first filter
if ( ! af - > prev )
2002-10-01 14:53:30 +02:00
memcpy ( & in , & ( s - > input ) , sizeof ( af_data_t ) ) ;
2002-10-01 08:45:08 +02:00
else
memcpy ( & in , af - > prev - > data , sizeof ( af_data_t ) ) ;
// Reset just in case...
in . audio = NULL ;
in . len = 0 ;
rv = af - > control ( af , AF_CONTROL_REINIT , & in ) ;
switch ( rv ) {
case AF_OK :
break ;
case AF_FALSE : { // Configuration filter is needed
af_instance_t * new = NULL ;
// Insert channels filter
2002-10-01 14:53:30 +02:00
if ( ( af - > prev ? af - > prev - > data - > nch : s - > input . nch ) ! = in . nch ) {
2002-10-01 08:45:08 +02:00
// Create channels filter
2002-10-01 14:53:30 +02:00
if ( NULL = = ( new = af_prepend ( s , af , " channels " ) ) )
2002-10-01 08:45:08 +02:00
return AF_ERROR ;
// Set number of output channels
if ( AF_OK ! = ( rv = new - > control ( new , AF_CONTROL_CHANNELS , & in . nch ) ) )
return rv ;
// Initialize channels filter
if ( ! new - > prev )
2002-10-01 14:53:30 +02:00
memcpy ( & in , & ( s - > input ) , sizeof ( af_data_t ) ) ;
2002-10-01 08:45:08 +02:00
else
memcpy ( & in , new - > prev - > data , sizeof ( af_data_t ) ) ;
if ( AF_OK ! = ( rv = new - > control ( new , AF_CONTROL_REINIT , & in ) ) )
return rv ;
}
// Insert format filter
2002-10-01 14:53:30 +02:00
if ( ( ( af - > prev ? af - > prev - > data - > format : s - > input . format ) ! = in . format ) | |
( ( af - > prev ? af - > prev - > data - > bps : s - > input . bps ) ! = in . bps ) ) {
2002-10-01 08:45:08 +02:00
// Create format filter
2002-10-01 14:53:30 +02:00
if ( NULL = = ( new = af_prepend ( s , af , " format " ) ) )
2002-10-01 08:45:08 +02:00
return AF_ERROR ;
// Set output format
if ( AF_OK ! = ( rv = new - > control ( new , AF_CONTROL_FORMAT , & in ) ) )
return rv ;
// Initialize format filter
if ( ! new - > prev )
2002-10-01 14:53:30 +02:00
memcpy ( & in , & ( s - > input ) , sizeof ( af_data_t ) ) ;
2002-10-01 08:45:08 +02:00
else
memcpy ( & in , new - > prev - > data , sizeof ( af_data_t ) ) ;
if ( AF_OK ! = ( rv = new - > control ( new , AF_CONTROL_REINIT , & in ) ) )
return rv ;
}
if ( ! new ) // Should _never_ happen
return AF_ERROR ;
af = new ;
break ;
}
case AF_DETACH : { // Filter is redundant and wants to be unloaded
af_instance_t * aft = af - > prev ;
2002-10-01 14:53:30 +02:00
af_remove ( s , af ) ;
2002-10-01 08:45:08 +02:00
if ( aft )
af = aft ;
else
2002-10-01 14:53:30 +02:00
af = s - > first ; // Restart configuration
2002-10-01 08:45:08 +02:00
break ;
}
default :
2002-10-01 14:53:30 +02:00
mp_msg ( MSGT_AFILTER , MSGL_ERR , " Reinitialization did not work, audio filter '%s' returned error code %i \n " , af - > info - > name , rv ) ;
2002-10-01 08:45:08 +02:00
return AF_ERROR ;
}
af = af - > next ;
} while ( af ) ;
return AF_OK ;
}
/* Find filter in the dynamic filter list using it's name This
function is used for finding already initialized filters */
2002-10-01 14:53:30 +02:00
af_instance_t * af_get ( af_stream_t * s , char * name )
2002-10-01 08:45:08 +02:00
{
2002-10-01 14:53:30 +02:00
af_instance_t * af = s - > first ;
2002-10-01 08:45:08 +02:00
while ( af - > next ! = NULL ) {
if ( ! strcmp ( af - > info - > name , name ) )
return af ;
af = af - > next ;
}
return NULL ;
}
// Uninit and remove all filters
2002-10-01 14:53:30 +02:00
void af_uninit ( af_stream_t * s )
2002-10-01 08:45:08 +02:00
{
2002-10-01 14:53:30 +02:00
while ( s - > first )
af_remove ( s , s - > first ) ;
2002-10-01 08:45:08 +02:00
}
2002-10-01 14:53:30 +02:00
/* Initialize the stream "s". This function creates a new filter list
if necessary according to the values set in input and output . Input
and output should contain the format of the current movie and the
formate of the preferred output respectively . The function is
reentrant i . e . if called with an already initialized stream the
stream will be reinitialized . The return value is 0 if success and
- 1 if failure */
int af_init ( af_stream_t * s )
2002-10-01 08:45:08 +02:00
{
int cfg = SLOW ; // configuration type
int i = 0 ;
2002-10-01 14:53:30 +02:00
// Sanity check
if ( ! s ) return - 1 ;
2002-10-01 08:45:08 +02:00
// Precaution in case caller is misbehaving
2002-10-01 14:53:30 +02:00
s - > input . audio = s - > output . audio = NULL ;
s - > input . len = s - > output . len = 0 ;
2002-10-01 08:45:08 +02:00
// Figure out how fast the machine is
2002-10-01 14:53:30 +02:00
if ( s - > cfg . force )
cfg = s - > cfg . force ;
2002-10-01 08:45:08 +02:00
else {
# if defined(HAVE_SSE) || defined(HAVE_3DNOWEX)
cfg = FAST ;
# else
cfg = SLOW ;
# endif
}
// Check if this is the first call
2002-10-01 14:53:30 +02:00
if ( ! s - > first ) {
2002-10-01 08:45:08 +02:00
// Add all filters in the list (if there are any)
2002-10-01 14:53:30 +02:00
if ( ! s - > cfg . list ) { // To make automatic format conversion work
if ( ! af_append ( s , s - > first , " dummy " ) )
2002-10-01 08:45:08 +02:00
return - 1 ;
}
else {
2002-10-01 14:53:30 +02:00
while ( s - > cfg . list [ i ] ) {
if ( ! af_append ( s , s - > last , s - > cfg . list [ i + + ] ) )
2002-10-01 08:45:08 +02:00
return - 1 ;
}
}
}
// Init filters
2002-10-01 14:53:30 +02:00
if ( AF_OK ! = af_reinit ( s , s - > first ) )
2002-10-01 08:45:08 +02:00
return - 1 ;
// Check output format
if ( cfg ! = FORCE ) {
af_instance_t * af = NULL ; // New filter
// Check output frequency if not OK fix with resample
2002-10-01 14:53:30 +02:00
if ( s - > last - > data - > rate ! = s - > output . rate ) {
if ( NULL = = ( af = af_get ( s , " resample " ) ) ) {
2002-10-01 08:45:08 +02:00
if ( cfg = = SLOW ) {
2002-10-01 14:53:30 +02:00
if ( ! strcmp ( s - > first - > info - > name , " format " ) )
af = af_append ( s , s - > first , " resample " ) ;
2002-10-01 08:45:08 +02:00
else
2002-10-01 14:53:30 +02:00
af = af_prepend ( s , s - > first , " resample " ) ;
2002-10-01 08:45:08 +02:00
}
else {
2002-10-01 14:53:30 +02:00
if ( ! strcmp ( s - > last - > info - > name , " format " ) )
af = af_prepend ( s , s - > last , " resample " ) ;
2002-10-01 08:45:08 +02:00
else
2002-10-01 14:53:30 +02:00
af = af_append ( s , s - > last , " resample " ) ;
2002-10-01 08:45:08 +02:00
}
}
// Init the new filter
2002-10-01 14:53:30 +02:00
if ( ! af | | ( AF_OK ! = af - > control ( af , AF_CONTROL_RESAMPLE , & ( s - > output . rate ) ) ) )
2002-10-01 08:45:08 +02:00
return - 1 ;
2002-10-01 14:53:30 +02:00
if ( AF_OK ! = af_reinit ( s , af ) )
2002-10-01 08:45:08 +02:00
return - 1 ;
}
// Check number of output channels fix if not OK
// If needed always inserted last -> easy to screw up other filters
2002-10-01 14:53:30 +02:00
if ( s - > last - > data - > nch ! = s - > output . nch ) {
if ( ! strcmp ( s - > last - > info - > name , " format " ) )
af = af_prepend ( s , s - > last , " channels " ) ;
2002-10-01 08:45:08 +02:00
else
2002-10-01 14:53:30 +02:00
af = af_append ( s , s - > last , " channels " ) ;
2002-10-01 08:45:08 +02:00
// Init the new filter
2002-10-01 14:53:30 +02:00
if ( ! af | | ( AF_OK ! = af - > control ( af , AF_CONTROL_CHANNELS , & ( s - > output . nch ) ) ) )
2002-10-01 08:45:08 +02:00
return - 1 ;
2002-10-01 14:53:30 +02:00
if ( AF_OK ! = af_reinit ( s , af ) )
2002-10-01 08:45:08 +02:00
return - 1 ;
}
// Check output format fix if not OK
2002-10-01 14:53:30 +02:00
if ( ( s - > last - > data - > format ! = s - > output . format ) | |
( s - > last - > data - > bps ! = s - > output . bps ) ) {
if ( strcmp ( s - > last - > info - > name , " format " ) )
af = af_append ( s , s - > last , " format " ) ;
2002-10-01 08:45:08 +02:00
else
2002-10-01 14:53:30 +02:00
af = s - > last ;
2002-10-01 08:45:08 +02:00
// Init the new filter
2002-10-01 14:53:30 +02:00
if ( ! af | | ( AF_OK ! = af - > control ( af , AF_CONTROL_FORMAT , & ( s - > output ) ) ) )
2002-10-01 08:45:08 +02:00
return - 1 ;
2002-10-01 14:53:30 +02:00
if ( AF_OK ! = af_reinit ( s , af ) )
2002-10-01 08:45:08 +02:00
return - 1 ;
}
// Re init again just in case
2002-10-01 14:53:30 +02:00
if ( AF_OK ! = af_reinit ( s , s - > first ) )
2002-10-01 08:45:08 +02:00
return - 1 ;
2002-10-01 14:53:30 +02:00
if ( ( s - > last - > data - > format ! = s - > output . format ) | |
( s - > last - > data - > bps ! = s - > output . bps ) | |
( s - > last - > data - > nch ! = s - > output . nch ) | |
( s - > last - > data - > rate ! = s - > output . rate ) ) {
2002-10-01 08:45:08 +02:00
// Something is stuffed audio out will not work
mp_msg ( MSGT_AFILTER , MSGL_ERR , " Unable to setup filter system can not meet sound-card demands, please report this error on MPlayer development mailing list. \n " ) ;
2002-10-01 14:53:30 +02:00
af_uninit ( s ) ;
2002-10-01 08:45:08 +02:00
return - 1 ;
}
}
return 0 ;
}
// Filter data chunk through the filters in the list
2002-10-01 14:53:30 +02:00
af_data_t * af_play ( af_stream_t * s , af_data_t * data )
2002-10-01 08:45:08 +02:00
{
2002-10-01 14:53:30 +02:00
af_instance_t * af = s - > first ;
2002-10-01 08:45:08 +02:00
// Iterate through all filters
do {
data = af - > play ( af , data ) ;
af = af - > next ;
} while ( af ) ;
return data ;
}
/* Helper function used to calculate the exact buffer length needed
2002-10-03 14:02:46 +02:00
when buffers are resized . The returned length is > = than what is
needed */
inline int af_lencalc ( frac_t mul , af_data_t * d ) {
register int t = d - > bps * d - > nch ;
2002-10-03 14:43:39 +02:00
return t * ( ( ( d - > len / t ) * mul . n ) / mul . d + 1 ) ;
2002-10-01 08:45:08 +02:00
}
/* Calculate how long the output from the filters will be given the
2002-10-03 14:02:46 +02:00
input length " len " . The calculated length is > = the actual
length . */
2002-10-01 14:53:30 +02:00
int af_outputlen ( af_stream_t * s , int len )
2002-10-01 08:45:08 +02:00
{
2002-10-03 14:02:46 +02:00
int t = s - > input . bps * s - > input . nch ;
2002-10-01 14:53:30 +02:00
af_instance_t * af = s - > first ;
2002-10-03 14:02:46 +02:00
register frac_t mul = { 1 , 1 } ;
2002-10-01 08:45:08 +02:00
// Iterate through all filters
do {
mul . n * = af - > mul . n ;
mul . d * = af - > mul . d ;
af = af - > next ;
} while ( af ) ;
2002-10-03 14:02:46 +02:00
return t * ( ( ( len / t ) * mul . n + 1 ) / mul . d ) ;
2002-10-01 08:45:08 +02:00
}
/* Calculate how long the input to the filters should be to produce a
certain output length , i . e . the return value of this function is
2002-10-03 14:02:46 +02:00
the input length required to produce the output length " len " . The
calculated length is < = the actual length */
2002-10-01 14:53:30 +02:00
int af_inputlen ( af_stream_t * s , int len )
2002-10-01 08:45:08 +02:00
{
2002-10-03 14:02:46 +02:00
int t = s - > input . bps * s - > input . nch ;
2002-10-01 14:53:30 +02:00
af_instance_t * af = s - > first ;
2002-10-03 14:02:46 +02:00
register frac_t mul = { 1 , 1 } ;
2002-10-01 08:45:08 +02:00
// Iterate through all filters
do {
2002-10-03 14:02:46 +02:00
mul . n * = af - > mul . n ;
mul . d * = af - > mul . d ;
2002-10-01 08:45:08 +02:00
af = af - > next ;
} while ( af ) ;
2002-10-03 14:02:46 +02:00
return t * ( ( ( len / t ) * mul . d - 1 ) / mul . n ) ;
2002-10-01 08:45:08 +02:00
}
2002-10-05 13:02:39 +02:00
/* Calculate how long the input IN to the filters should be to produce
a certain output length OUT but with the following three constraints :
1. IN < = max_insize , where max_insize is the maximum possible input
block length
2. OUT < = max_outsize , where max_outsize is the maximum possible
output block length
3. If possible OUT > = len .
Return - 1 in case of error */
int af_calc_insize_constrained ( af_stream_t * s , int len ,
int max_outsize , int max_insize )
{
int t = s - > input . bps * s - > input . nch ;
int in = 0 ;
int out = 0 ;
af_instance_t * af = s - > first ;
register frac_t mul = { 1 , 1 } ;
// Iterate through all filters and calculate total multiplication factor
do {
mul . n * = af - > mul . n ;
mul . d * = af - > mul . d ;
af = af - > next ;
} while ( af ) ;
2002-10-06 00:54:11 +02:00
in = t * ( ( ( len / t ) * mul . d - 1 ) / mul . n ) ;
if ( in > max_insize ) in = t * ( max_insize / t ) ;
2002-10-05 13:02:39 +02:00
// Try to meet constraint nr 3.
2002-10-06 12:42:24 +02:00
while ( ( out = t * ( ( ( in / t + 1 ) * mul . n - 1 ) / mul . d ) ) < = max_outsize & & in < = max_insize ) {
2002-10-06 00:54:11 +02:00
if ( ( t * ( ( ( in / t ) * mul . n ) ) / mul . d ) > = len ) return in ;
2002-10-05 13:02:39 +02:00
in + = t ;
}
2002-10-06 00:54:11 +02:00
// printf("Could no meet constraint nr 3. in=%d out=%d len=%d max_in=%d max_out=%d",
// in,out,len,max_insize,max_outsize);
2002-10-05 13:02:39 +02:00
// Could no meet constraint nr 3.
2002-10-06 00:54:11 +02:00
while ( out > max_outsize | | in > max_insize ) {
2002-10-05 13:02:39 +02:00
in - = t ;
2002-10-06 00:54:11 +02:00
if ( in < t ) return - 1 ; // Input parameters are probably incorrect
2002-10-05 13:02:39 +02:00
out = t * ( ( ( in / t ) * mul . n + 1 ) / mul . d ) ;
}
2002-10-06 00:54:11 +02:00
return in ;
2002-10-05 13:02:39 +02:00
}
2002-10-01 08:45:08 +02:00
/* Helper function called by the macro with the same name this
function should not be called directly */
inline int af_resize_local_buffer ( af_instance_t * af , af_data_t * data )
{
// Calculate new length
2002-10-03 14:02:46 +02:00
register int len = af_lencalc ( af - > mul , data ) ;
2002-10-01 08:45:08 +02:00
mp_msg ( MSGT_AFILTER , MSGL_V , " Reallocating memory in module %s, old len = %i, new len = %i \n " , af - > info - > name , af - > data - > len , len ) ;
// If there is a buffer free it
if ( af - > data - > audio )
free ( af - > data - > audio ) ;
// Create new buffer and check that it is OK
af - > data - > audio = malloc ( len ) ;
if ( ! af - > data - > audio ) {
mp_msg ( MSGT_AFILTER , MSGL_ERR , " Could not allocate memory \n " ) ;
return AF_ERROR ;
}
af - > data - > len = len ;
return AF_OK ;
}