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
d0b22405
Commit
d0b22405
authored
Dec 05, 2014
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_frei0r: do not increment string if it reached the end
Bug-Id: 778 CC: libav-stable@libav.org
parent
90411b33
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vf_frei0r.c
libavfilter/vf_frei0r.c
+2
-1
No files found.
libavfilter/vf_frei0r.c
View file @
d0b22405
...
...
@@ -149,6 +149,7 @@ static int set_params(AVFilterContext *ctx, const char *params)
if
(
*
params
)
{
if
(
!
(
param
=
av_get_token
(
&
params
,
"|"
)))
return
AVERROR
(
ENOMEM
);
if
(
*
params
)
params
++
;
/* skip ':' */
ret
=
set_param
(
ctx
,
info
,
i
,
param
);
av_free
(
param
);
...
...
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