Commit a2c07463 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_lut3d: use av_fopen_utf8()

parent b6e9c23d
......@@ -805,7 +805,7 @@ static av_cold int lut3d_init(AVFilterContext *ctx)
return set_identity_matrix(ctx, 32);
}
f = fopen(lut3d->file, "r");
f = av_fopen_utf8(lut3d->file, "r");
if (!f) {
ret = AVERROR(errno);
av_log(ctx, AV_LOG_ERROR, "%s: %s\n", lut3d->file, av_err2str(ret));
......@@ -1588,7 +1588,7 @@ static av_cold int lut1d_init(AVFilterContext *ctx)
return 0;
}
f = fopen(lut1d->file, "r");
f = av_fopen_utf8(lut1d->file, "r");
if (!f) {
ret = AVERROR(errno);
av_log(ctx, AV_LOG_ERROR, "%s: %s\n", lut1d->file, av_err2str(ret));
......
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