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
25240a21
Commit
25240a21
authored
Apr 02, 2020
by
Zebediah Figura
Committed by
Alexandre Julliard
Apr 03, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Get rid of BaseControlVideo_Destroy().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a17d43d6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
7 deletions
+0
-7
quartz_private.h
dlls/quartz/quartz_private.h
+0
-1
video.c
dlls/quartz/video.c
+0
-5
videorenderer.c
dlls/quartz/videorenderer.c
+0
-1
No files found.
dlls/quartz/quartz_private.h
View file @
25240a21
...
...
@@ -216,6 +216,5 @@ typedef struct BaseControlVideoFuncTable
void
basic_video_init
(
BaseControlVideo
*
video
,
struct
strmbase_filter
*
filter
,
struct
strmbase_pin
*
pin
,
const
BaseControlVideoFuncTable
*
func_table
)
DECLSPEC_HIDDEN
;
HRESULT
WINAPI
BaseControlVideo_Destroy
(
BaseControlVideo
*
pControlVideo
)
DECLSPEC_HIDDEN
;
#endif
/* __QUARTZ_PRIVATE_INCLUDED__ */
dlls/quartz/video.c
View file @
25240a21
...
...
@@ -27,11 +27,6 @@ static inline BaseControlVideo *impl_from_IBasicVideo(IBasicVideo *iface)
return
CONTAINING_RECORD
(
iface
,
BaseControlVideo
,
IBasicVideo_iface
);
}
HRESULT
WINAPI
BaseControlVideo_Destroy
(
BaseControlVideo
*
pControlVideo
)
{
return
S_OK
;
}
static
HRESULT
BaseControlVideoImpl_CheckSourceRect
(
BaseControlVideo
*
This
,
RECT
*
pSourceRect
)
{
LONG
VideoWidth
,
VideoHeight
;
...
...
dlls/quartz/videorenderer.c
View file @
25240a21
...
...
@@ -244,7 +244,6 @@ static void video_renderer_destroy(struct strmbase_renderer *iface)
struct
video_renderer
*
filter
=
impl_from_strmbase_renderer
(
iface
);
BaseControlWindow_Destroy
(
&
filter
->
baseControlWindow
);
BaseControlVideo_Destroy
(
&
filter
->
baseControlVideo
);
CloseHandle
(
filter
->
run_event
);
strmbase_renderer_cleanup
(
&
filter
->
renderer
);
free
(
filter
);
...
...
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