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
295ce83e
Commit
295ce83e
authored
Apr 16, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/il: remove pointless store
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
9bd1b1c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
vf_il.c
libavfilter/vf_il.c
+3
-4
No files found.
libavfilter/vf_il.c
View file @
295ce83e
...
...
@@ -151,7 +151,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
IlContext
*
il
=
inlink
->
dst
->
priv
;
AVFilterLink
*
outlink
=
inlink
->
dst
->
outputs
[
0
];
AVFrame
*
out
;
int
ret
,
comp
;
int
comp
;
out
=
ff_get_video_buffer
(
outlink
,
outlink
->
w
,
outlink
->
h
);
if
(
!
out
)
{
...
...
@@ -173,16 +173,15 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
}
if
(
il
->
has_alpha
)
{
int
comp
=
il
->
nb_planes
-
1
;
comp
=
il
->
nb_planes
-
1
;
interleave
(
out
->
data
[
comp
],
inpicref
->
data
[
comp
],
il
->
linesize
[
comp
],
inlink
->
h
,
out
->
linesize
[
comp
],
inpicref
->
linesize
[
comp
],
il
->
alpha_mode
,
il
->
alpha_swap
);
}
ret
=
ff_filter_frame
(
outlink
,
out
);
av_frame_free
(
&
inpicref
);
return
ret
;
return
ff_filter_frame
(
outlink
,
out
)
;
}
static
const
AVFilterPad
inputs
[]
=
{
...
...
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