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
ae7e5b14
Commit
ae7e5b14
authored
Oct 22, 2010
by
Aric Stewart
Committed by
Alexandre Julliard
Oct 25, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qcap: Make use of a few more strmbase implementations.
parent
b7824177
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
32 deletions
+4
-32
vfwcapture.c
dlls/qcap/vfwcapture.c
+4
-32
No files found.
dlls/qcap/vfwcapture.c
View file @
ae7e5b14
...
...
@@ -753,16 +753,6 @@ static HRESULT WINAPI VfwPin_QueryInterface(IPin * iface, REFIID riid, LPVOID *
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
VfwPin_AddRef
(
IPin
*
iface
)
{
VfwPinImpl
*
This
=
(
VfwPinImpl
*
)
iface
;
ULONG
refCount
=
InterlockedIncrement
(
&
This
->
pin
.
pin
.
refCount
);
TRACE
(
"() -> new refcount: %u
\n
"
,
refCount
);
return
refCount
;
}
static
ULONG
WINAPI
VfwPin_Release
(
IPin
*
iface
)
{
...
...
@@ -802,24 +792,6 @@ VfwPin_QueryInternalConnections(IPin * iface, IPin ** apPin, ULONG * cPin)
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
VfwPin_EndOfStream
(
IPin
*
iface
)
{
TRACE
(
"()
\n
"
);
return
E_UNEXPECTED
;
}
static
HRESULT
WINAPI
VfwPin_BeginFlush
(
IPin
*
iface
)
{
TRACE
(
"(%p)->()
\n
"
,
iface
);
return
E_UNEXPECTED
;
}
static
HRESULT
WINAPI
VfwPin_EndFlush
(
IPin
*
iface
)
{
TRACE
(
"(%p)->()
\n
"
,
iface
);
return
E_UNEXPECTED
;
}
static
HRESULT
WINAPI
VfwPin_NewSegment
(
IPin
*
iface
,
REFERENCE_TIME
tStart
,
REFERENCE_TIME
tStop
,
double
dRate
)
...
...
@@ -832,7 +804,7 @@ VfwPin_NewSegment(IPin * iface, REFERENCE_TIME tStart,
static
const
IPinVtbl
VfwPin_Vtbl
=
{
VfwPin_QueryInterface
,
VfwPin
_AddRef
,
BasePinImpl
_AddRef
,
VfwPin_Release
,
BaseOutputPinImpl_Connect
,
BaseOutputPinImpl_ReceiveConnection
,
...
...
@@ -845,8 +817,8 @@ static const IPinVtbl VfwPin_Vtbl =
BasePinImpl_QueryAccept
,
VfwPin_EnumMediaTypes
,
VfwPin_QueryInternalConnections
,
VfwPin
_EndOfStream
,
VfwPin
_BeginFlush
,
VfwPin
_EndFlush
,
BaseOutputPinImpl
_EndOfStream
,
BaseOutputPinImpl
_BeginFlush
,
BaseOutputPinImpl
_EndFlush
,
VfwPin_NewSegment
};
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