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
2b573926
Commit
2b573926
authored
Sep 10, 2012
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Sep 10, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Add a bunch of tests for Graphic Control Extension metadata reader.
parent
7f93e0a6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
79 additions
and
0 deletions
+79
-0
metadata.c
dlls/windowscodecs/tests/metadata.c
+77
-0
wincodecsdk.idl
include/wincodecsdk.idl
+2
-0
No files found.
dlls/windowscodecs/tests/metadata.c
View file @
2b573926
...
...
@@ -1417,6 +1417,82 @@ todo_wine
IStream_Release
(
stream
);
}
static
void
test_metadata_GCE
(
void
)
{
static
const
WCHAR
GCE_name
[]
=
{
'G'
,
'r'
,
'a'
,
'p'
,
'h'
,
'i'
,
'c'
,
' '
,
'C'
,
'o'
,
'n'
,
't'
,
'r'
,
'o'
,
'l'
,
' '
,
'E'
,
'x'
,
't'
,
'e'
,
'n'
,
's'
,
'i'
,
'o'
,
'n'
,
' '
,
'R'
,
'e'
,
'a'
,
'd'
,
'e'
,
'r'
,
0
};
static
const
char
GCE_data
[]
=
"hello world!\xa\x2\x3\x4\x5\x6\x7\x8
\xed
\xa\xb\xc\xd\xe\xf"
;
static
const
struct
test_data
td
[
5
]
=
{
{
VT_UI1
,
0
,
0
,
{
2
},
NULL
,
{
'D'
,
'i'
,
's'
,
'p'
,
'o'
,
's'
,
'a'
,
'l'
,
0
}
},
{
VT_BOOL
,
0
,
0
,
{
1
},
NULL
,
{
'U'
,
's'
,
'e'
,
'r'
,
'I'
,
'n'
,
'p'
,
'u'
,
't'
,
'F'
,
'l'
,
'a'
,
'g'
,
0
}
},
{
VT_BOOL
,
0
,
0
,
{
0
},
NULL
,
{
'T'
,
'r'
,
'a'
,
'n'
,
's'
,
'p'
,
'a'
,
'r'
,
'e'
,
'n'
,
'c'
,
'y'
,
'F'
,
'l'
,
'a'
,
'g'
,
0
}
},
{
VT_UI2
,
0
,
0
,
{
0x302
},
NULL
,
{
'D'
,
'e'
,
'l'
,
'a'
,
'y'
,
0
}
},
{
VT_UI1
,
0
,
0
,
{
4
},
NULL
,
{
'T'
,
'r'
,
'a'
,
'n'
,
's'
,
'p'
,
'a'
,
'r'
,
'e'
,
'n'
,
't'
,
'C'
,
'o'
,
'l'
,
'o'
,
'r'
,
'I'
,
'n'
,
'd'
,
'e'
,
'x'
,
0
}
}
};
LARGE_INTEGER
pos
;
HRESULT
hr
;
IStream
*
stream
;
IWICPersistStream
*
persist
;
IWICMetadataReader
*
reader
;
IWICMetadataHandlerInfo
*
info
;
WCHAR
name
[
64
];
UINT
count
,
dummy
;
GUID
format
;
CLSID
id
;
hr
=
CoCreateInstance
(
&
CLSID_WICGCEMetadataReader
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IWICMetadataReader
,
(
void
**
)
&
reader
);
todo_wine
ok
(
hr
==
S_OK
||
broken
(
hr
==
E_NOINTERFACE
||
hr
==
REGDB_E_CLASSNOTREG
)
/* before Win7 */
,
"CoCreateInstance error %#x
\n
"
,
hr
);
stream
=
create_stream
(
GCE_data
,
sizeof
(
GCE_data
));
if
(
SUCCEEDED
(
hr
))
{
pos
.
QuadPart
=
12
;
hr
=
IStream_Seek
(
stream
,
pos
,
SEEK_SET
,
NULL
);
ok
(
hr
==
S_OK
,
"IStream_Seek error %#x
\n
"
,
hr
);
hr
=
IUnknown_QueryInterface
(
reader
,
&
IID_IWICPersistStream
,
(
void
**
)
&
persist
);
ok
(
hr
==
S_OK
,
"QueryInterface error %#x
\n
"
,
hr
);
hr
=
IWICPersistStream_Load
(
persist
,
stream
);
ok
(
hr
==
S_OK
,
"Load error %#x
\n
"
,
hr
);
IWICPersistStream_Release
(
persist
);
}
if
(
SUCCEEDED
(
hr
))
{
hr
=
IWICMetadataReader_GetCount
(
reader
,
&
count
);
ok
(
hr
==
S_OK
,
"GetCount error %#x
\n
"
,
hr
);
ok
(
count
==
sizeof
(
td
)
/
sizeof
(
td
[
0
]),
"unexpected count %u
\n
"
,
count
);
compare_metadata
(
reader
,
td
,
count
);
hr
=
IWICMetadataReader_GetMetadataFormat
(
reader
,
&
format
);
ok
(
hr
==
S_OK
,
"GetMetadataFormat error %#x
\n
"
,
hr
);
ok
(
IsEqualGUID
(
&
format
,
&
GUID_MetadataFormatGCE
),
"wrong format %s
\n
"
,
debugstr_guid
(
&
format
));
hr
=
IWICMetadataReader_GetMetadataHandlerInfo
(
reader
,
&
info
);
ok
(
hr
==
S_OK
,
"GetMetadataHandlerInfo error %#x
\n
"
,
hr
);
hr
=
IWICMetadataHandlerInfo_GetCLSID
(
info
,
&
id
);
ok
(
hr
==
S_OK
,
"GetCLSID error %#x
\n
"
,
hr
);
ok
(
IsEqualGUID
(
&
id
,
&
CLSID_WICGCEMetadataReader
),
"wrong CLSID %s
\n
"
,
debugstr_guid
(
&
id
));
hr
=
IWICMetadataHandlerInfo_GetFriendlyName
(
info
,
64
,
name
,
&
dummy
);
ok
(
hr
==
S_OK
,
"GetFriendlyName error %#x
\n
"
,
hr
);
ok
(
lstrcmpW
(
name
,
GCE_name
)
==
0
,
"wrong GCE reader name %s
\n
"
,
wine_dbgstr_w
(
name
));
IWICMetadataHandlerInfo_Release
(
info
);
IWICMetadataReader_Release
(
reader
);
}
IStream_Release
(
stream
);
}
START_TEST
(
metadata
)
{
CoInitializeEx
(
NULL
,
COINIT_APARTMENTTHREADED
);
...
...
@@ -1430,6 +1506,7 @@ START_TEST(metadata)
test_metadata_gif
();
test_metadata_LSD
();
test_metadata_IMD
();
test_metadata_GCE
();
CoUninitialize
();
}
include/wincodecsdk.idl
View file @
2b573926
...
...
@@ -61,6 +61,8 @@ cpp_quote("DEFINE_GUID(CLSID_WICLSDMetadataReader, 0x41070793,0x59e4,0x479a,0xa1
cpp_quote
(
"DEFINE_GUID(CLSID_WICLSDMetadataWriter, 0x73c037e7,0xe5d9,0x4954,0x87,0x6a,0x6d,0xa8,0x1d,0x6e,0x57,0x68);"
)
cpp_quote
(
"DEFINE_GUID(CLSID_WICIMDMetadataReader, 0x7447a267,0x0015,0x42c8,0xa8,0xf1,0xfb,0x3b,0x94,0xc6,0x83,0x61);"
)
cpp_quote
(
"DEFINE_GUID(CLSID_WICIMDMetadataWriter, 0x8c89071f,0x452e,0x4e95,0x96,0x82,0x9d,0x10,0x24,0x62,0x71,0x72);"
)
cpp_quote
(
"DEFINE_GUID(CLSID_WICGCEMetadataReader, 0xb92e345d,0xf52d,0x41f3,0xb5,0x62,0x08,0x1b,0xc7,0x72,0xe3,0xb9);"
)
cpp_quote
(
"DEFINE_GUID(CLSID_WICGCEMetadataWriter, 0xaf95dc76,0x16b2,0x47f4,0xb3,0xea,0x3c,0x31,0x79,0x66,0x93,0xe7);"
)
typedef
struct
WICMetadataPattern
{
ULARGE_INTEGER
Position
;
...
...
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