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
dc43ad6d
Commit
dc43ad6d
authored
Sep 06, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pngdec: Fix interlaced 1bpp
Fixes Ticket214 Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
738219c9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
pngdec.c
libavcodec/pngdec.c
+1
-3
No files found.
libavcodec/pngdec.c
View file @
dc43ad6d
...
@@ -57,14 +57,12 @@ static void png_put_interlaced_row(uint8_t *dst, int width,
...
@@ -57,14 +57,12 @@ static void png_put_interlaced_row(uint8_t *dst, int width,
dsp_mask
=
png_pass_dsp_mask
[
pass
];
dsp_mask
=
png_pass_dsp_mask
[
pass
];
switch
(
bits_per_pixel
)
{
switch
(
bits_per_pixel
)
{
case
1
:
case
1
:
/* we must initialize the line to zero before writing to it */
if
(
pass
==
0
)
memset
(
dst
,
0
,
(
width
+
7
)
>>
3
);
src_x
=
0
;
src_x
=
0
;
for
(
x
=
0
;
x
<
width
;
x
++
)
{
for
(
x
=
0
;
x
<
width
;
x
++
)
{
j
=
(
x
&
7
);
j
=
(
x
&
7
);
if
((
dsp_mask
<<
j
)
&
0x80
)
{
if
((
dsp_mask
<<
j
)
&
0x80
)
{
b
=
(
src
[
src_x
>>
3
]
>>
(
7
-
(
src_x
&
7
)))
&
1
;
b
=
(
src
[
src_x
>>
3
]
>>
(
7
-
(
src_x
&
7
)))
&
1
;
dst
[
x
>>
3
]
&=
0xFF7F
>>
j
;
dst
[
x
>>
3
]
|=
b
<<
(
7
-
j
);
dst
[
x
>>
3
]
|=
b
<<
(
7
-
j
);
}
}
if
((
mask
<<
j
)
&
0x80
)
if
((
mask
<<
j
)
&
0x80
)
...
...
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