Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
4fe604a2
Commit
4fe604a2
authored
Nov 17, 2020
by
Zebediah Figura
Committed by
Alexandre Julliard
Nov 18, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
strmbase: Get rid of strmbase_pin_get_media_type().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
35cfa11c
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
12 deletions
+0
-12
avico.c
dlls/qcap/avico.c
+0
-1
avimux.c
dlls/qcap/avimux.c
+0
-1
acmwrapper.c
dlls/quartz/acmwrapper.c
+0
-1
avidec.c
dlls/quartz/avidec.c
+0
-1
dsoundrender.c
dlls/quartz/dsoundrender.c
+0
-1
pin.c
dlls/strmbase/pin.c
+0
-5
strmbase.h
include/wine/strmbase.h
+0
-2
No files found.
dlls/qcap/avico.c
View file @
4fe604a2
...
...
@@ -410,7 +410,6 @@ static void sink_disconnect(struct strmbase_sink *iface)
static
const
struct
strmbase_sink_ops
sink_ops
=
{
.
base
.
pin_query_accept
=
sink_query_accept
,
.
base
.
pin_get_media_type
=
strmbase_pin_get_media_type
,
.
base
.
pin_query_interface
=
sink_query_interface
,
.
pfnReceive
=
AVICompressorIn_Receive
,
.
sink_connect
=
sink_connect
,
...
...
dlls/qcap/avimux.c
View file @
4fe604a2
...
...
@@ -1475,7 +1475,6 @@ static const struct strmbase_sink_ops sink_ops =
{
.
base
.
pin_query_interface
=
sink_query_interface
,
.
base
.
pin_query_accept
=
sink_query_accept
,
.
base
.
pin_get_media_type
=
strmbase_pin_get_media_type
,
.
pfnReceive
=
AviMuxIn_Receive
,
.
sink_connect
=
avi_mux_sink_connect
,
.
sink_disconnect
=
avi_mux_sink_disconnect
,
...
...
dlls/quartz/acmwrapper.c
View file @
4fe604a2
...
...
@@ -324,7 +324,6 @@ static const struct strmbase_sink_ops sink_ops =
{
.
base
.
pin_query_interface
=
acm_wrapper_sink_query_interface
,
.
base
.
pin_query_accept
=
acm_wrapper_sink_query_accept
,
.
base
.
pin_get_media_type
=
strmbase_pin_get_media_type
,
.
pfnReceive
=
acm_wrapper_sink_Receive
,
.
sink_connect
=
acm_wrapper_sink_connect
,
.
sink_disconnect
=
acm_wrapper_sink_disconnect
,
...
...
dlls/quartz/avidec.c
View file @
4fe604a2
...
...
@@ -287,7 +287,6 @@ static const struct strmbase_sink_ops sink_ops =
{
.
base
.
pin_query_interface
=
avi_decompressor_sink_query_interface
,
.
base
.
pin_query_accept
=
avi_decompressor_sink_query_accept
,
.
base
.
pin_get_media_type
=
strmbase_pin_get_media_type
,
.
pfnReceive
=
avi_decompressor_sink_Receive
,
.
sink_connect
=
avi_decompressor_sink_connect
,
.
sink_disconnect
=
avi_decompressor_sink_disconnect
,
...
...
dlls/quartz/dsoundrender.c
View file @
4fe604a2
...
...
@@ -542,7 +542,6 @@ static const struct strmbase_sink_ops sink_ops =
{
.
base
.
pin_query_interface
=
dsound_render_sink_query_interface
,
.
base
.
pin_query_accept
=
dsound_render_sink_query_accept
,
.
base
.
pin_get_media_type
=
strmbase_pin_get_media_type
,
.
pfnReceive
=
dsound_render_sink_Receive
,
.
sink_connect
=
dsound_render_sink_connect
,
.
sink_disconnect
=
dsound_render_sink_disconnect
,
...
...
dlls/strmbase/pin.c
View file @
4fe604a2
...
...
@@ -265,11 +265,6 @@ static HRESULT SendFurther(struct strmbase_sink *sink, SendPinFunc func, void *a
return
hr
;
}
HRESULT
strmbase_pin_get_media_type
(
struct
strmbase_pin
*
iface
,
unsigned
int
index
,
AM_MEDIA_TYPE
*
mt
)
{
return
VFW_S_NO_MORE_ITEMS
;
}
static
HRESULT
WINAPI
pin_QueryInterface
(
IPin
*
iface
,
REFIID
iid
,
void
**
out
)
{
struct
strmbase_pin
*
pin
=
impl_from_IPin
(
iface
);
...
...
include/wine/strmbase.h
View file @
4fe604a2
...
...
@@ -106,8 +106,6 @@ struct strmbase_sink_ops
};
/* Base Pin */
HRESULT
strmbase_pin_get_media_type
(
struct
strmbase_pin
*
pin
,
unsigned
int
index
,
AM_MEDIA_TYPE
*
mt
);
HRESULT
WINAPI
BaseOutputPinImpl_GetDeliveryBuffer
(
struct
strmbase_source
*
pin
,
IMediaSample
**
sample
,
REFERENCE_TIME
*
start
,
REFERENCE_TIME
*
stop
,
DWORD
flags
);
HRESULT
WINAPI
BaseOutputPinImpl_InitAllocator
(
struct
strmbase_source
*
pin
,
IMemAllocator
**
allocator
);
...
...
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