mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-10 09:09:50 +00:00
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
1fd55ec507
commit
bbb86717b3
@ -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
Block a user