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
fa8cd743
Commit
fa8cd743
authored
Dec 30, 2008
by
Christian Costa
Committed by
Alexandre Julliard
Dec 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Remove unused IMemInputPin vtables.
parent
95810a89
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
40 deletions
+0
-40
nullrenderer.c
dlls/quartz/nullrenderer.c
+0
-13
transform.c
dlls/quartz/transform.c
+0
-14
videorenderer.c
dlls/quartz/videorenderer.c
+0
-13
No files found.
dlls/quartz/nullrenderer.c
View file @
fa8cd743
...
...
@@ -67,19 +67,6 @@ typedef struct NullRendererImpl
MediaSeekingImpl
mediaSeeking
;
}
NullRendererImpl
;
static
const
IMemInputPinVtbl
MemInputPin_Vtbl
=
{
MemInputPin_QueryInterface
,
MemInputPin_AddRef
,
MemInputPin_Release
,
MemInputPin_GetAllocator
,
MemInputPin_NotifyAllocator
,
MemInputPin_GetAllocatorRequirements
,
MemInputPin_Receive
,
MemInputPin_ReceiveMultiple
,
MemInputPin_ReceiveCanBlock
};
static
HRESULT
NullRenderer_Sample
(
LPVOID
iface
,
IMediaSample
*
pSample
)
{
NullRendererImpl
*
This
=
(
NullRendererImpl
*
)
iface
;
...
...
dlls/quartz/transform.c
View file @
fa8cd743
...
...
@@ -45,7 +45,6 @@ static const WCHAR wcsOutputPinName[] = {'o','u','t','p','u','t',' ','p','i','n'
static
const
IBaseFilterVtbl
TransformFilter_Vtbl
;
static
const
IPinVtbl
TransformFilter_InputPin_Vtbl
;
static
const
IMemInputPinVtbl
MemInputPin_Vtbl
;
static
const
IPinVtbl
TransformFilter_OutputPin_Vtbl
;
static
HRESULT
TransformFilter_Input_QueryAccept
(
LPVOID
iface
,
const
AM_MEDIA_TYPE
*
pmt
)
...
...
@@ -650,16 +649,3 @@ static const IPinVtbl TransformFilter_OutputPin_Vtbl =
OutputPin_EndFlush
,
OutputPin_NewSegment
};
static
const
IMemInputPinVtbl
MemInputPin_Vtbl
=
{
MemInputPin_QueryInterface
,
MemInputPin_AddRef
,
MemInputPin_Release
,
MemInputPin_GetAllocator
,
MemInputPin_NotifyAllocator
,
MemInputPin_GetAllocatorRequirements
,
MemInputPin_Receive
,
MemInputPin_ReceiveMultiple
,
MemInputPin_ReceiveCanBlock
};
dlls/quartz/videorenderer.c
View file @
fa8cd743
...
...
@@ -256,19 +256,6 @@ static BOOL CreateRenderingSubsystem(VideoRendererImpl* This)
return
TRUE
;
}
static
const
IMemInputPinVtbl
MemInputPin_Vtbl
=
{
MemInputPin_QueryInterface
,
MemInputPin_AddRef
,
MemInputPin_Release
,
MemInputPin_GetAllocator
,
MemInputPin_NotifyAllocator
,
MemInputPin_GetAllocatorRequirements
,
MemInputPin_Receive
,
MemInputPin_ReceiveMultiple
,
MemInputPin_ReceiveCanBlock
};
static
DWORD
VideoRenderer_SendSampleData
(
VideoRendererImpl
*
This
,
LPBYTE
data
,
DWORD
size
)
{
AM_MEDIA_TYPE
amt
;
...
...
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