From 805563c814bf5371e8680936469a2ac23d6c65be Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 22 Jan 2016 21:41:11 +0100 Subject: avfilter/af_ladspa: accepts ' ' as command separator too Signed-off-by: Paul B Mahol --- libavfilter/af_ladspa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/af_ladspa.c') 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; -- cgit v1.2.3