Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2016-01-22 23:41:11 +0300
committerPaul B Mahol <onemda@gmail.com>2016-01-22 23:41:11 +0300
commit805563c814bf5371e8680936469a2ac23d6c65be (patch)
tree2a928ff563d8f6420389b285d0dd3ccc7d5f8726 /libavfilter/af_ladspa.c
parentce855bf43bcb3e217266653281db63c94e34c700 (diff)
avfilter/af_ladspa: accepts ' ' as command separator too
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/af_ladspa.c')
-rw-r--r--libavfilter/af_ladspa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_ladspa.c b/libavfilter/af_ladspa.c
index 0f895eb1bf..5532dacd73 100644
--- a/libavfilter/af_ladspa.c
+++ b/libavfilter/af_ladspa.c
@@ -546,7 +546,7 @@ static av_cold int init(AVFilterContext *ctx)
LADSPA_Data val;
int ret;
- if (!(arg = av_strtok(p, "|", &saveptr)))
+ if (!(arg = av_strtok(p, " |", &saveptr)))
break;
p = NULL;