avfilter/vf_shuffleframes: improve error message

This commit is contained in:
Paul B Mahol 2019-10-20 11:39:24 +02:00
parent 31aafdac24
commit 824b026d91

View File

@ -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);
}