Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
8659d507
Commit
8659d507
authored
Mar 05, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed inhibit playlist leak.
parent
dca8d565
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
4 deletions
+18
-4
modules/misc/inhibit.c
modules/misc/inhibit.c
+18
-4
No files found.
modules/misc/inhibit.c
View file @
8659d507
...
...
@@ -224,18 +224,30 @@ static int UnInhibit( intf_thread_t *p_intf )
/*****************************************************************************
* Run: main thread
*****************************************************************************/
static
void
vlc_cleanup_playlist
(
void
*
p_playlist
)
{
pl_Release
(
(
playlist_t
*
)
p_playlist
);
}
static
void
Run
(
intf_thread_t
*
p_intf
)
{
int
canc
=
vlc_savecancel
();
playlist_t
*
p_playlist
=
pl_Hold
(
p_intf
);
input_thread_t
*
p_input
;
vlc_cleanup_push
(
vlc_cleanup_playlist
,
p_intf
);
for
(
;;
)
{
/* Check playing state every 30 seconds */
vlc_restorecancel
(
canc
);
/* FIXME wake up on playlist event instead ?
* Check playing state every 30 seconds */
msleep
(
30
*
CLOCK_FREQ
);
p_input
=
playlist_CurrentInput
(
p_playlist
);
canc
=
vlc_savecancel
();
/* */
input_thread_t
*
p_input
=
playlist_CurrentInput
(
p_playlist
);
if
(
p_input
)
{
const
int
i_state
=
var_GetInteger
(
p_input
,
"state"
);
...
...
@@ -262,5 +274,7 @@ static void Run( intf_thread_t *p_intf )
}
}
pl_Release
(
p_intf
);
/* */
vlc_cleanup_run
();
vlc_restorecancel
(
canc
);
}
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