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
d19499c7
Commit
d19499c7
authored
Jul 08, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_gradfun: don't store two pointers to one AVFilterBufferRef.
parent
0fe010a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
vf_gradfun.c
libavfilter/vf_gradfun.c
+2
-3
No files found.
libavfilter/vf_gradfun.c
View file @
d19499c7
...
...
@@ -191,7 +191,7 @@ static void start_frame(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
outpicref
->
video
->
w
=
outlink
->
w
;
outpicref
->
video
->
h
=
outlink
->
h
;
}
else
outpicref
=
inpicref
;
outpicref
=
avfilter_ref_buffer
(
inpicref
,
~
0
)
;
outlink
->
out_buf
=
outpicref
;
ff_start_frame
(
outlink
,
avfilter_ref_buffer
(
outpicref
,
~
0
));
...
...
@@ -226,8 +226,7 @@ static void end_frame(AVFilterLink *inlink)
ff_draw_slice
(
outlink
,
0
,
inlink
->
h
,
1
);
ff_end_frame
(
outlink
);
avfilter_unref_buffer
(
inpic
);
if
(
outpic
!=
inpic
)
avfilter_unref_buffer
(
outpic
);
avfilter_unref_buffer
(
outpic
);
}
AVFilter
avfilter_vf_gradfun
=
{
...
...
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