summaryrefslogtreecommitdiffstats
path: root/audio/filter/af_pan.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-01-24 21:30:15 +0100
committerwm4 <wm4@nowhere>2014-01-24 21:30:15 +0100
commit39b40e1ffb1e3fcf81ec4a4afe88c974adb2efcd (patch)
tree006930f584e55ca721e587199b359c9be548ac04 /audio/filter/af_pan.c
parentf46e188ec5952693c08d0572558a13f9a92504f8 (diff)
downloadmpv-39b40e1ffb1e3fcf81ec4a4afe88c974adb2efcd.tar.bz2
mpv-39b40e1ffb1e3fcf81ec4a4afe88c974adb2efcd.tar.xz
audio/filter: remove redundant log message prefixes
These are now appended automatically, so you'd get them twice before this commit.
Diffstat (limited to 'audio/filter/af_pan.c')
-rw-r--r--audio/filter/af_pan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/filter/af_pan.c b/audio/filter/af_pan.c
index 081a8f72d0..01b0575ae3 100644
--- a/audio/filter/af_pan.c
+++ b/audio/filter/af_pan.c
@@ -80,7 +80,7 @@ static int control(struct af_instance* af, int cmd, void* arg)
// Sanity check
if(((int*)arg)[0] <= 0 || ((int*)arg)[0] > AF_NCH){
- MP_ERR(af, "[pan] The number of output channels must be"
+ MP_ERR(af, "The number of output channels must be"
" between 1 and %i. Current value is %i\n",AF_NCH,((int*)arg)[0]);
return AF_ERROR;
}
@@ -161,7 +161,7 @@ static int af_open(struct af_instance* af){
j = 0; k = 0;
while(cp && k < AF_NCH){
sscanf(cp, "%f%n" , &s->level[j][k], &n);
- MP_VERBOSE(af, "[pan] Pan level from channel %i to"
+ MP_VERBOSE(af, "Pan level from channel %i to"
" channel %i = %f\n",k,j,s->level[j][k]);
cp =&cp[n];
j++;