mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
vf_psnr/ssim: don't crash if stats_file is NULL.
This commit is contained in:
parent
a60539bb5e
commit
0c7b44a01c
@ -193,17 +193,19 @@ static av_cold int init(AVFilterContext *ctx)
|
||||
s->min_mse = +INFINITY;
|
||||
s->max_mse = -INFINITY;
|
||||
|
||||
if (!strcmp(s->stats_file_str, "-")) {
|
||||
s->stats_file = stdout;
|
||||
} else if (s->stats_file_str) {
|
||||
s->stats_file = fopen(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);
|
||||
return err;
|
||||
if (s->stats_file_str) {
|
||||
if (!strcmp(s->stats_file_str, "-")) {
|
||||
s->stats_file = stdout;
|
||||
} else {
|
||||
s->stats_file = fopen(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);
|
||||
return err;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -223,17 +223,19 @@ static av_cold int init(AVFilterContext *ctx)
|
||||
{
|
||||
SSIMContext *s = ctx->priv;
|
||||
|
||||
if (!strcmp(s->stats_file_str, "-")) {
|
||||
s->stats_file = stdout;
|
||||
} else if (s->stats_file_str) {
|
||||
s->stats_file = fopen(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);
|
||||
return err;
|
||||
if (s->stats_file_str) {
|
||||
if (!strcmp(s->stats_file_str, "-")) {
|
||||
s->stats_file = stdout;
|
||||
} else {
|
||||
s->stats_file = fopen(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);
|
||||
return err;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user