added a workaround to get rid of 'Unable to open URL: mf://*.jpg' and such nonsense (tv,mf,vcd)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10698 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2003-08-25 21:40:38 +00:00
parent 0fc1e3cd3f
commit fa0f8ea2a4
1 changed files with 4 additions and 1 deletions

View File

@ -475,7 +475,10 @@ if(strncmp("dvd://",filename,6) == 0){
}
#endif
url = url_new(filename);
// FIXME: to avoid nonsense error messages...
if (strncmp("tv://", filename, 5) && strncmp("mf://", filename, 5) &&
strncmp("vcd://", filename, 6))
url = url_new(filename);
if(url) {
if (strcmp(url->protocol, "smb")==0){
#ifdef LIBSMBCLIENT