From fa0f8ea2a4390a09996df1608a8111ff3b54c6a7 Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 25 Aug 2003 21:40:38 +0000 Subject: 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 --- libmpdemux/open.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libmpdemux/open.c') diff --git a/libmpdemux/open.c b/libmpdemux/open.c index 8dca73ad24..284b3adb2c 100644 --- a/libmpdemux/open.c +++ b/libmpdemux/open.c @@ -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 -- cgit v1.2.3