Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
0aa75a85
Commit
0aa75a85
authored
Sep 28, 2023
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_zscale: fix adding >8 bit alpha plane
parent
086c2809
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
vf_zscale.c
libavfilter/vf_zscale.c
+10
-2
No files found.
libavfilter/vf_zscale.c
View file @
0aa75a85
...
...
@@ -901,14 +901,22 @@ static int filter_frame(AVFilterLink *link, AVFrame *in)
int
x
,
y
;
if
(
odesc
->
flags
&
AV_PIX_FMT_FLAG_FLOAT
)
{
for
(
y
=
0
;
y
<
out
->
height
;
y
++
)
{
const
ptrdiff_t
row
=
y
*
out
->
linesize
[
3
];
for
(
x
=
0
;
x
<
out
->
width
;
x
++
)
{
AV_WN32
(
out
->
data
[
3
]
+
x
*
odesc
->
comp
[
3
].
step
+
y
*
out
->
linesize
[
3
]
,
AV_WN32
(
out
->
data
[
3
]
+
x
*
odesc
->
comp
[
3
].
step
+
row
,
av_float2int
(
1
.
0
f
));
}
}
}
else
{
}
else
if
(
s
->
dst_format
.
depth
==
8
)
{
for
(
y
=
0
;
y
<
outlink
->
h
;
y
++
)
memset
(
out
->
data
[
3
]
+
y
*
out
->
linesize
[
3
],
0xff
,
outlink
->
w
);
}
else
{
const
uint16_t
max
=
(
1
<<
s
->
dst_format
.
depth
)
-
1
;
for
(
y
=
0
;
y
<
outlink
->
h
;
y
++
)
{
const
ptrdiff_t
row
=
y
*
out
->
linesize
[
3
];
for
(
x
=
0
;
x
<
out
->
width
;
x
++
)
AV_WN16
(
out
->
data
[
3
]
+
x
*
odesc
->
comp
[
3
].
step
+
row
,
max
);
}
}
}
}
else
{
...
...
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