mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-23 11:39:49 +00:00
avfilter/vf_shuffleframes: improve error message
This commit is contained in:
parent
31aafdac24
commit
824b026d91
@ -69,7 +69,7 @@ static av_cold int init(AVFilterContext *ctx)
|
||||
}
|
||||
|
||||
if (s->map[n] < -1 || s->map[n] >= nb_items) {
|
||||
av_log(ctx, AV_LOG_ERROR, "Index out of range.\n");
|
||||
av_log(ctx, AV_LOG_ERROR, "Index %d out of range: [-1, %d].\n", s->map[n], nb_items - 1);
|
||||
av_free(mapping);
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user