@@ -5138,14 +5138,17 @@ static void cmd_osd_overlay(void *p)
5138
5138
mp_wakeup_core (mpctx );
5139
5139
}
5140
5140
5141
- static struct track * find_track_with_url (struct MPContext * mpctx , int type ,
5142
- const char * url )
5141
+ static struct track * find_track_with_url (struct MPContext * mpctx , int type , char * url )
5143
5142
{
5144
5143
for (int n = 0 ; n < mpctx -> num_tracks ; n ++ ) {
5145
5144
struct track * track = mpctx -> tracks [n ];
5146
- if (track && track -> type == type && track -> is_external &&
5147
- strcmp (track -> external_filename , url ) == 0 )
5148
- return track ;
5145
+ if (track && track -> type == type && track -> is_external ) {
5146
+ char * normalized = mp_get_user_path (url , mpctx -> global , track -> external_filename );
5147
+ normalized = mp_normalize_path (url , track -> external_filename );
5148
+ if (strcmp (normalized , url ) == 0 )
5149
+ return track ;
5150
+ talloc_free (normalized );
5151
+ }
5149
5152
}
5150
5153
return NULL ;
5151
5154
}
@@ -5920,11 +5923,13 @@ static void cmd_expand_path(void *p)
5920
5923
static void cmd_normalize_path (void * p )
5921
5924
{
5922
5925
struct mp_cmd_ctx * cmd = p ;
5926
+ struct MPContext * mpctx = cmd -> mpctx ;
5923
5927
void * ctx = talloc_new (NULL );
5924
5928
5929
+ char * path = mp_get_user_path (ctx , mpctx -> global , cmd -> args [0 ].v .s );
5925
5930
cmd -> result = (mpv_node ){
5926
5931
.format = MPV_FORMAT_STRING ,
5927
- .u .string = talloc_strdup (NULL , mp_normalize_path (ctx , cmd -> args [ 0 ]. v . s )),
5932
+ .u .string = talloc_steal (NULL , mp_normalize_path (ctx , path )),
5928
5933
};
5929
5934
5930
5935
talloc_free (ctx );
@@ -5993,7 +5998,9 @@ static void cmd_loadfile(void *p)
5993
5998
if (action .type == LOAD_TYPE_REPLACE )
5994
5999
playlist_clear (mpctx -> playlist );
5995
6000
5996
- struct playlist_entry * entry = playlist_entry_new (filename );
6001
+ char * path = mp_get_user_path (NULL , mpctx -> global , filename );
6002
+ struct playlist_entry * entry = playlist_entry_new (path );
6003
+ talloc_free (path );
5997
6004
if (cmd -> args [3 ].v .str_list ) {
5998
6005
char * * pairs = cmd -> args [3 ].v .str_list ;
5999
6006
for (int i = 0 ; pairs [i ] && pairs [i + 1 ]; i += 2 )
@@ -6026,8 +6033,11 @@ static void cmd_loadlist(void *p)
6026
6033
6027
6034
struct load_action action = get_load_action (mpctx , action_flag );
6028
6035
6029
- struct playlist * pl = playlist_parse_file (filename , cmd -> abort -> cancel ,
6036
+ char * path = mp_get_user_path (NULL , mpctx -> global , filename );
6037
+ struct playlist * pl = playlist_parse_file (path , cmd -> abort -> cancel ,
6030
6038
mpctx -> global );
6039
+ talloc_free (path );
6040
+
6031
6041
if (pl ) {
6032
6042
prepare_playlist (mpctx , pl );
6033
6043
struct playlist_entry * new = pl -> current ;
@@ -6189,7 +6199,9 @@ static void cmd_track_add(void *p)
6189
6199
}
6190
6200
6191
6201
if (cmd -> args [1 ].v .i == 2 ) {
6192
- struct track * t = find_track_with_url (mpctx , type , cmd -> args [0 ].v .s );
6202
+ char * path = mp_get_user_path (NULL , mpctx -> global , cmd -> args [0 ].v .s );
6203
+ struct track * t = find_track_with_url (mpctx , type , path );
6204
+ talloc_free (path );
6193
6205
if (t ) {
6194
6206
if (mpctx -> playback_initialized ) {
6195
6207
mp_switch_track (mpctx , t -> type , t , FLAG_MARK_SELECTION );
@@ -6891,16 +6903,19 @@ static void run_dump_cmd(struct mp_cmd_ctx *cmd, double start, double end,
6891
6903
return ;
6892
6904
}
6893
6905
6906
+ char * path = mp_get_user_path (NULL , mpctx -> global , filename );
6894
6907
mp_cmd_msg (cmd , MSGL_INFO , "Cache dumping started." );
6895
6908
6896
- if (!demux_cache_dump_set (mpctx -> demuxer , start , end , filename )) {
6909
+ if (!demux_cache_dump_set (mpctx -> demuxer , start , end , path )) {
6897
6910
mp_cmd_msg (cmd , MSGL_INFO , "Cache dumping stopped." );
6898
6911
mp_cmd_ctx_complete (cmd );
6912
+ talloc_free (path );
6899
6913
return ;
6900
6914
}
6901
6915
6902
6916
ctx -> cache_dump_cmd = cmd ;
6903
6917
cache_dump_poll (mpctx );
6918
+ talloc_free (path );
6904
6919
}
6905
6920
6906
6921
static void cmd_dump_cache (void * p )
0 commit comments