[vlc-devel] commit: input_item_WriteMeta: use make_path() ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sat Jan 30 17:38:27 CET 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Jan 30 18:38:10 2010 +0200| [df01407a79ffc7a5ebd1b8529d532ce2a04773b2] | committer: Rémi Denis-Courmont
input_item_WriteMeta: use make_path()
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=df01407a79ffc7a5ebd1b8529d532ce2a04773b2
---
src/input/meta.c | 32 +++++++++++++-------------------
1 files changed, 13 insertions(+), 19 deletions(-)
diff --git a/src/input/meta.c b/src/input/meta.c
index 3e43899..52b27c1 100644
--- a/src/input/meta.c
+++ b/src/input/meta.c
@@ -277,30 +277,24 @@ int input_item_WriteMeta( vlc_object_t *obj, input_item_t *p_item )
vlc_mutex_lock( &p_item->lock );
type = p_item->i_type;
vlc_mutex_unlock( &p_item->lock );
- if( type == ITEM_TYPE_FILE )
- {
- char *psz_uri = input_item_GetURI( p_item );
+ if( type != ITEM_TYPE_FILE )
+ goto error;
-#warning FIXME: function for URI->path conversion!
- decode_URI( psz_uri );
- if( !strncmp( psz_uri, "file://", 7 ) )
- {
- p_export->psz_file = strdup( psz_uri + 7 );
- free( psz_uri );
- }
- else
-#warning This should not happen!
- p_export->psz_file = psz_uri;
- }
- else
- {
- vlc_object_release( p_export );
- return VLC_EGENERIC;
- }
+ char *psz_uri = input_item_GetURI( p_item );
+ p_export->psz_file = make_path( psz_uri );
+ if( p_export->psz_file == NULL )
+ msg_Err( p_export, "cannot write meta to remote media %s", psz_uri );
+ free( psz_uri );
+ if( p_export->psz_file == NULL )
+ goto error;
module_t *p_mod = module_need( p_export, "meta writer", NULL, false );
if( p_mod )
module_unneed( p_export, p_mod );
vlc_object_release( p_export );
return VLC_SUCCESS;
+
+error:
+ vlc_object_release( p_export );
+ return VLC_EGENERIC;
}
More information about the vlc-devel
mailing list