From 66f4e56389d97b61a4a17325201643ef6bd87e37 Mon Sep 17 00:00:00 2001 From: anders Date: Tue, 12 Nov 2002 12:33:56 +0000 Subject: New features: -- Support for runtime cpu detection -- Stand alone compile of libaf -- Unlimited number of channels (compiletime switch) -- Sample format defined by bit-fields -- New formats: float, A-Law and mu-law -- Format conversion set in human readable format i.e. format=4:us_be to set 32 bit unsigned big endian output -- Format reporting in human readable format -- Volume control has only one parameter for setting the volume i.e. volume=-10.0:1:0:1 to set atenuation = -10dB git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8168 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libaf/af_delay.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'libaf/af_delay.c') diff --git a/libaf/af_delay.c b/libaf/af_delay.c index 08c33499a8..f19dc1934b 100644 --- a/libaf/af_delay.c +++ b/libaf/af_delay.c @@ -7,9 +7,6 @@ #include #include -#include "../config.h" -#include "../mp_msg.h" - #include "af.h" // Data for specific instances of this filter @@ -43,7 +40,7 @@ static int control(struct af_instance_s* af, int cmd, void* arg) int lt = s->len; // Old len if(*((float*)arg) > 30 || *((float*)arg) < 0){ - mp_msg(MSGT_AFILTER,MSGL_ERR,"Error setting delay length in af_delay. Delay must be between 0s and 30s\n"); + af_msg(AF_MSG_ERROR,"Error setting delay length in af_delay. Delay must be between 0s and 30s\n"); s->len=0; s->tlen=0.0; af->delay=0.0; @@ -55,8 +52,8 @@ static int control(struct af_instance_s* af, int cmd, void* arg) af->delay = s->tlen * 1000.0; s->len = af->data->rate*af->data->bps*af->data->nch*(int)s->tlen; s->buf = malloc(s->len); - mp_msg(MSGT_AFILTER,MSGL_DBG2,"[delay] Delaying audio output by %0.2fs\n",s->tlen); - mp_msg(MSGT_AFILTER,MSGL_DBG3,"[delay] Delaying audio output by %i bytes\n",s->len); + af_msg(AF_MSG_DEBUG0,"[delay] Delaying audio output by %0.2fs\n",s->tlen); + af_msg(AF_MSG_DEBUG1,"[delay] Delaying audio output by %i bytes\n",s->len); // Out of memory error if(!s->buf){ -- cgit v1.2.3