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
047a027d
Commit
047a027d
authored
Apr 12, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/hue: copy alpha plane too
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
72ad0d56
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
vf_hue.c
libavfilter/vf_hue.c
+6
-1
No files found.
libavfilter/vf_hue.c
View file @
047a027d
...
...
@@ -282,10 +282,15 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inpic)
hue
->
var_values
[
VAR_N
]
+=
1
;
if
(
!
direct
)
if
(
!
direct
)
{
av_image_copy_plane
(
outpic
->
data
[
0
],
outpic
->
linesize
[
0
],
inpic
->
data
[
0
],
inpic
->
linesize
[
0
],
inlink
->
w
,
inlink
->
h
);
if
(
inpic
->
data
[
3
])
av_image_copy_plane
(
outpic
->
data
[
3
],
outpic
->
linesize
[
3
],
inpic
->
data
[
3
],
inpic
->
linesize
[
3
],
inlink
->
w
,
inlink
->
h
);
}
process_chrominance
(
outpic
->
data
[
1
],
outpic
->
data
[
2
],
outpic
->
linesize
[
1
],
inpic
->
data
[
1
],
inpic
->
data
[
2
],
inpic
->
linesize
[
1
],
...
...
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