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
cb203ca1
Commit
cb203ca1
authored
Feb 06, 2005
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* wx: Ensure that callbacks are not registered twice
* DAAP: don't crash if connection to host timeouts
parent
534a8122
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
48 deletions
+35
-48
modules/gui/wxwindows/playlist.cpp
modules/gui/wxwindows/playlist.cpp
+30
-46
modules/gui/wxwindows/wxwindows.h
modules/gui/wxwindows/wxwindows.h
+1
-1
modules/services_discovery/daap.c
modules/services_discovery/daap.c
+4
-1
No files found.
modules/gui/wxwindows/playlist.cpp
View file @
cb203ca1
...
...
@@ -395,7 +395,7 @@ Playlist::Playlist( intf_thread_t *_p_intf, wxWindow *p_parent ):
var_AddCallback
(
p_playlist
,
"item-deleted"
,
ItemDeleted
,
this
);
/* Update the playlist */
Rebuild
();
Rebuild
(
VLC_TRUE
);
vlc_object_release
(
p_playlist
);
}
...
...
@@ -812,7 +812,7 @@ wxTreeItemId Playlist::FindItemByName( wxTreeItemId root, wxString search_string
/**********************************************************************
* Rebuild the playlist
**********************************************************************/
void
Playlist
::
Rebuild
()
void
Playlist
::
Rebuild
(
vlc_bool_t
b_root
)
{
playlist_view_t
*
p_view
;
playlist_t
*
p_playlist
=
...
...
@@ -825,6 +825,8 @@ void Playlist::Rebuild()
/* We can remove the callbacks before locking, anyway, we won't
* miss anything */
if
(
b_root
)
{
var_DelCallback
(
p_playlist
,
"item-change"
,
ItemChanged
,
this
);
var_DelCallback
(
p_playlist
,
"playlist-current"
,
PlaylistNext
,
this
);
var_DelCallback
(
p_playlist
,
"intf-change"
,
PlaylistChanged
,
this
);
...
...
@@ -833,6 +835,7 @@ void Playlist::Rebuild()
/* ...and rebuild it */
vlc_mutex_lock
(
&
p_playlist
->
object_lock
);
}
p_view
=
playlist_ViewFind
(
p_playlist
,
i_current_view
);
/* FIXME */
...
...
@@ -845,35 +848,13 @@ void Playlist::Rebuild()
wxTreeItemId
root
=
treectrl
->
GetRootItem
();
UpdateNode
(
p_playlist
,
p_view
->
p_root
,
root
);
/*
wxTreeItemId item;
if( p_playlist->status.p_item != NULL )
{
item = FindItem( root, p_playlist->status.p_item );
}
else if( p_playlist->status.p_node != NULL )
{
item = FindItem( root, p_playlist->status.p_node );
}
else
{
item = root;
}
if( p_playlist->i_size )
{
SetCurrentItem( item );
}
*/
int
i_count
=
CountItems
(
treectrl
->
GetRootItem
()
);
if
(
i_count
<
p_playlist
->
i_size
&&
!
b_changed_view
)
{
i_current_view
=
VIEW_CATEGORY
;
b_changed_view
=
VLC_TRUE
;
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
Rebuild
();
vlc_mutex_lock
(
&
p_playlist
->
object_lock
);
Rebuild
(
VLC_FALSE
);
}
else
if
(
i_count
!=
p_playlist
->
i_size
)
{
...
...
@@ -889,6 +870,8 @@ void Playlist::Rebuild()
p_playlist
->
i_size
),
0
);
}
if
(
b_root
)
{
/* Put callbacks back online */
var_AddCallback
(
p_playlist
,
"intf-change"
,
PlaylistChanged
,
this
);
var_AddCallback
(
p_playlist
,
"playlist-current"
,
PlaylistNext
,
this
);
...
...
@@ -897,7 +880,7 @@ void Playlist::Rebuild()
var_AddCallback
(
p_playlist
,
"item-deleted"
,
ItemDeleted
,
this
);
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
}
vlc_object_release
(
p_playlist
);
}
...
...
@@ -905,7 +888,7 @@ void Playlist::Rebuild()
void
Playlist
::
ShowPlaylist
(
bool
show
)
{
if
(
show
)
Rebuild
();
if
(
show
)
Rebuild
(
VLC_TRUE
);
Show
(
show
);
}
...
...
@@ -920,7 +903,7 @@ void Playlist::UpdatePlaylist()
if
(
this
->
b_need_update
)
{
this
->
b_need_update
=
VLC_FALSE
;
Rebuild
();
Rebuild
(
VLC_TRUE
);
}
/* Updating the playing status every 0.5s is enough */
...
...
@@ -1094,7 +1077,7 @@ void Playlist::OnSort( wxCommandEvent& event )
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
vlc_object_release
(
p_playlist
);
Rebuild
();
Rebuild
(
VLC_TRUE
);
}
/**********************************************************************
...
...
@@ -1143,7 +1126,7 @@ void Playlist::OnInvertSelection( wxCommandEvent& WXUNUSED(event) )
void
Playlist
::
OnDeleteSelection
(
wxCommandEvent
&
WXUNUSED
(
event
)
)
{
Rebuild
();
Rebuild
(
VLC_TRUE
);
}
void
Playlist
::
OnSelectAll
(
wxCommandEvent
&
WXUNUSED
(
event
)
)
...
...
@@ -1314,7 +1297,7 @@ void Playlist::OnMenuEvent( wxCommandEvent& event )
b_changed_view
=
VLC_TRUE
;
i_current_view
=
i_new_view
;
playlist_ViewUpdate
(
p_playlist
,
i_new_view
);
Rebuild
();
Rebuild
(
VLC_TRUE
);
vlc_object_release
(
p_playlist
);
return
;
}
...
...
@@ -1327,7 +1310,7 @@ void Playlist::OnMenuEvent( wxCommandEvent& event )
i_current_view
=
i_new_view
;
Rebuild
();
Rebuild
(
VLC_TRUE
);
}
}
else
if
(
event
.
GetId
()
>=
FirstSD_Event
&&
event
.
GetId
()
<
LastSD_Event
)
...
...
@@ -1670,6 +1653,7 @@ static int ItemAppended( vlc_object_t *p_this, const char *psz_variable,
Playlist
*
p_playlist_dialog
=
(
Playlist
*
)
param
;
playlist_add_t
*
p_add
=
(
playlist_add_t
*
)
malloc
(
sizeof
(
playlist_add_t
));
memcpy
(
p_add
,
nval
.
p_address
,
sizeof
(
playlist_add_t
)
);
wxCommandEvent
event
(
wxEVT_PLAYLIST
,
AppendItem_Event
);
...
...
modules/gui/wxwindows/wxwindows.h
View file @
cb203ca1
...
...
@@ -865,7 +865,7 @@ private:
void
OnPopupDel
(
wxMenuEvent
&
event
);
void
OnPopupEna
(
wxMenuEvent
&
event
);
void
OnPopupInfo
(
wxMenuEvent
&
event
);
void
Rebuild
();
void
Rebuild
(
vlc_bool_t
);
void
Preparse
(
playlist_t
*
p_playlist
);
...
...
modules/services_discovery/daap.c
View file @
cb203ca1
...
...
@@ -508,6 +508,7 @@ static int EnumerateCallback( DAAP_SClient *p_client,
if
(
!
b_found
)
{
dhost_t
*
p_vlchost
=
(
dhost_t
*
)
malloc
(
sizeof
(
dhost_t
)
);
p_vlchost
->
p_node
=
NULL
;
p_vlchost
->
p_host
=
p_host
;
p_vlchost
->
psz_name
=
psz_buffer
;
p_vlchost
->
b_new
=
VLC_TRUE
;
...
...
@@ -632,7 +633,9 @@ static void FreeHost( services_discovery_t *p_sd, dhost_t *p_host )
FIND_ANYWHERE
);
if
(
p_playlist
)
{
playlist_NodeDelete
(
p_playlist
,
p_host
->
p_node
,
VLC_TRUE
,
VLC_TRUE
);
if
(
p_host
->
p_node
)
playlist_NodeDelete
(
p_playlist
,
p_host
->
p_node
,
VLC_TRUE
,
VLC_TRUE
);
vlc_object_release
(
p_playlist
);
}
...
...
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