Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
61fbbc30
Commit
61fbbc30
authored
Sep 30, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not access p_vout->p_sys in events.c (msw).
It fixes the last cross accessed variables.
parent
96e12b04
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
123 additions
and
62 deletions
+123
-62
modules/video_output/msw/common.c
modules/video_output/msw/common.c
+17
-1
modules/video_output/msw/direct3d.c
modules/video_output/msw/direct3d.c
+14
-1
modules/video_output/msw/events.c
modules/video_output/msw/events.c
+78
-59
modules/video_output/msw/events.h
modules/video_output/msw/events.h
+14
-1
No files found.
modules/video_output/msw/common.c
View file @
61fbbc30
...
@@ -101,9 +101,25 @@ int CommonInit( vout_thread_t *p_vout )
...
@@ -101,9 +101,25 @@ int CommonInit( vout_thread_t *p_vout )
p_sys
->
p_event
=
EventThreadCreate
(
p_vout
,
&
wnd_cfg
);
p_sys
->
p_event
=
EventThreadCreate
(
p_vout
,
&
wnd_cfg
);
if
(
!
p_sys
->
p_event
)
if
(
!
p_sys
->
p_event
)
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
if
(
EventThreadStart
(
p_sys
->
p_event
)
)
event_cfg_t
cfg
;
memset
(
&
cfg
,
0
,
sizeof
(
cfg
));
#ifdef MODULE_NAME_IS_direct3d
cfg
.
use_desktop
=
p_vout
->
p_sys
->
b_desktop
;
#endif
#ifdef MODULE_NAME_IS_directx
cfg
.
use_overlay
=
p_vout
->
p_sys
->
b_using_overlay
;
#endif
event_hwnd_t
hwnd
;
if
(
EventThreadStart
(
p_sys
->
p_event
,
&
hwnd
,
&
cfg
)
)
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
p_sys
->
parent_window
=
hwnd
.
parent_window
;
p_sys
->
hparent
=
hwnd
.
hparent
;
p_sys
->
hwnd
=
hwnd
.
hwnd
;
p_sys
->
hvideownd
=
hwnd
.
hvideownd
;
p_sys
->
hfswnd
=
hwnd
.
hfswnd
;
/* Variable to indicate if the window should be on top of others */
/* Variable to indicate if the window should be on top of others */
/* Trigger a callback right now */
/* Trigger a callback right now */
var_TriggerCallback
(
p_vout
,
"video-on-top"
);
var_TriggerCallback
(
p_vout
,
"video-on-top"
);
...
...
modules/video_output/msw/direct3d.c
View file @
61fbbc30
...
@@ -303,6 +303,8 @@ static void End( vout_thread_t *p_vout )
...
@@ -303,6 +303,8 @@ static void End( vout_thread_t *p_vout )
*****************************************************************************/
*****************************************************************************/
static
int
Manage
(
vout_thread_t
*
p_vout
)
static
int
Manage
(
vout_thread_t
*
p_vout
)
{
{
vout_sys_t
*
p_sys
=
p_vout
->
p_sys
;
CommonManage
(
p_vout
);
CommonManage
(
p_vout
);
/*
/*
...
@@ -346,7 +348,18 @@ static int Manage( vout_thread_t *p_vout )
...
@@ -346,7 +348,18 @@ static int Manage( vout_thread_t *p_vout )
p_vout
->
p_sys
->
b_desktop
=
!
p_vout
->
p_sys
->
b_desktop
;
p_vout
->
p_sys
->
b_desktop
=
!
p_vout
->
p_sys
->
b_desktop
;
p_vout
->
pf_display
=
FirstDisplay
;
p_vout
->
pf_display
=
FirstDisplay
;
EventThreadStart
(
p_vout
->
p_sys
->
p_event
);
event_cfg_t
cfg
;
memset
(
&
cfg
,
0
,
sizeof
(
cfg
));
cfg
.
use_desktop
=
p_vout
->
p_sys
->
b_desktop
;
event_hwnd_t
hwnd
;
EventThreadStart
(
p_vout
->
p_sys
->
p_event
,
&
hwnd
,
&
cfg
);
p_sys
->
parent_window
=
hwnd
.
parent_window
;
p_sys
->
hparent
=
hwnd
.
hparent
;
p_sys
->
hwnd
=
hwnd
.
hwnd
;
p_sys
->
hvideownd
=
hwnd
.
hvideownd
;
p_sys
->
hfswnd
=
hwnd
.
hfswnd
;
Init
(
p_vout
);
Init
(
p_vout
);
...
...
modules/video_output/msw/events.c
View file @
61fbbc30
...
@@ -88,6 +88,10 @@ struct event_thread_t
...
@@ -88,6 +88,10 @@ struct event_thread_t
bool
b_done
;
bool
b_done
;
bool
b_error
;
bool
b_error
;
/* */
bool
use_desktop
;
bool
use_overlay
;
/* Mouse */
/* Mouse */
volatile
bool
b_cursor_hidden
;
volatile
bool
b_cursor_hidden
;
volatile
mtime_t
i_lastmoved
;
volatile
mtime_t
i_lastmoved
;
...
@@ -102,10 +106,16 @@ struct event_thread_t
...
@@ -102,10 +106,16 @@ struct event_thread_t
/* */
/* */
unsigned
i_changes
;
unsigned
i_changes
;
/* */
vout_window_t
*
parent_window
;
HWND
hparent
;
HWND
hwnd
;
HWND
hvideownd
;
HWND
hfswnd
;
};
};
static
int
DirectXCreateWindow
(
event_thread_t
*
);
static
int
DirectXCreateWindow
(
event_thread_t
*
);
static
void
DirectXCloseWindow
(
vout_thread_t
*
p_vout
);
static
void
DirectXCloseWindow
(
event_thread_t
*
);
static
long
FAR
PASCAL
DirectXEventProc
(
HWND
,
UINT
,
WPARAM
,
LPARAM
);
static
long
FAR
PASCAL
DirectXEventProc
(
HWND
,
UINT
,
WPARAM
,
LPARAM
);
static
void
DirectXPopupMenu
(
event_thread_t
*
p_event
,
bool
b_open
)
static
void
DirectXPopupMenu
(
event_thread_t
*
p_event
,
bool
b_open
)
...
@@ -203,7 +213,7 @@ static void *EventThread( void *p_this )
...
@@ -203,7 +213,7 @@ static void *EventThread( void *p_this )
&
i_x
,
&
i_y
,
&
i_width
,
&
i_height
);
&
i_x
,
&
i_y
,
&
i_width
,
&
i_height
);
vlc_mutex_unlock
(
&
p_event
->
lock
);
vlc_mutex_unlock
(
&
p_event
->
lock
);
if
(
msg
.
hwnd
==
p_event
->
p_vout
->
p_sys
->
hvideownd
)
if
(
msg
.
hwnd
==
p_event
->
hvideownd
)
{
{
/* Child window */
/* Child window */
i_x
=
i_y
=
0
;
i_x
=
i_y
=
0
;
...
@@ -378,9 +388,9 @@ static void *EventThread( void *p_this )
...
@@ -378,9 +388,9 @@ static void *EventThread( void *p_this )
if
(
pwz_title
)
if
(
pwz_title
)
{
{
SetWindowText
(
p_
vout
->
p_sys
->
hwnd
,
(
LPCTSTR
)
pwz_title
);
SetWindowText
(
p_
event
->
hwnd
,
(
LPCTSTR
)
pwz_title
);
if
(
p_
vout
->
p_sys
->
hfswnd
)
if
(
p_
event
->
hfswnd
)
SetWindowText
(
p_
vout
->
p_sys
->
hfswnd
,
(
LPCTSTR
)
pwz_title
);
SetWindowText
(
p_
event
->
hfswnd
,
(
LPCTSTR
)
pwz_title
);
free
(
pwz_title
);
free
(
pwz_title
);
}
}
break
;
break
;
...
@@ -398,15 +408,15 @@ static void *EventThread( void *p_this )
...
@@ -398,15 +408,15 @@ static void *EventThread( void *p_this )
}
/* End Main loop */
}
/* End Main loop */
/* Check for WM_QUIT if we created the window */
/* Check for WM_QUIT if we created the window */
if
(
!
p_event
->
p_vout
->
p_sys
->
hparent
&&
msg
.
message
==
WM_QUIT
)
if
(
!
p_event
->
hparent
&&
msg
.
message
==
WM_QUIT
)
{
{
msg_Warn
(
p_vout
,
"WM_QUIT... should not happen!!"
);
msg_Warn
(
p_vout
,
"WM_QUIT... should not happen!!"
);
p_event
->
p_vout
->
p_sys
->
hwnd
=
NULL
;
/* Window already destroyed */
p_event
->
hwnd
=
NULL
;
/* Window already destroyed */
}
}
msg_Dbg
(
p_vout
,
"DirectXEventThread terminating"
);
msg_Dbg
(
p_vout
,
"DirectXEventThread terminating"
);
DirectXCloseWindow
(
p_event
->
p_vout
);
DirectXCloseWindow
(
p_event
);
vlc_restorecancel
(
canc
);
vlc_restorecancel
(
canc
);
return
NULL
;
return
NULL
;
}
}
...
@@ -438,13 +448,13 @@ static int DirectXCreateWindow( event_thread_t *p_event )
...
@@ -438,13 +448,13 @@ static int DirectXCreateWindow( event_thread_t *p_event )
hInstance
=
GetModuleHandle
(
NULL
);
hInstance
=
GetModuleHandle
(
NULL
);
#ifdef MODULE_NAME_IS_direct3d
#ifdef MODULE_NAME_IS_direct3d
if
(
!
p_
vout
->
p_sys
->
b
_desktop
)
if
(
!
p_
event
->
use
_desktop
)
{
{
#endif
#endif
/* If an external window was specified, we'll draw in it. */
/* If an external window was specified, we'll draw in it. */
p_
vout
->
p_sys
->
parent_window
=
vout_window_New
(
VLC_OBJECT
(
p_vout
),
NULL
,
&
p_event
->
wnd_cfg
);
p_
event
->
parent_window
=
vout_window_New
(
VLC_OBJECT
(
p_vout
),
NULL
,
&
p_event
->
wnd_cfg
);
if
(
p_
vout
->
p_sys
->
parent_window
)
if
(
p_
event
->
parent_window
)
p_
vout
->
p_sys
->
hparent
=
p_vout
->
p_sys
->
parent_window
->
handle
.
hwnd
;
p_
event
->
hparent
=
p_event
->
parent_window
->
handle
.
hwnd
;
#ifdef MODULE_NAME_IS_direct3d
#ifdef MODULE_NAME_IS_direct3d
}
}
else
else
...
@@ -455,7 +465,7 @@ static int DirectXCreateWindow( event_thread_t *p_event )
...
@@ -455,7 +465,7 @@ static int DirectXCreateWindow( event_thread_t *p_event )
if
(
hwnd
)
hwnd
=
FindWindowEx
(
hwnd
,
NULL
,
_T
(
"SysListView32"
),
NULL
);
if
(
hwnd
)
hwnd
=
FindWindowEx
(
hwnd
,
NULL
,
_T
(
"SysListView32"
),
NULL
);
if
(
!
hwnd
)
if
(
!
hwnd
)
msg_Err
(
p_vout
,
"Couldn't find desktop icon window. Desktop mode can't be established."
);
msg_Err
(
p_vout
,
"Couldn't find desktop icon window. Desktop mode can't be established."
);
p_
vout
->
p_sys
->
hparent
=
hwnd
;
p_
event
->
hparent
=
hwnd
;
}
}
#endif
#endif
...
@@ -537,7 +547,7 @@ static int DirectXCreateWindow( event_thread_t *p_event )
...
@@ -537,7 +547,7 @@ static int DirectXCreateWindow( event_thread_t *p_event )
// It messes up the fullscreen window.
// It messes up the fullscreen window.
}
}
if
(
p_
vout
->
p_sys
->
hparent
)
if
(
p_
event
->
hparent
)
{
{
i_style
=
WS_VISIBLE
|
WS_CLIPCHILDREN
|
WS_CHILD
;
i_style
=
WS_VISIBLE
|
WS_CLIPCHILDREN
|
WS_CHILD
;
i_stylex
=
0
;
i_stylex
=
0
;
...
@@ -546,7 +556,7 @@ static int DirectXCreateWindow( event_thread_t *p_event )
...
@@ -546,7 +556,7 @@ static int DirectXCreateWindow( event_thread_t *p_event )
p_event
->
i_window_style
=
i_style
;
p_event
->
i_window_style
=
i_style
;
/* Create the window */
/* Create the window */
p_
vout
->
p_sys
->
hwnd
=
p_
event
->
hwnd
=
CreateWindowEx
(
WS_EX_NOPARENTNOTIFY
|
i_stylex
,
CreateWindowEx
(
WS_EX_NOPARENTNOTIFY
|
i_stylex
,
_T
(
"VLC DirectX"
),
/* name of window class */
_T
(
"VLC DirectX"
),
/* name of window class */
_T
(
VOUT_TITLE
)
_T
(
" (DirectX Output)"
),
/* window title */
_T
(
VOUT_TITLE
)
_T
(
" (DirectX Output)"
),
/* window title */
...
@@ -557,31 +567,31 @@ static int DirectXCreateWindow( event_thread_t *p_event )
...
@@ -557,31 +567,31 @@ static int DirectXCreateWindow( event_thread_t *p_event )
(
UINT
)
p_event
->
wnd_cfg
.
y
,
/* default Y coordinate */
(
UINT
)
p_event
->
wnd_cfg
.
y
,
/* default Y coordinate */
rect_window
.
right
-
rect_window
.
left
,
/* window width */
rect_window
.
right
-
rect_window
.
left
,
/* window width */
rect_window
.
bottom
-
rect_window
.
top
,
/* window height */
rect_window
.
bottom
-
rect_window
.
top
,
/* window height */
p_
vout
->
p_sys
->
hparent
,
/* parent window */
p_
event
->
hparent
,
/* parent window */
NULL
,
/* no menu in this window */
NULL
,
/* no menu in this window */
hInstance
,
/* handle of this program instance */
hInstance
,
/* handle of this program instance */
(
LPVOID
)
p_
vout
);
/* send p_vout to WM_CREATE */
(
LPVOID
)
p_
event
);
/* send p_vout to WM_CREATE */
if
(
!
p_
vout
->
p_sys
->
hwnd
)
if
(
!
p_
event
->
hwnd
)
{
{
msg_Warn
(
p_vout
,
"DirectXCreateWindow create window FAILED (err=%lu)"
,
GetLastError
()
);
msg_Warn
(
p_vout
,
"DirectXCreateWindow create window FAILED (err=%lu)"
,
GetLastError
()
);
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
if
(
p_
vout
->
p_sys
->
hparent
)
if
(
p_
event
->
hparent
)
{
{
LONG
i_style
;
LONG
i_style
;
/* We don't want the window owner to overwrite our client area */
/* We don't want the window owner to overwrite our client area */
i_style
=
GetWindowLong
(
p_
vout
->
p_sys
->
hparent
,
GWL_STYLE
);
i_style
=
GetWindowLong
(
p_
event
->
hparent
,
GWL_STYLE
);
if
(
!
(
i_style
&
WS_CLIPCHILDREN
)
)
if
(
!
(
i_style
&
WS_CLIPCHILDREN
)
)
/* Hmmm, apparently this is a blocking call... */
/* Hmmm, apparently this is a blocking call... */
SetWindowLong
(
p_
vout
->
p_sys
->
hparent
,
GWL_STYLE
,
SetWindowLong
(
p_
event
->
hparent
,
GWL_STYLE
,
i_style
|
WS_CLIPCHILDREN
);
i_style
|
WS_CLIPCHILDREN
);
/* Create our fullscreen window */
/* Create our fullscreen window */
p_
vout
->
p_sys
->
hfswnd
=
p_
event
->
hfswnd
=
CreateWindowEx
(
WS_EX_APPWINDOW
,
_T
(
"VLC DirectX"
),
CreateWindowEx
(
WS_EX_APPWINDOW
,
_T
(
"VLC DirectX"
),
_T
(
VOUT_TITLE
)
_T
(
" (DirectX Output)"
),
_T
(
VOUT_TITLE
)
_T
(
" (DirectX Output)"
),
WS_OVERLAPPEDWINDOW
|
WS_CLIPCHILDREN
|
WS_SIZEBOX
,
WS_OVERLAPPEDWINDOW
|
WS_CLIPCHILDREN
|
WS_SIZEBOX
,
...
@@ -591,7 +601,7 @@ static int DirectXCreateWindow( event_thread_t *p_event )
...
@@ -591,7 +601,7 @@ static int DirectXCreateWindow( event_thread_t *p_event )
}
}
/* Append a "Always On Top" entry in the system menu */
/* Append a "Always On Top" entry in the system menu */
hMenu
=
GetSystemMenu
(
p_
vout
->
p_sys
->
hwnd
,
FALSE
);
hMenu
=
GetSystemMenu
(
p_
event
->
hwnd
,
FALSE
);
AppendMenu
(
hMenu
,
MF_SEPARATOR
,
0
,
_T
(
""
)
);
AppendMenu
(
hMenu
,
MF_SEPARATOR
,
0
,
_T
(
""
)
);
AppendMenu
(
hMenu
,
MF_STRING
|
MF_UNCHECKED
,
AppendMenu
(
hMenu
,
MF_STRING
|
MF_UNCHECKED
,
IDM_TOGGLE_ON_TOP
,
_T
(
"Always on &Top"
)
);
IDM_TOGGLE_ON_TOP
,
_T
(
"Always on &Top"
)
);
...
@@ -599,23 +609,23 @@ static int DirectXCreateWindow( event_thread_t *p_event )
...
@@ -599,23 +609,23 @@ static int DirectXCreateWindow( event_thread_t *p_event )
/* Create video sub-window. This sub window will always exactly match
/* Create video sub-window. This sub window will always exactly match
* the size of the video, which allows us to use crazy overlay colorkeys
* the size of the video, which allows us to use crazy overlay colorkeys
* without having them shown outside of the video area. */
* without having them shown outside of the video area. */
p_
vout
->
p_sys
->
hvideownd
=
p_
event
->
hvideownd
=
CreateWindow
(
_T
(
"VLC DirectX video"
),
_T
(
""
),
/* window class */
CreateWindow
(
_T
(
"VLC DirectX video"
),
_T
(
""
),
/* window class */
WS_CHILD
,
/* window style, not visible initially */
WS_CHILD
,
/* window style, not visible initially */
0
,
0
,
0
,
0
,
p_vout
->
render
.
i_width
,
/* default width */
p_vout
->
render
.
i_width
,
/* default width */
p_vout
->
render
.
i_height
,
/* default height */
p_vout
->
render
.
i_height
,
/* default height */
p_
vout
->
p_sys
->
hwnd
,
/* parent window */
p_
event
->
hwnd
,
/* parent window */
NULL
,
hInstance
,
NULL
,
hInstance
,
(
LPVOID
)
p_
vout
);
/* send p_vout to WM_CREATE */
(
LPVOID
)
p_
event
);
/* send p_vout to WM_CREATE */
if
(
!
p_
vout
->
p_sys
->
hvideownd
)
if
(
!
p_
event
->
hvideownd
)
msg_Warn
(
p_vout
,
"can't create video sub-window"
);
msg_Warn
(
p_vout
,
"can't create video sub-window"
);
else
else
msg_Dbg
(
p_vout
,
"created video sub-window"
);
msg_Dbg
(
p_vout
,
"created video sub-window"
);
/* Now display the window */
/* Now display the window */
ShowWindow
(
p_
vout
->
p_sys
->
hwnd
,
SW_SHOW
);
ShowWindow
(
p_
event
->
hwnd
,
SW_SHOW
);
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
...
@@ -625,18 +635,19 @@ static int DirectXCreateWindow( event_thread_t *p_event )
...
@@ -625,18 +635,19 @@ static int DirectXCreateWindow( event_thread_t *p_event )
*****************************************************************************
*****************************************************************************
* This function returns all resources allocated by DirectXCreateWindow.
* This function returns all resources allocated by DirectXCreateWindow.
*****************************************************************************/
*****************************************************************************/
static
void
DirectXCloseWindow
(
vout_thread_t
*
p_vou
t
)
static
void
DirectXCloseWindow
(
event_thread_t
*
p_even
t
)
{
{
vout_thread_t
*
p_vout
=
p_event
->
p_vout
;
msg_Dbg
(
p_vout
,
"DirectXCloseWindow"
);
msg_Dbg
(
p_vout
,
"DirectXCloseWindow"
);
DestroyWindow
(
p_
vout
->
p_sys
->
hwnd
);
DestroyWindow
(
p_
event
->
hwnd
);
if
(
p_
vout
->
p_sys
->
hfswnd
)
DestroyWindow
(
p_vout
->
p_sys
->
hfswnd
);
if
(
p_
event
->
hfswnd
)
DestroyWindow
(
p_event
->
hfswnd
);
#ifdef MODULE_NAME_IS_direct3d
#ifdef MODULE_NAME_IS_direct3d
if
(
!
p_
vout
->
p_sys
->
b
_desktop
)
if
(
!
p_
event
->
use
_desktop
)
#endif
#endif
vout_window_Delete
(
p_
vout
->
p_sys
->
parent_window
);
vout_window_Delete
(
p_
event
->
parent_window
);
p_
vout
->
p_sys
->
hwnd
=
NULL
;
p_
event
->
hwnd
=
NULL
;
/* We don't unregister the Window Class because it could lead to race
/* We don't unregister the Window Class because it could lead to race
* conditions and it will be done anyway by the system when the app will
* conditions and it will be done anyway by the system when the app will
...
@@ -657,26 +668,27 @@ static void DirectXCloseWindow( vout_thread_t *p_vout )
...
@@ -657,26 +668,27 @@ static void DirectXCloseWindow( vout_thread_t *p_vout )
static
long
FAR
PASCAL
DirectXEventProc
(
HWND
hwnd
,
UINT
message
,
static
long
FAR
PASCAL
DirectXEventProc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
WPARAM
wParam
,
LPARAM
lParam
)
{
{
vout_thread_t
*
p_vou
t
;
event_thread_t
*
p_even
t
;
if
(
message
==
WM_CREATE
)
if
(
message
==
WM_CREATE
)
{
{
/* Store p_vout for future use */
/* Store p_vout for future use */
p_
vout
=
(
vou
t_thread_t
*
)((
CREATESTRUCT
*
)
lParam
)
->
lpCreateParams
;
p_
event
=
(
even
t_thread_t
*
)((
CREATESTRUCT
*
)
lParam
)
->
lpCreateParams
;
SetWindowLongPtr
(
hwnd
,
GWLP_USERDATA
,
(
LONG_PTR
)
p_
vou
t
);
SetWindowLongPtr
(
hwnd
,
GWLP_USERDATA
,
(
LONG_PTR
)
p_
even
t
);
return
TRUE
;
return
TRUE
;
}
}
else
else
{
{
LONG_PTR
p_user_data
=
GetWindowLongPtr
(
hwnd
,
GWLP_USERDATA
);
LONG_PTR
p_user_data
=
GetWindowLongPtr
(
hwnd
,
GWLP_USERDATA
);
p_
vout
=
(
vou
t_thread_t
*
)
p_user_data
;
p_
event
=
(
even
t_thread_t
*
)
p_user_data
;
if
(
!
p_
vou
t
)
if
(
!
p_
even
t
)
{
{
/* Hmmm mozilla does manage somehow to save the pointer to our
/* Hmmm mozilla does manage somehow to save the pointer to our
* windowproc and still calls it after the vout has been closed. */
* windowproc and still calls it after the vout has been closed. */
return
DefWindowProc
(
hwnd
,
message
,
wParam
,
lParam
);
return
DefWindowProc
(
hwnd
,
message
,
wParam
,
lParam
);
}
}
}
}
vout_thread_t
*
p_vout
=
p_event
->
p_vout
;
#ifndef UNDER_CE
#ifndef UNDER_CE
/* Catch the screensaver and the monitor turn-off */
/* Catch the screensaver and the monitor turn-off */
...
@@ -688,14 +700,14 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
...
@@ -688,14 +700,14 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
}
}
#endif
#endif
if
(
hwnd
==
p_
vout
->
p_sys
->
hvideownd
)
if
(
hwnd
==
p_
event
->
hvideownd
)
{
{
switch
(
message
)
switch
(
message
)
{
{
#ifdef MODULE_NAME_IS_directx
#ifdef MODULE_NAME_IS_directx
case
WM_ERASEBKGND
:
case
WM_ERASEBKGND
:
/* For overlay, we need to erase background */
/* For overlay, we need to erase background */
return
!
p_
vout
->
p_sys
->
b_using
_overlay
?
return
!
p_
event
->
use
_overlay
?
1
:
DefWindowProc
(
hwnd
,
message
,
wParam
,
lParam
);
1
:
DefWindowProc
(
hwnd
,
message
,
wParam
,
lParam
);
case
WM_PAINT
:
case
WM_PAINT
:
/*
/*
...
@@ -705,7 +717,7 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
...
@@ -705,7 +717,7 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
** regular interval, therefore dirty regions can be ignored
** regular interval, therefore dirty regions can be ignored
** to minimize repaint.
** to minimize repaint.
*/
*/
if
(
!
p_
vout
->
p_sys
->
b_using
_overlay
)
if
(
!
p_
event
->
use
_overlay
)
{
{
ValidateRect
(
hwnd
,
NULL
);
ValidateRect
(
hwnd
,
NULL
);
}
}
...
@@ -782,14 +794,14 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
...
@@ -782,14 +794,14 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
GXSuspend
();
GXSuspend
();
#endif
#endif
#ifdef UNDER_CE
#ifdef UNDER_CE
if
(
hwnd
==
p_
vout
->
p_sys
->
hfswnd
)
if
(
hwnd
==
p_
event
->
hfswnd
)
{
{
HWND
htbar
=
FindWindow
(
_T
(
"HHTaskbar"
),
NULL
);
HWND
htbar
=
FindWindow
(
_T
(
"HHTaskbar"
),
NULL
);
ShowWindow
(
htbar
,
SW_SHOW
);
ShowWindow
(
htbar
,
SW_SHOW
);
}
}
if
(
!
p_
vout
->
p_sys
->
hparent
||
if
(
!
p_
event
->
hparent
||
hwnd
==
p_
vout
->
p_sys
->
hfswnd
)
hwnd
==
p_
event
->
hfswnd
)
{
{
SHFullScreen
(
hwnd
,
SHFS_SHOWSIPBUTTON
);
SHFullScreen
(
hwnd
,
SHFS_SHOWSIPBUTTON
);
}
}
...
@@ -801,24 +813,22 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
...
@@ -801,24 +813,22 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
GXResume
();
GXResume
();
#endif
#endif
#ifdef UNDER_CE
#ifdef UNDER_CE
if
(
p_
vout
->
p_sys
->
hparent
&&
if
(
p_
event
->
hparent
&&
hwnd
!=
p_
vout
->
p_sys
->
hfswnd
&&
p_vout
->
b_fullscreen
)
hwnd
!=
p_
event
->
hfswnd
&&
p_vout
->
b_fullscreen
)
{
{
event_thread_t
*
p_event
=
p_vout
->
p_sys
->
p_event
;
vlc_mutex_lock
(
&
p_event
->
lock
);
vlc_mutex_lock
(
&
p_event
->
lock
);
p_event
->
i_changes
|=
VOUT_FULLSCREEN_CHANGE
;
p_event
->
i_changes
|=
VOUT_FULLSCREEN_CHANGE
;
vlc_mutex_unlock
(
&
p_event
->
lock
);
vlc_mutex_unlock
(
&
p_event
->
lock
);
}
}
if
(
hwnd
==
p_
vout
->
p_sys
->
hfswnd
)
if
(
hwnd
==
p_
event
->
hfswnd
)
{
{
HWND
htbar
=
FindWindow
(
_T
(
"HHTaskbar"
),
NULL
);
HWND
htbar
=
FindWindow
(
_T
(
"HHTaskbar"
),
NULL
);
ShowWindow
(
htbar
,
SW_HIDE
);
ShowWindow
(
htbar
,
SW_HIDE
);
}
}
if
(
!
p_
vout
->
p_sys
->
hparent
||
if
(
!
p_
event
->
hparent
||
hwnd
==
p_
vout
->
p_sys
->
hfswnd
)
hwnd
==
p_
event
->
hfswnd
)
{
{
SHFullScreen
(
hwnd
,
SHFS_HIDESIPBUTTON
);
SHFullScreen
(
hwnd
,
SHFS_HIDESIPBUTTON
);
}
}
...
@@ -913,9 +923,9 @@ void EventThreadMouseAutoHide( event_thread_t *p_event )
...
@@ -913,9 +923,9 @@ void EventThreadMouseAutoHide( event_thread_t *p_event )
GetCursorPos
(
&
point
);
GetCursorPos
(
&
point
);
HWND
hwnd
=
WindowFromPoint
(
point
);
HWND
hwnd
=
WindowFromPoint
(
point
);
if
(
hwnd
==
p_
vout
->
p_sys
->
hwnd
||
hwnd
==
p_vout
->
p_sys
->
hvideownd
)
if
(
hwnd
==
p_
event
->
hwnd
||
hwnd
==
p_event
->
hvideownd
)
{
{
PostMessage
(
p_
vout
->
p_sys
->
hwnd
,
WM_VLC_HIDE_MOUSE
,
0
,
0
);
PostMessage
(
p_
event
->
hwnd
,
WM_VLC_HIDE_MOUSE
,
0
,
0
);
}
}
else
else
{
{
...
@@ -936,7 +946,7 @@ void EventThreadUpdateTitle( event_thread_t *p_event, const char *psz_fallback )
...
@@ -936,7 +946,7 @@ void EventThreadUpdateTitle( event_thread_t *p_event, const char *psz_fallback )
p_event
->
psz_title
=
psz_title
;
p_event
->
psz_title
=
psz_title
;
vlc_mutex_unlock
(
&
p_event
->
lock
);
vlc_mutex_unlock
(
&
p_event
->
lock
);
PostMessage
(
p_event
->
p_vout
->
p_sys
->
hwnd
,
WM_VLC_CHANGE_TEXT
,
0
,
0
);
PostMessage
(
p_event
->
hwnd
,
WM_VLC_CHANGE_TEXT
,
0
,
0
);
}
}
unsigned
EventThreadRetreiveChanges
(
event_thread_t
*
p_event
)
unsigned
EventThreadRetreiveChanges
(
event_thread_t
*
p_event
)
{
{
...
@@ -1004,8 +1014,11 @@ void EventThreadDestroy( event_thread_t *p_event )
...
@@ -1004,8 +1014,11 @@ void EventThreadDestroy( event_thread_t *p_event )
free
(
p_event
);
free
(
p_event
);
}
}
int
EventThreadStart
(
event_thread_t
*
p_event
)
int
EventThreadStart
(
event_thread_t
*
p_event
,
event_hwnd_t
*
p_hwnd
,
const
event_cfg_t
*
p_cfg
)
{
{
p_event
->
use_desktop
=
p_cfg
->
use_desktop
;
p_event
->
use_overlay
=
p_cfg
->
use_overlay
;
p_event
->
i_changes
=
0
;
p_event
->
i_changes
=
0
;
p_event
->
b_ready
=
false
;
p_event
->
b_ready
=
false
;
...
@@ -1032,6 +1045,12 @@ int EventThreadStart( event_thread_t *p_event )
...
@@ -1032,6 +1045,12 @@ int EventThreadStart( event_thread_t *p_event )
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
msg_Dbg
(
p_event
->
p_vout
,
"Vout EventThread running"
);
msg_Dbg
(
p_event
->
p_vout
,
"Vout EventThread running"
);
p_hwnd
->
parent_window
=
p_event
->
parent_window
;
p_hwnd
->
hparent
=
p_event
->
hparent
;
p_hwnd
->
hwnd
=
p_event
->
hwnd
;
p_hwnd
->
hvideownd
=
p_event
->
hvideownd
;
p_hwnd
->
hfswnd
=
p_event
->
hfswnd
;
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
...
@@ -1046,8 +1065,8 @@ void EventThreadStop( event_thread_t *p_event )
...
@@ -1046,8 +1065,8 @@ void EventThreadStop( event_thread_t *p_event )
/* we need to be sure Vout EventThread won't stay stuck in
/* we need to be sure Vout EventThread won't stay stuck in
* GetMessage, so we send a fake message */
* GetMessage, so we send a fake message */
if
(
p_event
->
p_vout
->
p_sys
->
hwnd
)
if
(
p_event
->
hwnd
)
PostMessage
(
p_event
->
p_vout
->
p_sys
->
hwnd
,
WM_NULL
,
0
,
0
);
PostMessage
(
p_event
->
hwnd
,
WM_NULL
,
0
,
0
);
vlc_join
(
p_event
->
thread
,
NULL
);
vlc_join
(
p_event
->
thread
,
NULL
);
p_event
->
b_ready
=
false
;
p_event
->
b_ready
=
false
;
...
...
modules/video_output/msw/events.h
View file @
61fbbc30
...
@@ -29,9 +29,22 @@
...
@@ -29,9 +29,22 @@
*/
*/
typedef
struct
event_thread_t
event_thread_t
;
typedef
struct
event_thread_t
event_thread_t
;
typedef
struct
{
bool
use_desktop
;
/* direct3d */
bool
use_overlay
;
/* directx */
}
event_cfg_t
;
typedef
struct
{
vout_window_t
*
parent_window
;
HWND
hparent
;
HWND
hwnd
;
HWND
hvideownd
;
HWND
hfswnd
;
}
event_hwnd_t
;
event_thread_t
*
EventThreadCreate
(
vout_thread_t
*
,
const
vout_window_cfg_t
*
);
event_thread_t
*
EventThreadCreate
(
vout_thread_t
*
,
const
vout_window_cfg_t
*
);
void
EventThreadDestroy
(
event_thread_t
*
);
void
EventThreadDestroy
(
event_thread_t
*
);
int
EventThreadStart
(
event_thread_t
*
);
int
EventThreadStart
(
event_thread_t
*
,
event_hwnd_t
*
,
const
event_cfg_t
*
);
void
EventThreadStop
(
event_thread_t
*
);
void
EventThreadStop
(
event_thread_t
*
);
void
EventThreadMouseAutoHide
(
event_thread_t
*
);
void
EventThreadMouseAutoHide
(
event_thread_t
*
);
...
...
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