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
2ff573c9
Commit
2ff573c9
authored
Nov 29, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Nov 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Standardize the COM usage in tgaformat.c.
parent
34fc8902
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
18 deletions
+23
-18
tgaformat.c
dlls/windowscodecs/tgaformat.c
+23
-18
No files found.
dlls/windowscodecs/tgaformat.c
View file @
2ff573c9
...
...
@@ -101,8 +101,8 @@ typedef struct {
#include "poppack.h"
typedef
struct
{
const
IWICBitmapDecoderVtbl
*
lpVtbl
;
const
IWICBitmapFrameDecodeVtbl
*
lpFrameVtbl
;
IWICBitmapDecoder
IWICBitmapDecoder_iface
;
IWICBitmapFrameDecode
IWICBitmapFrameDecode_iface
;
LONG
ref
;
BOOL
initialized
;
IStream
*
stream
;
...
...
@@ -120,15 +120,20 @@ typedef struct {
CRITICAL_SECTION
lock
;
}
TgaDecoder
;
static
inline
TgaDecoder
*
decoder_from_frame
(
IWICBitmapFrameDecode
*
iface
)
static
inline
TgaDecoder
*
impl_from_IWICBitmapDecoder
(
IWICBitmapDecoder
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
TgaDecoder
,
lpFrameVtbl
);
return
CONTAINING_RECORD
(
iface
,
TgaDecoder
,
IWICBitmapDecoder_iface
);
}
static
inline
TgaDecoder
*
impl_from_IWICBitmapFrameDecode
(
IWICBitmapFrameDecode
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
TgaDecoder
,
IWICBitmapFrameDecode_iface
);
}
static
HRESULT
WINAPI
TgaDecoder_QueryInterface
(
IWICBitmapDecoder
*
iface
,
REFIID
iid
,
void
**
ppv
)
{
TgaDecoder
*
This
=
(
TgaDecoder
*
)
iface
;
TgaDecoder
*
This
=
impl_from_IWICBitmapDecoder
(
iface
)
;
TRACE
(
"(%p,%s,%p)
\n
"
,
iface
,
debugstr_guid
(
iid
),
ppv
);
if
(
!
ppv
)
return
E_INVALIDARG
;
...
...
@@ -149,7 +154,7 @@ static HRESULT WINAPI TgaDecoder_QueryInterface(IWICBitmapDecoder *iface, REFIID
static
ULONG
WINAPI
TgaDecoder_AddRef
(
IWICBitmapDecoder
*
iface
)
{
TgaDecoder
*
This
=
(
TgaDecoder
*
)
iface
;
TgaDecoder
*
This
=
impl_from_IWICBitmapDecoder
(
iface
)
;
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p) refcount=%u
\n
"
,
iface
,
ref
);
...
...
@@ -159,7 +164,7 @@ static ULONG WINAPI TgaDecoder_AddRef(IWICBitmapDecoder *iface)
static
ULONG
WINAPI
TgaDecoder_Release
(
IWICBitmapDecoder
*
iface
)
{
TgaDecoder
*
This
=
(
TgaDecoder
*
)
iface
;
TgaDecoder
*
This
=
impl_from_IWICBitmapDecoder
(
iface
)
;
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) refcount=%u
\n
"
,
iface
,
ref
);
...
...
@@ -187,7 +192,7 @@ static HRESULT WINAPI TgaDecoder_QueryCapability(IWICBitmapDecoder *iface, IStre
static
HRESULT
WINAPI
TgaDecoder_Initialize
(
IWICBitmapDecoder
*
iface
,
IStream
*
pIStream
,
WICDecodeOptions
cacheOptions
)
{
TgaDecoder
*
This
=
(
TgaDecoder
*
)
iface
;
TgaDecoder
*
This
=
impl_from_IWICBitmapDecoder
(
iface
)
;
HRESULT
hr
=
S_OK
;
DWORD
bytesread
;
LARGE_INTEGER
seek
;
...
...
@@ -388,7 +393,7 @@ static HRESULT WINAPI TgaDecoder_GetFrameCount(IWICBitmapDecoder *iface,
static
HRESULT
WINAPI
TgaDecoder_GetFrame
(
IWICBitmapDecoder
*
iface
,
UINT
index
,
IWICBitmapFrameDecode
**
ppIBitmapFrame
)
{
TgaDecoder
*
This
=
(
TgaDecoder
*
)
iface
;
TgaDecoder
*
This
=
impl_from_IWICBitmapDecoder
(
iface
)
;
TRACE
(
"(%p,%p)
\n
"
,
iface
,
ppIBitmapFrame
);
if
(
!
This
->
initialized
)
return
WINCODEC_ERR_NOTINITIALIZED
;
...
...
@@ -396,7 +401,7 @@ static HRESULT WINAPI TgaDecoder_GetFrame(IWICBitmapDecoder *iface,
if
(
index
!=
0
)
return
E_INVALIDARG
;
IWICBitmapDecoder_AddRef
(
iface
);
*
ppIBitmapFrame
=
(
IWICBitmapFrameDecode
*
)
&
This
->
lpFrameVtbl
;
*
ppIBitmapFrame
=
&
This
->
IWICBitmapFrameDecode_iface
;
return
S_OK
;
}
...
...
@@ -443,20 +448,20 @@ static HRESULT WINAPI TgaDecoder_Frame_QueryInterface(IWICBitmapFrameDecode *ifa
static
ULONG
WINAPI
TgaDecoder_Frame_AddRef
(
IWICBitmapFrameDecode
*
iface
)
{
TgaDecoder
*
This
=
decoder_from_fram
e
(
iface
);
TgaDecoder
*
This
=
impl_from_IWICBitmapFrameDecod
e
(
iface
);
return
IUnknown_AddRef
((
IUnknown
*
)
This
);
}
static
ULONG
WINAPI
TgaDecoder_Frame_Release
(
IWICBitmapFrameDecode
*
iface
)
{
TgaDecoder
*
This
=
decoder_from_fram
e
(
iface
);
TgaDecoder
*
This
=
impl_from_IWICBitmapFrameDecod
e
(
iface
);
return
IUnknown_Release
((
IUnknown
*
)
This
);
}
static
HRESULT
WINAPI
TgaDecoder_Frame_GetSize
(
IWICBitmapFrameDecode
*
iface
,
UINT
*
puiWidth
,
UINT
*
puiHeight
)
{
TgaDecoder
*
This
=
decoder_from_fram
e
(
iface
);
TgaDecoder
*
This
=
impl_from_IWICBitmapFrameDecod
e
(
iface
);
*
puiWidth
=
This
->
header
.
width
;
*
puiHeight
=
This
->
header
.
height
;
...
...
@@ -469,7 +474,7 @@ static HRESULT WINAPI TgaDecoder_Frame_GetSize(IWICBitmapFrameDecode *iface,
static
HRESULT
WINAPI
TgaDecoder_Frame_GetPixelFormat
(
IWICBitmapFrameDecode
*
iface
,
WICPixelFormatGUID
*
pPixelFormat
)
{
TgaDecoder
*
This
=
decoder_from_fram
e
(
iface
);
TgaDecoder
*
This
=
impl_from_IWICBitmapFrameDecod
e
(
iface
);
int
attribute_bitcount
;
byte
attribute_type
;
...
...
@@ -576,7 +581,7 @@ static HRESULT WINAPI TgaDecoder_Frame_GetResolution(IWICBitmapFrameDecode *ifac
static
HRESULT
WINAPI
TgaDecoder_Frame_CopyPalette
(
IWICBitmapFrameDecode
*
iface
,
IWICPalette
*
pIPalette
)
{
TgaDecoder
*
This
=
decoder_from_fram
e
(
iface
);
TgaDecoder
*
This
=
impl_from_IWICBitmapFrameDecod
e
(
iface
);
HRESULT
hr
=
S_OK
;
WICColor
colors
[
256
],
*
color
;
BYTE
*
colormap_data
;
...
...
@@ -863,7 +868,7 @@ static HRESULT TgaDecoder_ReadImage(TgaDecoder *This)
static
HRESULT
WINAPI
TgaDecoder_Frame_CopyPixels
(
IWICBitmapFrameDecode
*
iface
,
const
WICRect
*
prc
,
UINT
cbStride
,
UINT
cbBufferSize
,
BYTE
*
pbBuffer
)
{
TgaDecoder
*
This
=
decoder_from_fram
e
(
iface
);
TgaDecoder
*
This
=
impl_from_IWICBitmapFrameDecod
e
(
iface
);
HRESULT
hr
;
TRACE
(
"(%p,%p,%u,%u,%p)
\n
"
,
iface
,
prc
,
cbStride
,
cbBufferSize
,
pbBuffer
);
...
...
@@ -929,8 +934,8 @@ HRESULT TgaDecoder_CreateInstance(IUnknown *pUnkOuter, REFIID iid, void** ppv)
This
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
TgaDecoder
));
if
(
!
This
)
return
E_OUTOFMEMORY
;
This
->
lpVtbl
=
&
TgaDecoder_Vtbl
;
This
->
lpFrame
Vtbl
=
&
TgaDecoder_Frame_Vtbl
;
This
->
IWICBitmapDecoder_iface
.
lpVtbl
=
&
TgaDecoder_Vtbl
;
This
->
IWICBitmapFrameDecode_iface
.
lp
Vtbl
=
&
TgaDecoder_Frame_Vtbl
;
This
->
ref
=
1
;
This
->
initialized
=
FALSE
;
This
->
stream
=
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