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
2906a6f8
Commit
2906a6f8
authored
Nov 07, 2010
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Nov 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Forward media time in AVI Decoder.
parent
8af5c1b7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
avidec.c
dlls/quartz/avidec.c
+5
-0
No files found.
dlls/quartz/avidec.c
View file @
2906a6f8
...
...
@@ -138,6 +138,11 @@ static HRESULT WINAPI AVIDec_Receive(TransformFilter *tf, IMediaSample *pSample)
else
IMediaSample_SetTime
(
pOutSample
,
NULL
,
NULL
);
if
(
IMediaSample_GetMediaTime
(
pSample
,
&
tStart
,
&
tStop
)
==
S_OK
)
IMediaSample_SetMediaTime
(
pOutSample
,
&
tStart
,
&
tStop
);
else
IMediaSample_SetMediaTime
(
pOutSample
,
NULL
,
NULL
);
LeaveCriticalSection
(
&
This
->
tf
.
filter
.
csFilter
);
hr
=
BaseOutputPinImpl_Deliver
((
BaseOutputPin
*
)
This
->
tf
.
ppPins
[
1
],
pOutSample
);
if
(
hr
!=
S_OK
&&
hr
!=
VFW_E_NOT_CONNECTED
)
...
...
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