Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
4a0cc5f3
Commit
4a0cc5f3
authored
Mar 17, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hildon UI: remove dummy lock acquisition
parent
a640cc72
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
6 deletions
+0
-6
modules/gui/maemo/maemo_callbacks.c
modules/gui/maemo/maemo_callbacks.c
+0
-3
modules/gui/maemo/maemo_input.c
modules/gui/maemo/maemo_input.c
+0
-3
No files found.
modules/gui/maemo/maemo_callbacks.c
View file @
4a0cc5f3
...
...
@@ -53,10 +53,7 @@ gboolean delete_event_cb( GtkWidget *widget,
(
void
)
event
;
(
void
)
user_data
;
intf_thread_t
*
p_intf
=
get_intf_from_widget
(
widget
);
vlc_mutex_lock
(
&
p_intf
->
change_lock
);
libvlc_Quit
(
p_intf
->
p_libvlc
);
vlc_mutex_unlock
(
&
p_intf
->
change_lock
);
gtk_main_quit
();
return
TRUE
;
...
...
modules/gui/maemo/maemo_input.c
View file @
4a0cc5f3
...
...
@@ -90,12 +90,10 @@ void delete_input( intf_thread_t *p_intf )
void
item_changed_pl
(
intf_thread_t
*
p_intf
)
{
vlc_mutex_lock
(
&
p_intf
->
change_lock
);
if
(
p_intf
->
p_sys
->
p_input
&&
(
p_intf
->
p_sys
->
p_input
->
b_dead
||
p_intf
->
p_sys
->
p_input
->
b_die
)
)
{
delete_input
(
p_intf
);
vlc_mutex_unlock
(
&
p_intf
->
change_lock
);
return
;
}
...
...
@@ -103,7 +101,6 @@ void item_changed_pl( intf_thread_t *p_intf )
{
set_input
(
p_intf
,
playlist_CurrentInput
(
p_intf
->
p_sys
->
p_playlist
)
);
}
vlc_mutex_unlock
(
&
p_intf
->
change_lock
);
return
;
}
...
...
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