Commit a87527ad authored by Clément Bœsch's avatar Clément Bœsch

avfilter/ass: make sure the log level are in available range

parent 7d43fbe3
......@@ -80,7 +80,9 @@ static const int ass_libavfilter_log_level_map[] = {
static void ass_log(int ass_level, const char *fmt, va_list args, void *ctx)
{
int level = ass_libavfilter_log_level_map[ass_level];
const int ass_level_clip = av_clip(ass_level, 0,
FF_ARRAY_ELEMS(ass_libavfilter_log_level_map) - 1);
const int level = ass_libavfilter_log_level_map[ass_level_clip];
av_vlog(ctx, level, fmt, args);
av_log(ctx, level, "\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment