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
ab798639
Commit
ab798639
authored
Dec 06, 2010
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Dec 06, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Always update time when Run is called.
parent
804a9d14
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
nullrenderer.c
dlls/quartz/nullrenderer.c
+1
-1
parser.c
dlls/quartz/parser.c
+1
-2
videorenderer.c
dlls/quartz/videorenderer.c
+1
-1
No files found.
dlls/quartz/nullrenderer.c
View file @
ab798639
...
...
@@ -345,11 +345,11 @@ static HRESULT WINAPI NullRenderer_Run(IBaseFilter * iface, REFERENCE_TIME tStar
TRACE
(
"(%p/%p)->(%s)
\n
"
,
This
,
iface
,
wine_dbgstr_longlong
(
tStart
));
EnterCriticalSection
(
&
This
->
filter
.
csFilter
);
This
->
filter
.
rtStreamStart
=
tStart
;
if
(
This
->
filter
.
state
==
State_Running
)
goto
out
;
if
(
This
->
pInputPin
->
pin
.
pConnectedTo
)
{
This
->
filter
.
rtStreamStart
=
tStart
;
This
->
pInputPin
->
end_of_stream
=
0
;
}
else
if
(
This
->
filter
.
filterInfo
.
pGraph
)
...
...
dlls/quartz/parser.c
View file @
ab798639
...
...
@@ -304,6 +304,7 @@ HRESULT WINAPI Parser_Run(IBaseFilter * iface, REFERENCE_TIME tStart)
{
HRESULT
hr_any
=
VFW_E_NOT_CONNECTED
;
This
->
filter
.
rtStreamStart
=
tStart
;
if
(
This
->
filter
.
state
==
State_Running
||
This
->
filter
.
state
==
State_Paused
)
{
This
->
filter
.
state
=
State_Running
;
...
...
@@ -312,8 +313,6 @@ HRESULT WINAPI Parser_Run(IBaseFilter * iface, REFERENCE_TIME tStart)
return
S_OK
;
}
This
->
filter
.
rtStreamStart
=
tStart
;
for
(
i
=
1
;
i
<
(
This
->
cStreams
+
1
);
i
++
)
{
hr
=
BaseOutputPinImpl_Active
((
BaseOutputPin
*
)
This
->
ppPins
[
i
]);
...
...
dlls/quartz/videorenderer.c
View file @
ab798639
...
...
@@ -832,9 +832,9 @@ static HRESULT WINAPI VideoRenderer_Run(IBaseFilter * iface, REFERENCE_TIME tSta
TRACE
(
"(%p/%p)->(%s)
\n
"
,
This
,
iface
,
wine_dbgstr_longlong
(
tStart
));
EnterCriticalSection
(
&
This
->
filter
.
csFilter
);
This
->
filter
.
rtStreamStart
=
tStart
;
if
(
This
->
filter
.
state
==
State_Running
)
goto
out
;
This
->
filter
.
rtStreamStart
=
tStart
;
QualityControlRender_Start
(
&
This
->
qcimpl
,
tStart
);
if
(
This
->
pInputPin
->
pin
.
pConnectedTo
&&
(
This
->
filter
.
state
==
State_Stopped
||
!
This
->
pInputPin
->
end_of_stream
))
{
...
...
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