[vlc-devel] commit: playlist_Export simplifications ( Rémi Denis-Courmont )
git version control
git at videolan.org
Wed Mar 4 22:42:01 CET 2009
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Mar 4 23:04:19 2009 +0200| [62f99c5c3e4b584217dbe68c598871d105090c91] | committer: Rémi Denis-Courmont
playlist_Export simplifications
- use automatic structure instead of heap
- retain the playlist lock only while needed
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=62f99c5c3e4b584217dbe68c598871d105090c91
---
src/playlist/loadsave.c | 39 +++++++++++++--------------------------
1 files changed, 13 insertions(+), 26 deletions(-)
diff --git a/src/playlist/loadsave.c b/src/playlist/loadsave.c
index 2fc19c0..5be9767 100644
--- a/src/playlist/loadsave.c
+++ b/src/playlist/loadsave.c
@@ -40,7 +40,7 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
playlist_item_t *p_export_root,const char *psz_type )
{
module_t *p_module;
- playlist_export_t *p_export;
+ playlist_export_t export;
if( p_export_root == NULL ) return VLC_EGENERIC;
@@ -48,48 +48,35 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
p_export_root->p_input->psz_name, psz_filename );
/* Prepare the playlist_export_t structure */
- p_export = (playlist_export_t *)malloc( sizeof(playlist_export_t) );
- if( !p_export)
- return VLC_ENOMEM;
- p_export->psz_filename = psz_filename ? strdup( psz_filename ) : NULL;
- p_export->p_file = utf8_fopen( psz_filename, "wt" );
- if( !p_export->p_file )
+ export.psz_filename = psz_filename ? strdup( psz_filename ) : NULL;
+ export.p_file = utf8_fopen( psz_filename, "wt" );
+ if( export.p_file == NULL )
{
msg_Err( p_playlist , "could not create playlist file %s (%m)",
psz_filename );
- free( p_export->psz_filename );
- free( p_export );
+ free( export.psz_filename );
return VLC_EGENERIC;
}
- p_export->p_root = p_export_root;
+ export.p_root = p_export_root;
- /* Lock the playlist */
- vlc_object_lock( p_playlist );
- p_playlist->p_private = (void *)p_export;
+ playlist_Lock( p_playlist );
+ p_playlist->p_private = (void *)&export;
/* And call the module ! All work is done now */
- int i_ret;
p_module = module_need( p_playlist, "playlist export", psz_type, true);
if( !p_module )
- {
msg_Warn( p_playlist, "exporting playlist failed" );
- i_ret = VLC_ENOOBJ;
- }
else
- {
module_unneed( p_playlist , p_module );
- i_ret = VLC_SUCCESS;
- }
+ p_playlist->p_private = NULL;
+ playlist_Unlock( p_playlist );
/* Clean up */
- fclose( p_export->p_file );
- free( p_export->psz_filename );
- free( p_export );
- p_playlist->p_private = NULL;
- vlc_object_unlock( p_playlist );
+ fclose( export.p_file );
+ free( export.psz_filename );
- return i_ret;
+ return p_module ? VLC_SUCCESS : VLC_ENOOBJ;
}
int playlist_Import( playlist_t *p_playlist, const char *psz_file )
More information about the vlc-devel
mailing list