From 44d6ac06aed7c13cbace543920e706023551c3c2 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 2 Aug 2013 17:03:30 +0200 Subject: stream: parse URL escapes for file:// So for example "file:///file%20name.mkv" will open "file name.mkv". I'm not sure whether we want/need this. The old code didn't do it. Also, it's not really clear whether this is handled correctly. It seems the corresponding freedesktop.org "standard" allows a (useless) hostname part, which we should skip in theory. The number of slashes is not really clear either. We can open relative filenames (by removing one of the slashes from the example above), which is perhaps an unneeded feature. How does this even work with Windows paths? This issues can probably be corrected later. The URL unescape code is based on code from m_option.c removed with a recent commit. --- stream/stream.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'stream/stream.h') diff --git a/stream/stream.h b/stream/stream.h index 9800efbafd..e928a258b6 100644 --- a/stream/stream.h +++ b/stream/stream.h @@ -260,4 +260,6 @@ typedef struct { int channels; } stream_language_t; +void mp_url_unescape_inplace(char *buf); + #endif /* MPLAYER_STREAM_H */ -- cgit v1.2.3