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
5f71a3f1
Commit
5f71a3f1
authored
Apr 12, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Apr 12, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qcap/tests: Remove some unnecessary workarounds.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2017db7d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
29 deletions
+13
-29
smartteefilter.c
dlls/qcap/tests/smartteefilter.c
+13
-29
No files found.
dlls/qcap/tests/smartteefilter.c
View file @
5f71a3f1
/*
*
SmartTeeFilter
tests
*
Smart tee filter unit
tests
*
* Copyright 2015 Damjan Jovanovic
*
...
...
@@ -18,18 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#define COBJMACROS
#include <dshow.h>
#include <guiddef.h>
#include <devguid.h>
#include <stdio.h>
#include "wine/strmbase.h"
#include "dshow.h"
#include "wine/test.h"
static
HANDLE
event
;
...
...
@@ -2022,25 +2012,19 @@ end:
START_TEST
(
smartteefilter
)
{
if
(
SUCCEEDED
(
CoInitialize
(
NULL
)))
{
event
=
CreateEventW
(
NULL
,
FALSE
,
FALSE
,
NULL
);
if
(
event
)
{
test_smart_tee_filter_aggregation
();
test_smart_tee_filter
();
CoInitialize
(
NULL
);
test_audio_smart_tee_filter_auto_insertion
(
test_audio_preview
);
test_audio_smart_tee_filter_auto_insertion
(
test_audio_capture
);
event
=
CreateEventW
(
NULL
,
FALSE
,
FALSE
,
NULL
);
test_video_smart_tee_filter_auto_insertion
(
test_video_preview
);
test_video_smart_tee_filter_auto_insertion
(
test_video_capture
);
test_smart_tee_filter_aggregation
(
);
test_smart_tee_filter
(
);
CloseHandle
(
event
);
}
else
skip
(
"CreateEvent failed, error=%u
\n
"
,
GetLastError
());
test_audio_smart_tee_filter_auto_insertion
(
test_audio_preview
);
test_audio_smart_tee_filter_auto_insertion
(
test_audio_capture
);
CoUninitialize
();
}
else
skip
(
"CoInitialize failed
\n
"
);
test_video_smart_tee_filter_auto_insertion
(
test_video_preview
);
test_video_smart_tee_filter_auto_insertion
(
test_video_capture
);
CloseHandle
(
event
);
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