Commit 07e20e1b authored by Kamil Baldyga's avatar Kamil Baldyga Committed by Rémi Denis-Courmont

Ticket 3234 autodetect subtitles

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 49ad5fbd
...@@ -265,9 +265,18 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path, ...@@ -265,9 +265,18 @@ char **subtitles_Detect( input_thread_t *p_this, char *psz_path,
if( !strncmp( psz_name_org, "file://", 7 ) ) if( !strncmp( psz_name_org, "file://", 7 ) )
{ {
psz_name_org += 7; psz_name_org += 7;
#if defined( WIN32 )
psz_name_org ++ ;
#endif
if( !strncmp( psz_name_org, "localhost", 9 ) ) if( !strncmp( psz_name_org, "localhost", 9 ) )
psz_name_org += 9; psz_name_org += 9;
} }
#if (DIR_SEP_CHAR != '/')
/* Turn slashes into anti-slashes */
for( char *s = strchr( psz_name_org, '/' ); s; s = strchr( s + 1, '/' ) )
*s = DIR_SEP_CHAR;
#endif
char *psz_fname = decode_URI_duplicate( psz_name_org ); char *psz_fname = decode_URI_duplicate( psz_name_org );
if( !psz_fname ) if( !psz_fname )
return NULL; return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment