Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
50d45a8a
Commit
50d45a8a
authored
Nov 25, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Nov 26, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
strmbase: Use BOOL type where appropriate.
parent
6a847bd9
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
14 deletions
+15
-14
pin.c
dlls/strmbase/pin.c
+4
-4
pospass.c
dlls/strmbase/pospass.c
+5
-5
qualitycontrol.c
dlls/strmbase/qualitycontrol.c
+3
-2
renderer.c
dlls/strmbase/renderer.c
+2
-2
transform.c
dlls/strmbase/transform.c
+1
-1
No files found.
dlls/strmbase/pin.c
View file @
50d45a8a
...
...
@@ -981,7 +981,7 @@ HRESULT WINAPI BaseInputPinImpl_EndOfStream(IPin * iface)
if
(
This
->
flushing
)
hr
=
S_FALSE
;
else
This
->
end_of_stream
=
1
;
This
->
end_of_stream
=
TRUE
;
LeaveCriticalSection
(
This
->
pin
.
pCritSec
);
if
(
hr
==
S_OK
)
...
...
@@ -1001,7 +1001,7 @@ HRESULT WINAPI BaseInputPinImpl_BeginFlush(IPin * iface)
TRACE
(
"() semi-stub
\n
"
);
EnterCriticalSection
(
This
->
pin
.
pCritSec
);
This
->
flushing
=
1
;
This
->
flushing
=
TRUE
;
hr
=
SendFurther
(
iface
,
deliver_beginflush
,
NULL
,
NULL
);
LeaveCriticalSection
(
This
->
pin
.
pCritSec
);
...
...
@@ -1021,7 +1021,7 @@ HRESULT WINAPI BaseInputPinImpl_EndFlush(IPin * iface)
TRACE
(
"(%p)
\n
"
,
This
);
EnterCriticalSection
(
This
->
pin
.
pCritSec
);
This
->
flushing
=
This
->
end_of_stream
=
0
;
This
->
flushing
=
This
->
end_of_stream
=
FALSE
;
hr
=
SendFurther
(
iface
,
deliver_endflush
,
NULL
,
NULL
);
LeaveCriticalSection
(
This
->
pin
.
pCritSec
);
...
...
@@ -1232,7 +1232,7 @@ static HRESULT InputPin_Init(const IPinVtbl *InputPin_Vtbl, const PIN_INFO * pPi
IMemAllocator_AddRef
(
pPinImpl
->
preferred_allocator
);
pPinImpl
->
pin
.
IPin_iface
.
lpVtbl
=
InputPin_Vtbl
;
pPinImpl
->
IMemInputPin_iface
.
lpVtbl
=
&
MemInputPin_Vtbl
;
pPinImpl
->
flushing
=
pPinImpl
->
end_of_stream
=
0
;
pPinImpl
->
flushing
=
pPinImpl
->
end_of_stream
=
FALSE
;
return
S_OK
;
}
...
...
dlls/strmbase/pospass.c
View file @
50d45a8a
...
...
@@ -263,7 +263,7 @@ HRESULT WINAPI PosPassThru_Construct(IUnknown *pUnkOuter, LPVOID *ppPassThru)
fimpl
->
IMediaPosition_iface
.
lpVtbl
=
&
IMediaPositionPassThru_Vtbl
;
fimpl
->
ref
=
1
;
fimpl
->
pin
=
NULL
;
fimpl
->
timevalid
=
0
;
fimpl
->
timevalid
=
FALSE
;
InitializeCriticalSection
(
&
fimpl
->
time_cs
);
fimpl
->
time_cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": PassThruImpl.time_cs"
);
BaseDispatch_Init
(
&
fimpl
->
baseDispatch
,
&
IID_IMediaPosition
);
...
...
@@ -599,7 +599,7 @@ HRESULT WINAPI RendererPosPassThru_RegisterMediaTime(IUnknown *iface, REFERENCE_
PassThruImpl
*
This
=
impl_from_IUnknown_inner
(
iface
);
EnterCriticalSection
(
&
This
->
time_cs
);
This
->
time_earliest
=
start
;
This
->
timevalid
=
1
;
This
->
timevalid
=
TRUE
;
LeaveCriticalSection
(
&
This
->
time_cs
);
return
S_OK
;
}
...
...
@@ -608,7 +608,7 @@ HRESULT WINAPI RendererPosPassThru_ResetMediaTime(IUnknown *iface)
{
PassThruImpl
*
This
=
impl_from_IUnknown_inner
(
iface
);
EnterCriticalSection
(
&
This
->
time_cs
);
This
->
timevalid
=
0
;
This
->
timevalid
=
FALSE
;
LeaveCriticalSection
(
&
This
->
time_cs
);
return
S_OK
;
}
...
...
@@ -621,10 +621,10 @@ HRESULT WINAPI RendererPosPassThru_EOS(IUnknown *iface)
hr
=
IMediaSeeking_GetStopPosition
(
&
This
->
IMediaSeeking_iface
,
&
time
);
EnterCriticalSection
(
&
This
->
time_cs
);
if
(
SUCCEEDED
(
hr
))
{
This
->
timevalid
=
1
;
This
->
timevalid
=
TRUE
;
This
->
time_earliest
=
time
;
}
else
This
->
timevalid
=
0
;
This
->
timevalid
=
FALSE
;
LeaveCriticalSection
(
&
This
->
time_cs
);
return
hr
;
}
...
...
dlls/strmbase/qualitycontrol.c
View file @
50d45a8a
...
...
@@ -112,8 +112,9 @@ void QualityControlRender_Start(QualityControlImpl *This, REFERENCE_TIME tStart)
This
->
avg_render
=
This
->
last_in_time
=
This
->
last_left
=
This
->
avg_duration
=
This
->
avg_pt
=
-
1
;
This
->
clockstart
=
tStart
;
This
->
avg_rate
=
-
1
.
0
;
This
->
rendered
=
This
->
dropped
=
This
->
is_dropped
=
0
;
This
->
qos_handled
=
1
;
/* Lie that will be corrected on first adjustment */
This
->
rendered
=
This
->
dropped
=
0
;
This
->
is_dropped
=
FALSE
;
This
->
qos_handled
=
TRUE
;
/* Lie that will be corrected on first adjustment */
}
...
...
dlls/strmbase/renderer.c
View file @
50d45a8a
...
...
@@ -472,7 +472,7 @@ HRESULT WINAPI BaseRendererImpl_Run(IBaseFilter * iface, REFERENCE_TIME tStart)
if
(
This
->
pInputPin
->
pin
.
pConnectedTo
)
{
This
->
pInputPin
->
end_of_stream
=
0
;
This
->
pInputPin
->
end_of_stream
=
FALSE
;
}
else
if
(
This
->
filter
.
filterInfo
.
pGraph
)
{
...
...
@@ -515,7 +515,7 @@ HRESULT WINAPI BaseRendererImpl_Pause(IBaseFilter * iface)
{
if
(
This
->
pInputPin
->
pin
.
pConnectedTo
)
ResetEvent
(
This
->
evComplete
);
This
->
pInputPin
->
end_of_stream
=
0
;
This
->
pInputPin
->
end_of_stream
=
FALSE
;
}
else
if
(
This
->
pFuncsTable
->
pfnOnStopStreaming
)
This
->
pFuncsTable
->
pfnOnStopStreaming
(
This
);
...
...
dlls/strmbase/transform.c
View file @
50d45a8a
...
...
@@ -406,7 +406,7 @@ HRESULT WINAPI TransformFilterImpl_Run(IBaseFilter * iface, REFERENCE_TIME tStar
{
if
(
This
->
filter
.
state
==
State_Stopped
)
{
impl_BaseInputPin_from_IPin
(
This
->
ppPins
[
0
])
->
end_of_stream
=
0
;
impl_BaseInputPin_from_IPin
(
This
->
ppPins
[
0
])
->
end_of_stream
=
FALSE
;
if
(
This
->
pFuncsTable
->
pfnStartStreaming
)
hr
=
This
->
pFuncsTable
->
pfnStartStreaming
(
This
);
if
(
SUCCEEDED
(
hr
))
...
...
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