Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
7f737879
Commit
7f737879
authored
Aug 27, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Aug 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Implement conversion from 48bppRGB to 32bppBGRA.
parent
363a0fdd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
1 deletion
+48
-1
converter.c
dlls/windowscodecs/converter.c
+47
-1
regsvr.c
dlls/windowscodecs/regsvr.c
+1
-0
No files found.
dlls/windowscodecs/converter.c
View file @
7f737879
...
...
@@ -49,7 +49,8 @@ enum pixelformat {
format_16bppBGR565
,
format_24bppBGR
,
format_32bppBGR
,
format_32bppBGRA
format_32bppBGRA
,
format_48bppRGB
,
};
typedef
HRESULT
(
*
copyfunc
)(
struct
FormatConverter
*
This
,
const
WICRect
*
prc
,
...
...
@@ -581,6 +582,50 @@ static HRESULT copypixels_to_32bppBGRA(struct FormatConverter *This, const WICRe
if
(
prc
)
return
IWICBitmapSource_CopyPixels
(
This
->
source
,
prc
,
cbStride
,
cbBufferSize
,
pbBuffer
);
return
S_OK
;
case
format_48bppRGB
:
if
(
prc
)
{
HRESULT
res
;
UINT
x
,
y
;
BYTE
*
srcdata
;
UINT
srcstride
,
srcdatasize
;
const
BYTE
*
srcrow
;
const
BYTE
*
srcpixel
;
BYTE
*
dstrow
;
DWORD
*
dstpixel
;
srcstride
=
6
*
prc
->
Width
;
srcdatasize
=
srcstride
*
prc
->
Height
;
srcdata
=
HeapAlloc
(
GetProcessHeap
(),
0
,
srcdatasize
);
if
(
!
srcdata
)
return
E_OUTOFMEMORY
;
res
=
IWICBitmapSource_CopyPixels
(
This
->
source
,
prc
,
srcstride
,
srcdatasize
,
srcdata
);
if
(
SUCCEEDED
(
res
))
{
srcrow
=
srcdata
;
dstrow
=
pbBuffer
;
for
(
y
=
0
;
y
<
prc
->
Height
;
y
++
)
{
srcpixel
=
srcrow
;
dstpixel
=
(
DWORD
*
)
dstrow
;
for
(
x
=
0
;
x
<
prc
->
Width
;
x
++
)
{
BYTE
red
,
green
,
blue
;
red
=
*
srcpixel
++
;
srcpixel
++
;
green
=
*
srcpixel
++
;
srcpixel
++
;
blue
=
*
srcpixel
++
;
srcpixel
++
;
*
dstpixel
++=
0xff000000
|
red
<<
16
|
green
<<
8
|
blue
;
}
srcrow
+=
srcstride
;
dstrow
+=
cbStride
;
}
}
HeapFree
(
GetProcessHeap
(),
0
,
srcdata
);
return
res
;
}
return
S_OK
;
default:
return
WINCODEC_ERR_UNSUPPORTEDOPERATION
;
}
...
...
@@ -616,6 +661,7 @@ static const struct pixelformatinfo supported_formats[] = {
{
format_24bppBGR
,
&
GUID_WICPixelFormat24bppBGR
,
NULL
},
{
format_32bppBGR
,
&
GUID_WICPixelFormat32bppBGR
,
copypixels_to_32bppBGR
},
{
format_32bppBGRA
,
&
GUID_WICPixelFormat32bppBGRA
,
copypixels_to_32bppBGRA
},
{
format_48bppRGB
,
&
GUID_WICPixelFormat48bppRGB
,
NULL
},
{
0
}
};
...
...
dlls/windowscodecs/regsvr.c
View file @
7f737879
...
...
@@ -931,6 +931,7 @@ static GUID const * const converter_formats[] = {
&
GUID_WICPixelFormat24bppBGR
,
&
GUID_WICPixelFormat32bppBGR
,
&
GUID_WICPixelFormat32bppBGRA
,
&
GUID_WICPixelFormat48bppRGB
,
NULL
};
...
...
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