Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
a2c07463
Commit
a2c07463
authored
Feb 14, 2020
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_lut3d: use av_fopen_utf8()
parent
b6e9c23d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vf_lut3d.c
libavfilter/vf_lut3d.c
+2
-2
No files found.
libavfilter/vf_lut3d.c
View file @
a2c07463
...
...
@@ -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
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment