1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avfilter/af_ladspa: accepts ' ' as command separator too

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol
2016-01-22 21:41:11 +01:00
parent ce855bf43b
commit 805563c814

View File

@@ -546,7 +546,7 @@ static av_cold int init(AVFilterContext *ctx)
LADSPA_Data val; LADSPA_Data val;
int ret; int ret;
if (!(arg = av_strtok(p, "|", &saveptr))) if (!(arg = av_strtok(p, " |", &saveptr)))
break; break;
p = NULL; p = NULL;