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
7965bd2f
Commit
7965bd2f
authored
Feb 26, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Feb 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests/avisplit: Add some tests for IBaseFilter_FindPin().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0765edd5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
0 deletions
+57
-0
avisplit.c
dlls/quartz/tests/avisplit.c
+57
-0
No files found.
dlls/quartz/tests/avisplit.c
View file @
7965bd2f
...
...
@@ -24,6 +24,7 @@
#include "wine/test.h"
static
const
WCHAR
sink_name
[]
=
{
'i'
,
'n'
,
'p'
,
'u'
,
't'
,
' '
,
'p'
,
'i'
,
'n'
,
0
};
static
const
WCHAR
source0_name
[]
=
{
'S'
,
't'
,
'r'
,
'e'
,
'a'
,
'm'
,
' '
,
'0'
,
'0'
,
0
};
static
IBaseFilter
*
create_avi_splitter
(
void
)
{
...
...
@@ -277,6 +278,61 @@ todo_wine
ok
(
ret
,
"Failed to delete file, error %u.
\n
"
,
GetLastError
());
}
static
void
test_find_pin
(
void
)
{
static
const
WCHAR
inputW
[]
=
{
'I'
,
'n'
,
'p'
,
'u'
,
't'
,
0
};
const
WCHAR
*
filename
=
load_resource
(
avifile
);
IBaseFilter
*
filter
=
create_avi_splitter
();
IFilterGraph2
*
graph
;
IEnumPins
*
enum_pins
;
IPin
*
pin
,
*
pin2
;
HRESULT
hr
;
ULONG
ref
;
BOOL
ret
;
hr
=
IBaseFilter_FindPin
(
filter
,
sink_name
,
&
pin
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
IPin_Release
(
pin
);
hr
=
IBaseFilter_FindPin
(
filter
,
source0_name
,
&
pin
);
ok
(
hr
==
VFW_E_NOT_FOUND
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IBaseFilter_FindPin
(
filter
,
inputW
,
&
pin
);
ok
(
hr
==
VFW_E_NOT_FOUND
,
"Got hr %#x.
\n
"
,
hr
);
graph
=
connect_input
(
filter
,
filename
);
hr
=
IBaseFilter_EnumPins
(
filter
,
&
enum_pins
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IEnumPins_Next
(
enum_pins
,
1
,
&
pin2
,
NULL
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IBaseFilter_FindPin
(
filter
,
source0_name
,
&
pin
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
todo_wine
ok
(
pin
==
pin2
,
"Expected pin %p, got %p.
\n
"
,
pin2
,
pin
);
IPin_Release
(
pin
);
IPin_Release
(
pin2
);
hr
=
IEnumPins_Next
(
enum_pins
,
1
,
&
pin2
,
NULL
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IBaseFilter_FindPin
(
filter
,
sink_name
,
&
pin
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
todo_wine
ok
(
pin
==
pin2
,
"Expected pin %p, got %p.
\n
"
,
pin2
,
pin
);
IPin_Release
(
pin
);
IPin_Release
(
pin2
);
IEnumPins_Release
(
enum_pins
);
IFilterGraph2_Release
(
graph
);
ref
=
IBaseFilter_Release
(
filter
);
ok
(
!
ref
,
"Got outstanding refcount %d.
\n
"
,
ref
);
ret
=
DeleteFileW
(
filename
);
ok
(
ret
,
"Failed to delete file, error %u.
\n
"
,
GetLastError
());
}
static
void
test_filter_graph
(
void
)
{
IFileSourceFilter
*
pfile
=
NULL
;
...
...
@@ -525,6 +581,7 @@ START_TEST(avisplit)
test_interfaces
();
test_enum_pins
();
test_find_pin
();
test_filter_graph
();
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