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
c2991049
Commit
c2991049
authored
Jun 27, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Jun 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests: Add some tests for VMR7 media types.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
08033be0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
70 additions
and
0 deletions
+70
-0
vmr7.c
dlls/quartz/tests/vmr7.c
+70
-0
No files found.
dlls/quartz/tests/vmr7.c
View file @
c2991049
...
...
@@ -661,6 +661,75 @@ static void test_pin_info(void)
ok
(
!
ref
,
"Got outstanding refcount %d.
\n
"
,
ref
);
}
static
void
test_media_types
(
void
)
{
WCHAR
sink_id
[]
=
{
'V'
,
'M'
,
'R'
,
' '
,
'I'
,
'n'
,
'p'
,
'u'
,
't'
,
'0'
,
0
};
IBaseFilter
*
filter
=
create_vmr7
(
0
);
AM_MEDIA_TYPE
*
mt
,
req_mt
=
{{
0
}};
VIDEOINFOHEADER
vih
=
{
{
0
},
{
0
},
0
,
0
,
0
,
{
sizeof
(
BITMAPINFOHEADER
),
32
,
24
,
1
,
0
,
BI_RGB
}
};
IEnumMediaTypes
*
enummt
;
unsigned
int
i
;
HRESULT
hr
;
ULONG
ref
;
IPin
*
pin
;
static
const
GUID
*
subtype_tests
[]
=
{
&
MEDIASUBTYPE_NULL
,
&
MEDIASUBTYPE_RGB565
,
&
MEDIASUBTYPE_RGB24
,
&
MEDIASUBTYPE_RGB32
,
};
IBaseFilter_FindPin
(
filter
,
sink_id
,
&
pin
);
hr
=
IPin_EnumMediaTypes
(
pin
,
&
enummt
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IEnumMediaTypes_Next
(
enummt
,
1
,
&
mt
,
NULL
);
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
IEnumMediaTypes_Release
(
enummt
);
req_mt
.
majortype
=
MEDIATYPE_Video
;
req_mt
.
formattype
=
FORMAT_VideoInfo
;
req_mt
.
cbFormat
=
sizeof
(
VIDEOINFOHEADER
);
req_mt
.
pbFormat
=
(
BYTE
*
)
&
vih
;
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
subtype_tests
);
++
i
)
{
req_mt
.
subtype
=
*
subtype_tests
[
i
];
hr
=
IPin_QueryAccept
(
pin
,
&
req_mt
);
ok
(
hr
==
S_OK
,
"Got hr %#x for subtype %s.
\n
"
,
hr
,
wine_dbgstr_guid
(
subtype_tests
[
i
]));
}
req_mt
.
subtype
=
MEDIASUBTYPE_RGB8
;
hr
=
IPin_QueryAccept
(
pin
,
&
req_mt
);
todo_wine
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
req_mt
.
subtype
=
MEDIASUBTYPE_RGB24
;
req_mt
.
majortype
=
MEDIATYPE_NULL
;
hr
=
IPin_QueryAccept
(
pin
,
&
req_mt
);
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
req_mt
.
majortype
=
MEDIATYPE_Video
;
req_mt
.
formattype
=
FORMAT_None
;
hr
=
IPin_QueryAccept
(
pin
,
&
req_mt
);
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
req_mt
.
formattype
=
GUID_NULL
;
hr
=
IPin_QueryAccept
(
pin
,
&
req_mt
);
ok
(
hr
==
S_FALSE
,
"Got hr %#x.
\n
"
,
hr
);
IPin_Release
(
pin
);
ref
=
IBaseFilter_Release
(
filter
);
ok
(
!
ref
,
"Got outstanding refcount %d.
\n
"
,
ref
);
}
START_TEST
(
vmr7
)
{
CoInitialize
(
NULL
);
...
...
@@ -671,6 +740,7 @@ START_TEST(vmr7)
test_enum_pins
();
test_find_pin
();
test_pin_info
();
test_media_types
();
CoUninitialize
();
}
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