lavfi/vf_vmafmotion: use av_err2str to simplify code

No need to explicitly specify the buffer here as it is only
ever passed to av_log, so av_err2str can be used.
This commit is contained in:
Marvin Scholz 2024-09-08 20:02:34 +02:00
parent 29d7ed089e
commit e93f20c017

View File

@ -318,10 +318,8 @@ static av_cold int init(AVFilterContext *ctx)
s->stats_file = avpriv_fopen_utf8(s->stats_file_str, "w");
if (!s->stats_file) {
int err = AVERROR(errno);
char buf[128];
av_strerror(err, buf, sizeof(buf));
av_log(ctx, AV_LOG_ERROR, "Could not open stats file %s: %s\n",
s->stats_file_str, buf);
s->stats_file_str, av_err2str(err));
return err;
}
}