[vlc-devel] commit: Document that we now require :// between access and url ( Christophe Mutricy )
git version control
git at videolan.org
Tue Mar 4 23:00:54 CET 2008
vlc | branch: master | Christophe Mutricy <xtophe at videolan.org> | Tue Mar 4 21:38:26 2008 +0000| [902085eaa92f5360fd45bd98cc3cb3a61168304c]
Document that we now require :// between access and url
Signed-off-by: Christophe Mutricy <xtophe at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=902085eaa92f5360fd45bd98cc3cb3a61168304c
---
NEWS | 3 +++
src/libvlc-module.c | 6 +++---
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/NEWS b/NEWS
index eebd36b..ab62259 100644
--- a/NEWS
+++ b/NEWS
@@ -35,6 +35,9 @@ Important notes:
* You now need to append --m3u-extvlcopt to your command line to enable
EXTVLCOPT options parsing in m3u playlists. Note that only a limited set
of options is available to m3u playlists (CVE-2007-6683).
+ * The old access:url syntax is no longer supported. Use access://url instead.
+ E.g.: vlc:quit -> vlc://quit ;
+ udp:@239.255.12.12 -> udp://@239.255.12.12
Changes:
--------
diff --git a/src/libvlc-module.c b/src/libvlc-module.c
index 410796c..68f6cca 100644
--- a/src/libvlc-module.c
+++ b/src/libvlc-module.c
@@ -1384,10 +1384,10 @@ const char vlc_usage[] = N_(
"\n [dvd://][device][@raw_device] DVD device"
"\n [vcd://][device] VCD device"
"\n [cdda://][device] Audio CD device"
- "\n udp:[[<source address>]@[<bind address>][:<bind port>]]"
+ "\n udp://[[<source address>]@[<bind address>][:<bind port>]]"
"\n UDP stream sent by a streaming server"
- "\n vlc:pause:<seconds> Special item to pause the playlist for a certain time"
- "\n vlc:quit Special item to quit VLC"
+ "\n vlc://pause:<seconds> Special item to pause the playlist for a certain time"
+ "\n vlc://quit Special item to quit VLC"
"\n");
/*
More information about the vlc-devel
mailing list