summaryrefslogtreecommitdiffstats
path: root/libaf/af_channels.c
diff options
context:
space:
mode:
authoranders <anders@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-02 03:00:44 +0000
committeranders <anders@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-02 03:00:44 +0000
commitb1cdf7ba57dc3cf22e7da97c37c9a5748f58040d (patch)
tree7bbb72cad079024cf9926cc14bfc891be9615624 /libaf/af_channels.c
parent58bf4d5557863217780dccf316c6a99ae44b5502 (diff)
downloadmpv-b1cdf7ba57dc3cf22e7da97c37c9a5748f58040d.tar.bz2
mpv-b1cdf7ba57dc3cf22e7da97c37c9a5748f58040d.tar.xz
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
Diffstat (limited to 'libaf/af_channels.c')
-rw-r--r--libaf/af_channels.c8
1 files changed, 4 insertions, 4 deletions
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++;