mirror of https://git.ffmpeg.org/ffmpeg.git
vf_frei0r: do not increment string if it reached the end
Bug-Id: 778 CC: libav-stable@libav.org
This commit is contained in:
parent
90411b333d
commit
d0b224054f
|
@ -149,6 +149,7 @@ static int set_params(AVFilterContext *ctx, const char *params)
|
|||
if (*params) {
|
||||
if (!(param = av_get_token(¶ms, "|")))
|
||||
return AVERROR(ENOMEM);
|
||||
if (*params)
|
||||
params++; /* skip ':' */
|
||||
ret = set_param(ctx, info, i, param);
|
||||
av_free(param);
|
||||
|
|
Loading…
Reference in New Issue