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
ddd77e74
Commit
ddd77e74
authored
Dec 12, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Dec 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineqtdecoder: Use base sink streaming methods.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5d2c3de5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
29 deletions
+4
-29
qtsplitter.c
dlls/wineqtdecoder/qtsplitter.c
+4
-29
No files found.
dlls/wineqtdecoder/qtsplitter.c
View file @
ddd77e74
...
...
@@ -1030,31 +1030,6 @@ static HRESULT QT_Process_Movie(QTSplitter* filter)
return
hr
;
}
static
HRESULT
WINAPI
QTInPin_EndOfStream
(
IPin
*
iface
)
{
FIXME
(
"iface %p, stub!
\n
"
,
iface
);
return
S_OK
;
}
static
HRESULT
WINAPI
QTInPin_BeginFlush
(
IPin
*
iface
)
{
FIXME
(
"iface %p, stub!
\n
"
,
iface
);
return
S_OK
;
}
static
HRESULT
WINAPI
QTInPin_EndFlush
(
IPin
*
iface
)
{
FIXME
(
"iface %p, stub!
\n
"
,
iface
);
return
S_OK
;
}
static
HRESULT
WINAPI
QTInPin_NewSegment
(
IPin
*
iface
,
REFERENCE_TIME
tStart
,
REFERENCE_TIME
tStop
,
double
dRate
)
{
BasePinImpl_NewSegment
(
iface
,
tStart
,
tStop
,
dRate
);
FIXME
(
"iface %p, stub!
\n
"
,
iface
);
return
S_OK
;
}
static
const
IPinVtbl
QT_InputPin_Vtbl
=
{
BasePinImpl_QueryInterface
,
BasePinImpl_AddRef
,
...
...
@@ -1070,10 +1045,10 @@ static const IPinVtbl QT_InputPin_Vtbl = {
BasePinImpl_QueryAccept
,
BasePinImpl_EnumMediaTypes
,
BasePinImpl_QueryInternalConnections
,
QTInPin
_EndOfStream
,
QTInPin
_BeginFlush
,
QTInPin
_EndFlush
,
QTInPin
_NewSegment
BaseInputPinImpl
_EndOfStream
,
BaseInputPinImpl
_BeginFlush
,
BaseInputPinImpl
_EndFlush
,
BaseInputPinImpl
_NewSegment
};
static
inline
QTOutPin
*
impl_source_from_strmbase_pin
(
struct
strmbase_pin
*
iface
)
...
...
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