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
cdd40604
Commit
cdd40604
authored
May 28, 2015
by
Damjan Jovanovic
Committed by
Alexandre Julliard
May 29, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qcap: Implement a stubbed SmartTee filter.
parent
e6307f1a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
14 deletions
+15
-14
Makefile.in
dlls/qcap/Makefile.in
+1
-0
qcap_main.c
dlls/qcap/qcap_main.c
+1
-1
smartteefilter.c
dlls/qcap/smartteefilter.c
+0
-0
smartteefilter.c
dlls/qcap/tests/smartteefilter.c
+13
-13
No files found.
dlls/qcap/Makefile.in
View file @
cdd40604
...
@@ -8,6 +8,7 @@ C_SRCS = \
...
@@ -8,6 +8,7 @@ C_SRCS = \
capturegraph.c
\
capturegraph.c
\
enummedia.c
\
enummedia.c
\
qcap_main.c
\
qcap_main.c
\
smartteefilter.c
\
v4l.c
\
v4l.c
\
vfwcapture.c
\
vfwcapture.c
\
yuv.c
yuv.c
...
...
dlls/qcap/qcap_main.c
View file @
cdd40604
...
@@ -132,7 +132,7 @@ FactoryTemplate const g_Templates[] = {
...
@@ -132,7 +132,7 @@ FactoryTemplate const g_Templates[] = {
},{
},{
wSmartTeeFilter
,
wSmartTeeFilter
,
&
CLSID_SmartTee
,
&
CLSID_SmartTee
,
NULL
,
/* FIXME: Implement QCAP_createSmartTeeFilter */
QCAP_createSmartTeeFilter
,
NULL
NULL
},{
},{
wAudioInMixerProp
,
wAudioInMixerProp
,
...
...
dlls/qcap/smartteefilter.c
0 → 100644
View file @
cdd40604
This diff is collapsed.
Click to expand it.
dlls/qcap/tests/smartteefilter.c
View file @
cdd40604
...
@@ -1010,7 +1010,7 @@ static HRESULT WINAPI SourcePin_Connect(IPin *iface, IPin *pReceivePin, const AM
...
@@ -1010,7 +1010,7 @@ static HRESULT WINAPI SourcePin_Connect(IPin *iface, IPin *pReceivePin, const AM
if
(
pmt
&&
!
IsEqualGUID
(
&
pmt
->
formattype
,
&
GUID_NULL
))
if
(
pmt
&&
!
IsEqualGUID
(
&
pmt
->
formattype
,
&
GUID_NULL
))
return
VFW_E_TYPE_NOT_ACCEPTED
;
return
VFW_E_TYPE_NOT_ACCEPTED
;
hr
=
IPin_ReceiveConnection
(
pReceivePin
,
&
This
->
IPin_iface
,
&
This
->
mediaType
);
hr
=
IPin_ReceiveConnection
(
pReceivePin
,
&
This
->
IPin_iface
,
&
This
->
mediaType
);
ok
(
SUCCEEDED
(
hr
),
"SmartTeeFilter's Input pin's IPin_ReceiveConnection() failed with 0x%08x
\n
"
,
hr
);
todo_wine
ok
(
SUCCEEDED
(
hr
),
"SmartTeeFilter's Input pin's IPin_ReceiveConnection() failed with 0x%08x
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
{
if
(
SUCCEEDED
(
hr
))
{
EnterCriticalSection
(
&
This
->
cs
);
EnterCriticalSection
(
&
This
->
cs
);
hr
=
IPin_QueryInterface
(
pReceivePin
,
&
IID_IMemInputPin
,
(
void
**
)
&
This
->
memInputPin
);
hr
=
IPin_QueryInterface
(
pReceivePin
,
&
IID_IMemInputPin
,
(
void
**
)
&
This
->
memInputPin
);
...
@@ -1307,9 +1307,9 @@ static void test_smart_tee_filter_in_graph(IBaseFilter *smartTeeFilter, IPin *in
...
@@ -1307,9 +1307,9 @@ static void test_smart_tee_filter_in_graph(IBaseFilter *smartTeeFilter, IPin *in
}
}
hr
=
IGraphBuilder_Connect
(
graphBuilder
,
capturePin
,
&
captureSinkFilter
->
IPin_iface
);
hr
=
IGraphBuilder_Connect
(
graphBuilder
,
capturePin
,
&
captureSinkFilter
->
IPin_iface
);
ok
(
hr
==
VFW_E_NOT_CONNECTED
,
"connecting Capture pin without first connecting Input pin returned 0x%08x
\n
"
,
hr
);
todo_wine
ok
(
hr
==
VFW_E_NOT_CONNECTED
,
"connecting Capture pin without first connecting Input pin returned 0x%08x
\n
"
,
hr
);
hr
=
IGraphBuilder_Connect
(
graphBuilder
,
previewPin
,
&
previewSinkFilter
->
IPin_iface
);
hr
=
IGraphBuilder_Connect
(
graphBuilder
,
previewPin
,
&
previewSinkFilter
->
IPin_iface
);
ok
(
hr
==
VFW_E_NOT_CONNECTED
,
"connecting Preview pin without first connecting Input pin returned 0x%08x
\n
"
,
hr
);
todo_wine
ok
(
hr
==
VFW_E_NOT_CONNECTED
,
"connecting Preview pin without first connecting Input pin returned 0x%08x
\n
"
,
hr
);
sourceFilter
=
create_SourceFilter
();
sourceFilter
=
create_SourceFilter
();
if
(
sourceFilter
==
NULL
)
{
if
(
sourceFilter
==
NULL
)
{
...
@@ -1322,7 +1322,7 @@ static void test_smart_tee_filter_in_graph(IBaseFilter *smartTeeFilter, IPin *in
...
@@ -1322,7 +1322,7 @@ static void test_smart_tee_filter_in_graph(IBaseFilter *smartTeeFilter, IPin *in
goto
end
;
goto
end
;
hr
=
IGraphBuilder_Connect
(
graphBuilder
,
&
sourceFilter
->
IPin_iface
,
inputPin
);
hr
=
IGraphBuilder_Connect
(
graphBuilder
,
&
sourceFilter
->
IPin_iface
,
inputPin
);
ok
(
SUCCEEDED
(
hr
),
"couldn't connect source filter to Input pin, hr=0x%08x
\n
"
,
hr
);
todo_wine
ok
(
SUCCEEDED
(
hr
),
"couldn't connect source filter to Input pin, hr=0x%08x
\n
"
,
hr
);
if
(
FAILED
(
hr
))
if
(
FAILED
(
hr
))
goto
end
;
goto
end
;
hr
=
IGraphBuilder_Connect
(
graphBuilder
,
capturePin
,
&
captureSinkFilter
->
IPin_iface
);
hr
=
IGraphBuilder_Connect
(
graphBuilder
,
capturePin
,
&
captureSinkFilter
->
IPin_iface
);
...
@@ -1384,7 +1384,7 @@ static void test_smart_tee_filter(void)
...
@@ -1384,7 +1384,7 @@ static void test_smart_tee_filter(void)
hr
=
CoCreateInstance
(
&
CLSID_SmartTee
,
NULL
,
CLSCTX_INPROC_SERVER
,
hr
=
CoCreateInstance
(
&
CLSID_SmartTee
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IBaseFilter
,
(
void
**
)
&
smartTeeFilter
);
&
IID_IBaseFilter
,
(
void
**
)
&
smartTeeFilter
);
todo_wine
ok
(
SUCCEEDED
(
hr
),
"couldn't create smart tee filter, hr=0x%08x
\n
"
,
hr
);
ok
(
SUCCEEDED
(
hr
),
"couldn't create smart tee filter, hr=0x%08x
\n
"
,
hr
);
if
(
FAILED
(
hr
))
if
(
FAILED
(
hr
))
goto
end
;
goto
end
;
...
@@ -1467,23 +1467,23 @@ static void test_smart_tee_filter(void)
...
@@ -1467,23 +1467,23 @@ static void test_smart_tee_filter(void)
ok
(
!
has_interface
((
IUnknown
*
)
inputPin
,
&
IID_IAMStreamConfig
),
"IAMStreamConfig shouldn't exist on the input pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
inputPin
,
&
IID_IAMStreamConfig
),
"IAMStreamConfig shouldn't exist on the input pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
inputPin
,
&
IID_IAMStreamControl
),
"IAMStreamControl shouldn't exist on the input pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
inputPin
,
&
IID_IAMStreamControl
),
"IAMStreamControl shouldn't exist on the input pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
inputPin
,
&
IID_IPropertyBag
),
"IPropertyBag shouldn't exist on the input pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
inputPin
,
&
IID_IPropertyBag
),
"IPropertyBag shouldn't exist on the input pin
\n
"
);
ok
(
has_interface
((
IUnknown
*
)
inputPin
,
&
IID_IQualityControl
),
"IQualityControl should exist on the input pin
\n
"
);
todo_wine
ok
(
has_interface
((
IUnknown
*
)
inputPin
,
&
IID_IQualityControl
),
"IQualityControl should exist on the input pin
\n
"
);
ok
(
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IUnknown
),
"IUnknown should exist on the capture pin
\n
"
);
ok
(
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IUnknown
),
"IUnknown should exist on the capture pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IAsyncReader
),
"IAsyncReader shouldn't exist on the capture pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IAsyncReader
),
"IAsyncReader shouldn't exist on the capture pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IKsPropertySet
),
"IKsPropertySet shouldn't exist on the capture pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IKsPropertySet
),
"IKsPropertySet shouldn't exist on the capture pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IAMStreamConfig
),
"IAMStreamConfig shouldn't exist on the capture pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IAMStreamConfig
),
"IAMStreamConfig shouldn't exist on the capture pin
\n
"
);
ok
(
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IAMStreamControl
),
"IAMStreamControl should exist on the capture pin
\n
"
);
todo_wine
ok
(
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IAMStreamControl
),
"IAMStreamControl should exist on the capture pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IPropertyBag
),
"IPropertyBag shouldn't exist on the capture pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IPropertyBag
),
"IPropertyBag shouldn't exist on the capture pin
\n
"
);
ok
(
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IQualityControl
),
"IQualityControl should exist on the capture pin
\n
"
);
todo_wine
ok
(
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IQualityControl
),
"IQualityControl should exist on the capture pin
\n
"
);
ok
(
has_interface
((
IUnknown
*
)
previewPin
,
&
IID_IUnknown
),
"IUnknown should exist on the preview pin
\n
"
);
ok
(
has_interface
((
IUnknown
*
)
previewPin
,
&
IID_IUnknown
),
"IUnknown should exist on the preview pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
previewPin
,
&
IID_IAsyncReader
),
"IAsyncReader shouldn't exist on the preview pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
previewPin
,
&
IID_IAsyncReader
),
"IAsyncReader shouldn't exist on the preview pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
previewPin
,
&
IID_IKsPropertySet
),
"IKsPropertySet shouldn't exist on the preview pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
previewPin
,
&
IID_IKsPropertySet
),
"IKsPropertySet shouldn't exist on the preview pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
previewPin
,
&
IID_IAMStreamConfig
),
"IAMStreamConfig shouldn't exist on the preview pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
previewPin
,
&
IID_IAMStreamConfig
),
"IAMStreamConfig shouldn't exist on the preview pin
\n
"
);
ok
(
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IAMStreamControl
),
"IAMStreamControl should exist on the preview pin
\n
"
);
todo_wine
ok
(
has_interface
((
IUnknown
*
)
capturePin
,
&
IID_IAMStreamControl
),
"IAMStreamControl should exist on the preview pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
previewPin
,
&
IID_IPropertyBag
),
"IPropertyBag shouldn't exist on the preview pin
\n
"
);
ok
(
!
has_interface
((
IUnknown
*
)
previewPin
,
&
IID_IPropertyBag
),
"IPropertyBag shouldn't exist on the preview pin
\n
"
);
ok
(
has_interface
((
IUnknown
*
)
previewPin
,
&
IID_IQualityControl
),
"IQualityControl should exist on the preview pin
\n
"
);
todo_wine
ok
(
has_interface
((
IUnknown
*
)
previewPin
,
&
IID_IQualityControl
),
"IQualityControl should exist on the preview pin
\n
"
);
hr
=
IPin_QueryInterface
(
inputPin
,
&
IID_IMemInputPin
,
(
void
**
)
&
memInputPin
);
hr
=
IPin_QueryInterface
(
inputPin
,
&
IID_IMemInputPin
,
(
void
**
)
&
memInputPin
);
ok
(
SUCCEEDED
(
hr
),
"couldn't get mem input pin, hr=0x%08x
\n
"
,
hr
);
ok
(
SUCCEEDED
(
hr
),
"couldn't get mem input pin, hr=0x%08x
\n
"
,
hr
);
...
@@ -1502,9 +1502,9 @@ static void test_smart_tee_filter(void)
...
@@ -1502,9 +1502,9 @@ static void test_smart_tee_filter(void)
IEnumMediaTypes_Release
(
enumMediaTypes
);
IEnumMediaTypes_Release
(
enumMediaTypes
);
enumMediaTypes
=
NULL
;
enumMediaTypes
=
NULL
;
hr
=
IPin_EnumMediaTypes
(
capturePin
,
&
enumMediaTypes
);
hr
=
IPin_EnumMediaTypes
(
capturePin
,
&
enumMediaTypes
);
ok
(
hr
==
VFW_E_NOT_CONNECTED
,
"IPin_EnumMediaTypes() failed, hr=0x%08x
\n
"
,
hr
);
todo_wine
ok
(
hr
==
VFW_E_NOT_CONNECTED
,
"IPin_EnumMediaTypes() failed, hr=0x%08x
\n
"
,
hr
);
hr
=
IPin_EnumMediaTypes
(
previewPin
,
&
enumMediaTypes
);
hr
=
IPin_EnumMediaTypes
(
previewPin
,
&
enumMediaTypes
);
ok
(
hr
==
VFW_E_NOT_CONNECTED
,
"IPin_EnumMediaTypes() failed, hr=0x%08x
\n
"
,
hr
);
todo_wine
ok
(
hr
==
VFW_E_NOT_CONNECTED
,
"IPin_EnumMediaTypes() failed, hr=0x%08x
\n
"
,
hr
);
hr
=
IPin_QueryInternalConnections
(
inputPin
,
NULL
,
&
nPin
);
hr
=
IPin_QueryInternalConnections
(
inputPin
,
NULL
,
&
nPin
);
ok
(
hr
==
E_NOTIMPL
,
"IPin_QueryInternalConnections() returned hr=0x%08x
\n
"
,
hr
);
ok
(
hr
==
E_NOTIMPL
,
"IPin_QueryInternalConnections() returned hr=0x%08x
\n
"
,
hr
);
...
@@ -1539,7 +1539,7 @@ static void test_smart_tee_filter_aggregation(void)
...
@@ -1539,7 +1539,7 @@ static void test_smart_tee_filter_aggregation(void)
IUnknown
*
unknown
=
NULL
;
IUnknown
*
unknown
=
NULL
;
HRESULT
hr
=
CoCreateInstance
(
&
CLSID_SmartTee
,
(
IUnknown
*
)
&
sourceFilter
->
IBaseFilter_iface
,
HRESULT
hr
=
CoCreateInstance
(
&
CLSID_SmartTee
,
(
IUnknown
*
)
&
sourceFilter
->
IBaseFilter_iface
,
CLSCTX_INPROC_SERVER
,
&
IID_IUnknown
,
(
void
**
)
&
unknown
);
CLSCTX_INPROC_SERVER
,
&
IID_IUnknown
,
(
void
**
)
&
unknown
);
todo_wine
ok
(
SUCCEEDED
(
hr
),
"SmartTee filter doesn't support aggregation, hr=0x%08x
\n
"
,
hr
);
ok
(
SUCCEEDED
(
hr
),
"SmartTee filter doesn't support aggregation, hr=0x%08x
\n
"
,
hr
);
if
(
unknown
)
if
(
unknown
)
IUnknown_Release
(
unknown
);
IUnknown_Release
(
unknown
);
IBaseFilter_Release
(
&
sourceFilter
->
IBaseFilter_iface
);
IBaseFilter_Release
(
&
sourceFilter
->
IBaseFilter_iface
);
...
...
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