Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
785f84a6
Commit
785f84a6
authored
Jun 14, 2011
by
Vincent Povirk
Committed by
Alexandre Julliard
Jun 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Treat unspecified extra channels as alpha data.
parent
8153674c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
tiffformat.c
dlls/windowscodecs/tiffformat.c
+2
-7
No files found.
dlls/windowscodecs/tiffformat.c
View file @
785f84a6
...
@@ -347,12 +347,10 @@ static HRESULT tiff_get_decode_info(TIFF *tiff, tiff_decode_info *decode_info)
...
@@ -347,12 +347,10 @@ static HRESULT tiff_get_decode_info(TIFF *tiff, tiff_decode_info *decode_info)
else
else
switch
(
extra_samples
[
0
])
switch
(
extra_samples
[
0
])
{
{
case
0
:
/* Unspecified data */
decode_info
->
format
=
&
GUID_WICPixelFormat32bppBGR
;
break
;
case
1
:
/* Associated (pre-multiplied) alpha data */
case
1
:
/* Associated (pre-multiplied) alpha data */
decode_info
->
format
=
&
GUID_WICPixelFormat32bppPBGRA
;
decode_info
->
format
=
&
GUID_WICPixelFormat32bppPBGRA
;
break
;
break
;
case
0
:
/* Unspecified data */
case
2
:
/* Unassociated alpha data */
case
2
:
/* Unassociated alpha data */
decode_info
->
format
=
&
GUID_WICPixelFormat32bppBGRA
;
decode_info
->
format
=
&
GUID_WICPixelFormat32bppBGRA
;
break
;
break
;
...
@@ -367,13 +365,10 @@ static HRESULT tiff_get_decode_info(TIFF *tiff, tiff_decode_info *decode_info)
...
@@ -367,13 +365,10 @@ static HRESULT tiff_get_decode_info(TIFF *tiff, tiff_decode_info *decode_info)
else
else
switch
(
extra_samples
[
0
])
switch
(
extra_samples
[
0
])
{
{
case
0
:
/* Unspecified data */
/* decode_info->format = &GUID_WICPixelFormat64bppRGB; */
FIXME
(
"64-bit RGB is unsupported
\n
"
);
return
E_FAIL
;
case
1
:
/* Associated (pre-multiplied) alpha data */
case
1
:
/* Associated (pre-multiplied) alpha data */
decode_info
->
format
=
&
GUID_WICPixelFormat64bppPRGBA
;
decode_info
->
format
=
&
GUID_WICPixelFormat64bppPRGBA
;
break
;
break
;
case
0
:
/* Unspecified data */
case
2
:
/* Unassociated alpha data */
case
2
:
/* Unassociated alpha data */
decode_info
->
format
=
&
GUID_WICPixelFormat64bppRGBA
;
decode_info
->
format
=
&
GUID_WICPixelFormat64bppRGBA
;
break
;
break
;
...
...
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