Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
727196a7
Commit
727196a7
authored
Sep 15, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wake up screensaver thread every 30 seconds rather than 1/4 seconds
parent
8e6fac32
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
26 deletions
+30
-26
modules/misc/screensaver.c
modules/misc/screensaver.c
+30
-26
No files found.
modules/misc/screensaver.c
View file @
727196a7
...
...
@@ -134,50 +134,54 @@ static void Deactivate( vlc_object_t *p_this )
*****************************************************************************/
static
void
Run
(
intf_thread_t
*
p_intf
)
{
int
i_lastcall
=
0
;
mtime_t
deadline
=
mdate
()
;
#ifdef HAVE_DBUS
p_intf
->
p_sys
->
p_connection
=
dbus_init
(
p_intf
);
#endif
while
(
!
p_intf
->
b_die
)
do
{
msleep
(
INTF_IDLE_SLEEP
*
5
);
// 250ms
vlc_object_t
*
p_vout
;
p_vout
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_VOUT
,
FIND_ANYWHERE
);
/*
Check screensaver every 30 seconds
*/
if
(
++
i_lastcall
>
120
)
/*
If there is a video output, disable xscreensaver
*/
if
(
p_vout
)
{
vlc_object_t
*
p_vo
ut
;
p_
vout
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_VOUT
,
FIND_ANYWHERE
);
/* If there is a video output, disable xscreensaver */
if
(
p_
vo
ut
)
input_thread_t
*
p_inp
ut
;
p_
input
=
vlc_object_find
(
p_vout
,
VLC_OBJECT_INPUT
,
FIND_PARENT
);
vlc_object_release
(
p_vout
);
if
(
p_
inp
ut
)
{
input_thread_t
*
p_input
=
vlc_object_find
(
p_vout
,
VLC_OBJECT_INPUT
,
FIND_PARENT
);
vlc_object_release
(
p_vout
);
if
(
p_input
)
if
(
PLAYING_S
==
p_input
->
i_state
)
{
if
(
PLAYING_S
==
p_input
->
i_state
)
{
/* http://www.jwz.org/xscreensaver/faq.html#dvd */
system
(
"xscreensaver-command -deactivate >&- 2>&- &"
);
/* http://www.jwz.org/xscreensaver/faq.html#dvd */
system
(
"xscreensaver-command -deactivate >&- 2>&- &"
);
/* If we have dbus support, let's communicate directly
with gnome-screensave else, run
gnome-screensaver-command */
/* If we have dbus support, let's communicate directly
with gnome-screensave else, run
gnome-screensaver-command */
#ifdef HAVE_DBUS
poke_screensaver
(
p_intf
,
p_intf
->
p_sys
->
p_connection
);
poke_screensaver
(
p_intf
,
p_intf
->
p_sys
->
p_connection
);
#else
system
(
"gnome-screensaver-command --poke >&- 2>&- &"
);
system
(
"gnome-screensaver-command --poke >&- 2>&- &"
);
#endif
/* FIXME: add support for other screensavers */
}
vlc_object_release
(
p_input
);
/* FIXME: add support for other screensavers */
}
vlc_object_release
(
p_input
);
}
i_lastcall
=
0
;
}
vlc_mutex_lock
(
&
p_intf
->
object_lock
);
/* Check screensaver every 30 seconds */
deadline
+=
30
*
1000000
;
vlc_cond_timedwait
(
&
p_intf
->
object_wait
,
&
p_intf
->
object_lock
,
deadline
);
}
while
(
!
p_intf
->
b_die
);
vlc_mutex_unlock
(
&
p_intf
->
object_lock
);
}
#ifdef HAVE_DBUS
...
...
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