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
109ec4bb
Commit
109ec4bb
authored
Apr 03, 2012
by
Aric Stewart
Committed by
Alexandre Julliard
Apr 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
strmbase: Fix issues with new quality control implementation in TransformFilter.
parent
9940756d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
transform.c
dlls/strmbase/transform.c
+2
-1
No files found.
dlls/strmbase/transform.c
View file @
109ec4bb
...
...
@@ -235,6 +235,7 @@ static HRESULT TransformFilter_Init(const IBaseFilterVtbl *pVtbl, const CLSID* p
ERR
(
"Cannot create output pin (%x)
\n
"
,
hr
);
else
{
QualityControlImpl_Create
(
pTransformFilter
->
ppPins
[
0
],
&
pTransformFilter
->
filter
.
IBaseFilter_iface
,
&
pTransformFilter
->
qcimpl
);
pTransformFilter
->
qcimpl
->
IQualityControl_iface
.
lpVtbl
=
&
TransformFilter_QualityControl_Vtbl
;
}
}
if
(
FAILED
(
hr
))
...
...
@@ -404,7 +405,7 @@ HRESULT WINAPI TransformFilterImpl_Run(IBaseFilter * iface, REFERENCE_TIME tStar
HRESULT
WINAPI
TransformFilterImpl_Notify
(
TransformFilter
*
iface
,
IBaseFilter
*
sender
,
Quality
qm
)
{
return
QualityControlImpl_Notify
((
IQualityControl
*
)
&
iface
->
qcimpl
,
sender
,
qm
);
return
QualityControlImpl_Notify
((
IQualityControl
*
)
iface
->
qcimpl
,
sender
,
qm
);
}
/** IBaseFilter implementation **/
...
...
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