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
a0e9fc87
Commit
a0e9fc87
authored
Nov 11, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Nov 13, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Cast-qual warnings fix.
parent
4b675fd3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
pin.c
dlls/quartz/pin.c
+3
-3
pin.h
dlls/quartz/pin.h
+1
-1
No files found.
dlls/quartz/pin.c
View file @
a0e9fc87
...
...
@@ -845,7 +845,7 @@ static const IPinVtbl OutputPin_Vtbl =
OutputPin_NewSegment
};
HRESULT
OutputPin_GetDeliveryBuffer
(
OutputPin
*
This
,
IMediaSample
**
ppSample
,
const
REFERENCE_TIME
*
tStart
,
const
REFERENCE_TIME
*
tStop
,
DWORD
dwFlags
)
HRESULT
OutputPin_GetDeliveryBuffer
(
OutputPin
*
This
,
IMediaSample
**
ppSample
,
REFERENCE_TIME
*
tStart
,
REFERENCE_TIME
*
tStop
,
DWORD
dwFlags
)
{
HRESULT
hr
;
...
...
@@ -862,10 +862,10 @@ HRESULT OutputPin_GetDeliveryBuffer(OutputPin * This, IMediaSample ** ppSample,
hr
=
IMemInputPin_GetAllocator
(
This
->
pMemInputPin
,
&
pAlloc
);
if
(
SUCCEEDED
(
hr
))
hr
=
IMemAllocator_GetBuffer
(
pAlloc
,
ppSample
,
(
REFERENCE_TIME
*
)
tStart
,
(
REFERENCE_TIME
*
)
tStop
,
dwFlags
);
hr
=
IMemAllocator_GetBuffer
(
pAlloc
,
ppSample
,
tStart
,
tStop
,
dwFlags
);
if
(
SUCCEEDED
(
hr
))
hr
=
IMediaSample_SetTime
(
*
ppSample
,
(
REFERENCE_TIME
*
)
tStart
,
(
REFERENCE_TIME
*
)
tStop
);
hr
=
IMediaSample_SetTime
(
*
ppSample
,
tStart
,
tStop
);
if
(
pAlloc
)
IMemAllocator_Release
(
pAlloc
);
...
...
dlls/quartz/pin.h
View file @
a0e9fc87
...
...
@@ -133,7 +133,7 @@ HRESULT WINAPI OutputPin_EndFlush(IPin * iface);
HRESULT
WINAPI
OutputPin_NewSegment
(
IPin
*
iface
,
REFERENCE_TIME
tStart
,
REFERENCE_TIME
tStop
,
double
dRate
);
HRESULT
OutputPin_CommitAllocator
(
OutputPin
*
This
);
HRESULT
OutputPin_GetDeliveryBuffer
(
OutputPin
*
This
,
IMediaSample
**
ppSample
,
const
REFERENCE_TIME
*
tStart
,
const
REFERENCE_TIME
*
tStop
,
DWORD
dwFlags
);
HRESULT
OutputPin_GetDeliveryBuffer
(
OutputPin
*
This
,
IMediaSample
**
ppSample
,
REFERENCE_TIME
*
tStart
,
REFERENCE_TIME
*
tStop
,
DWORD
dwFlags
);
HRESULT
OutputPin_SendSample
(
OutputPin
*
This
,
IMediaSample
*
pSample
);
HRESULT
OutputPin_DeliverDisconnect
(
OutputPin
*
This
);
HRESULT
OutputPin_DeliverNewSegment
(
OutputPin
*
This
,
REFERENCE_TIME
tStart
,
REFERENCE_TIME
tStop
,
double
dRate
);
...
...
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