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
7de86140
Commit
7de86140
authored
Apr 24, 2020
by
Zebediah Figura
Committed by
Alexandre Julliard
Apr 27, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests: Remove some no longer necessary callbacks.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1a4e9a84
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
48 deletions
+0
-48
avidec.c
dlls/quartz/tests/avidec.c
+0
-7
avisplit.c
dlls/quartz/tests/avisplit.c
+0
-7
filesource.c
dlls/quartz/tests/filesource.c
+0
-6
mpegsplit.c
dlls/quartz/tests/mpegsplit.c
+0
-7
videorenderer.c
dlls/quartz/tests/videorenderer.c
+0
-7
vmr7.c
dlls/quartz/tests/vmr7.c
+0
-7
vmr9.c
dlls/quartz/tests/vmr9.c
+0
-7
No files found.
dlls/quartz/tests/avidec.c
View file @
7de86140
...
...
@@ -769,11 +769,6 @@ static const struct strmbase_filter_ops testfilter_ops =
.
filter_destroy
=
testfilter_destroy
,
};
static
HRESULT
testsource_query_accept
(
struct
strmbase_pin
*
iface
,
const
AM_MEDIA_TYPE
*
mt
)
{
return
S_OK
;
}
static
HRESULT
WINAPI
testsource_DecideAllocator
(
struct
strmbase_source
*
iface
,
IMemInputPin
*
peer
,
IMemAllocator
**
allocator
)
{
...
...
@@ -782,8 +777,6 @@ static HRESULT WINAPI testsource_DecideAllocator(struct strmbase_source *iface,
static
const
struct
strmbase_source_ops
testsource_ops
=
{
.
base
.
pin_query_accept
=
testsource_query_accept
,
.
base
.
pin_get_media_type
=
strmbase_pin_get_media_type
,
.
pfnAttemptConnection
=
BaseOutputPinImpl_AttemptConnection
,
.
pfnDecideAllocator
=
testsource_DecideAllocator
,
};
...
...
dlls/quartz/tests/avisplit.c
View file @
7de86140
...
...
@@ -836,11 +836,6 @@ static const struct strmbase_filter_ops testfilter_ops =
.
filter_destroy
=
testfilter_destroy
,
};
static
HRESULT
testsource_query_accept
(
struct
strmbase_pin
*
iface
,
const
AM_MEDIA_TYPE
*
mt
)
{
return
S_OK
;
}
static
HRESULT
testsource_query_interface
(
struct
strmbase_pin
*
iface
,
REFIID
iid
,
void
**
out
)
{
struct
testfilter
*
filter
=
impl_from_strmbase_filter
(
iface
->
filter
);
...
...
@@ -877,8 +872,6 @@ static HRESULT WINAPI testsource_AttemptConnection(struct strmbase_source *iface
static
const
struct
strmbase_source_ops
testsource_ops
=
{
.
base
.
pin_query_interface
=
testsource_query_interface
,
.
base
.
pin_query_accept
=
testsource_query_accept
,
.
base
.
pin_get_media_type
=
strmbase_pin_get_media_type
,
.
pfnAttemptConnection
=
testsource_AttemptConnection
,
};
...
...
dlls/quartz/tests/filesource.c
View file @
7de86140
...
...
@@ -1240,11 +1240,6 @@ static const struct strmbase_filter_ops testsink_ops =
.
filter_destroy
=
testsink_destroy
,
};
static
HRESULT
testsink_query_accept
(
struct
strmbase_pin
*
iface
,
const
AM_MEDIA_TYPE
*
mt
)
{
return
S_OK
;
}
static
HRESULT
testsink_get_media_type
(
struct
strmbase_pin
*
iface
,
unsigned
int
index
,
AM_MEDIA_TYPE
*
mt
)
{
struct
testsink
*
filter
=
impl_sink_from_strmbase_filter
(
iface
->
filter
);
...
...
@@ -1274,7 +1269,6 @@ static void testsink_disconnect(struct strmbase_sink *iface)
static
const
struct
strmbase_sink_ops
testsink_pin_ops
=
{
.
base
.
pin_query_accept
=
testsink_query_accept
,
.
base
.
pin_get_media_type
=
testsink_get_media_type
,
.
sink_connect
=
testsink_connect
,
.
sink_disconnect
=
testsink_disconnect
,
...
...
dlls/quartz/tests/mpegsplit.c
View file @
7de86140
...
...
@@ -1126,11 +1126,6 @@ static const struct strmbase_filter_ops testfilter_ops =
.
filter_destroy
=
testfilter_destroy
,
};
static
HRESULT
testsource_query_accept
(
struct
strmbase_pin
*
iface
,
const
AM_MEDIA_TYPE
*
mt
)
{
return
S_OK
;
}
static
HRESULT
testsource_query_interface
(
struct
strmbase_pin
*
iface
,
REFIID
iid
,
void
**
out
)
{
struct
testfilter
*
filter
=
impl_from_strmbase_filter
(
iface
->
filter
);
...
...
@@ -1167,8 +1162,6 @@ static HRESULT WINAPI testsource_AttemptConnection(struct strmbase_source *iface
static
const
struct
strmbase_source_ops
testsource_ops
=
{
.
base
.
pin_query_interface
=
testsource_query_interface
,
.
base
.
pin_query_accept
=
testsource_query_accept
,
.
base
.
pin_get_media_type
=
strmbase_pin_get_media_type
,
.
pfnAttemptConnection
=
testsource_AttemptConnection
,
};
...
...
dlls/quartz/tests/videorenderer.c
View file @
7de86140
...
...
@@ -517,11 +517,6 @@ static const struct strmbase_filter_ops testfilter_ops =
.
filter_destroy
=
testfilter_destroy
,
};
static
HRESULT
testsource_query_accept
(
struct
strmbase_pin
*
iface
,
const
AM_MEDIA_TYPE
*
mt
)
{
return
S_OK
;
}
static
HRESULT
WINAPI
testsource_DecideAllocator
(
struct
strmbase_source
*
iface
,
IMemInputPin
*
peer
,
IMemAllocator
**
allocator
)
{
...
...
@@ -530,8 +525,6 @@ static HRESULT WINAPI testsource_DecideAllocator(struct strmbase_source *iface,
static
const
struct
strmbase_source_ops
testsource_ops
=
{
.
base
.
pin_query_accept
=
testsource_query_accept
,
.
base
.
pin_get_media_type
=
strmbase_pin_get_media_type
,
.
pfnAttemptConnection
=
BaseOutputPinImpl_AttemptConnection
,
.
pfnDecideAllocator
=
testsource_DecideAllocator
,
};
...
...
dlls/quartz/tests/vmr7.c
View file @
7de86140
...
...
@@ -867,11 +867,6 @@ static const struct strmbase_filter_ops testfilter_ops =
.
filter_destroy
=
testfilter_destroy
,
};
static
HRESULT
testsource_query_accept
(
struct
strmbase_pin
*
iface
,
const
AM_MEDIA_TYPE
*
mt
)
{
return
S_OK
;
}
static
HRESULT
WINAPI
testsource_DecideAllocator
(
struct
strmbase_source
*
iface
,
IMemInputPin
*
peer
,
IMemAllocator
**
allocator
)
{
...
...
@@ -880,8 +875,6 @@ static HRESULT WINAPI testsource_DecideAllocator(struct strmbase_source *iface,
static
const
struct
strmbase_source_ops
testsource_ops
=
{
.
base
.
pin_query_accept
=
testsource_query_accept
,
.
base
.
pin_get_media_type
=
strmbase_pin_get_media_type
,
.
pfnAttemptConnection
=
BaseOutputPinImpl_AttemptConnection
,
.
pfnDecideAllocator
=
testsource_DecideAllocator
,
};
...
...
dlls/quartz/tests/vmr9.c
View file @
7de86140
...
...
@@ -876,11 +876,6 @@ static const struct strmbase_filter_ops testfilter_ops =
.
filter_destroy
=
testfilter_destroy
,
};
static
HRESULT
testsource_query_accept
(
struct
strmbase_pin
*
iface
,
const
AM_MEDIA_TYPE
*
mt
)
{
return
S_OK
;
}
static
HRESULT
WINAPI
testsource_DecideAllocator
(
struct
strmbase_source
*
iface
,
IMemInputPin
*
peer
,
IMemAllocator
**
allocator
)
{
...
...
@@ -889,8 +884,6 @@ static HRESULT WINAPI testsource_DecideAllocator(struct strmbase_source *iface,
static
const
struct
strmbase_source_ops
testsource_ops
=
{
.
base
.
pin_query_accept
=
testsource_query_accept
,
.
base
.
pin_get_media_type
=
strmbase_pin_get_media_type
,
.
pfnAttemptConnection
=
BaseOutputPinImpl_AttemptConnection
,
.
pfnDecideAllocator
=
testsource_DecideAllocator
,
};
...
...
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