mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-02-04 14:30:55 +08:00
thumbnail: fix error code in case of invalid args.
This commit is contained in:
@@ -54,7 +54,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
|
||||
thumb->n_frames = 0;
|
||||
av_log(ctx, AV_LOG_ERROR,
|
||||
"Invalid number of frames specified (minimum is 2).\n");
|
||||
return AVERROR(ENOMEM);
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
}
|
||||
thumb->frames = av_calloc(thumb->n_frames, sizeof(*thumb->frames));
|
||||
|
||||
Reference in New Issue
Block a user