[FFmpeg-cvslog] avfilter/af_ladspa: accepts ' ' as command separator too
Paul B Mahol
git at videolan.org
Fri Jan 22 21:44:41 CET 2016
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Jan 22 21:41:11 2016 +0100| [805563c814bf5371e8680936469a2ac23d6c65be] | committer: Paul B Mahol
avfilter/af_ladspa: accepts ' ' as command separator too
Signed-off-by: Paul B Mahol <onemda at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=805563c814bf5371e8680936469a2ac23d6c65be
---
libavfilter/af_ladspa.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/af_ladspa.c b/libavfilter/af_ladspa.c
index 0f895eb..5532dac 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;
More information about the ffmpeg-cvslog
mailing list