From b1cdf7ba57dc3cf22e7da97c37c9a5748f58040d Mon Sep 17 00:00:00 2001 From: anders Date: Thu, 2 Jan 2003 03:00:44 +0000 Subject: sig 11 fix in reinit and resample + spelling error fixes git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8712 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libaf/af_channels.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libaf/af_channels.c') diff --git a/libaf/af_channels.c b/libaf/af_channels.c index e5f54ceb54..c1dcf0f130 100644 --- a/libaf/af_channels.c +++ b/libaf/af_channels.c @@ -20,7 +20,7 @@ typedef struct af_channels_s{ }af_channels_t; // Local function for copying data -void copy(void* in, void* out, int ins, int inos,int outs, int outos, int len, int bps) +static void copy(void* in, void* out, int ins, int inos,int outs, int outos, int len, int bps) { switch(bps){ case 1:{ @@ -86,7 +86,7 @@ static int check_routes(af_channels_t* s, int nin, int nout) { int i; if((s->nr < 1) || (s->nr > AF_NCH)){ - af_msg(AF_MSG_ERROR,"[channels] The number of routing pairs musst be" + af_msg(AF_MSG_ERROR,"[channels] The number of routing pairs must be" " between 1 and %i. Current value is %i\n",AF_NCH,s->nr); return AF_ERROR; } @@ -149,14 +149,14 @@ static int control(struct af_instance_s* af, int cmd, void* arg) int ch = 0; // Sanity check if((s->nr < 1) || (s->nr > AF_NCH)){ - af_msg(AF_MSG_ERROR,"[channels] The number of routing pairs musst be" + af_msg(AF_MSG_ERROR,"[channels] The number of routing pairs must be" " between 1 and %i. Current value is %i\n",AF_NCH,s->nr); } s->router = 1; // Scan for pairs on commandline while((*cp == ':') && (ch < s->nr)){ sscanf(cp, ":%i:%i%n" ,&s->route[ch][FR], &s->route[ch][TO], &n); - af_msg(AF_MSG_DEBUG0,"[channels] Routing from channel %i to" + af_msg(AF_MSG_VERBOSE,"[channels] Routing from channel %i to" " channel %i\n",s->route[ch][FR],s->route[ch][TO]); cp = &cp[n]; ch++; -- cgit v1.2.3