Commit 805563c8 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_ladspa: accepts ' ' as command separator too

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent ce855bf4
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment