mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02: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) {
|
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);
|
av_free(mapping);
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user