Commit d6f04ffa authored by Gildas Bazin's avatar Gildas Bazin

* src/libvlc.h: updated useage.

* src/input/input.c: hack for udp access and MRLSections().
parent 25d2a663
......@@ -1530,6 +1530,12 @@ static int InputSourceInit( input_thread_t *p_input,
msg_Dbg( p_input, "`%s' gives access `%s' demux `%s' path `%s'",
psz_mrl, psz_access, psz_demux, psz_path );
if( !psz_access ||
( strcmp( psz_access, "udp" ) && strcmp( psz_access, "udpstream" ) &&
strcmp( psz_access, "udp4" ) && strcmp( psz_access, "udp6" ) &&
strcmp( psz_access, "rtp" ) && strcmp( psz_access, "rtp4" ) &&
strcmp( psz_access, "rtp6" ) ) ) // FIXME
/* Find optional titles and seekpoints */
MRLSections( p_input, psz_path, &in->i_title_start, &in->i_title_end,
&in->i_seekpoint_start, &in->i_seekpoint_end );
......
......@@ -727,18 +727,20 @@ static char *ppsz_align_descriptions[] =
#define SUBTITLE_TRACK_KEY_TEXT N_("Cycle subtitle track")
#define SUBTITLE_TRACK_KEY_LONGTEXT N_("Cycle through the available subtitle tracks")
#define PLAYLIST_USAGE N_("\nPlaylist items:" \
"\n *.mpg, *.vob plain MPEG-1/2 files" \
"\n [dvd://][device][@raw_device][@[title][,[chapter][,angle]]]" \
"\n DVD device" \
"\n [vcd://][device][@{S|T|E|P}[number]]" \
"\n VCD device" \
"\n [cdda://][device][@[T][track-number]]" \
"\n Audio CD device" \
"\n udpstream:[[<source address>]@[<bind address>][:<bind port>]]" \
"\n UDP stream sent by a streaming server" \
"\n vlc:pause pause execution of " \
"playlist items" \
#define PLAYLIST_USAGE N_( \
"\nPlaylist item syntax:" \
"\n MRL [:option=value]" \
"\nMRL syntax:" \
"\n URL[@[title-start][,chapter-start][-[title-end][,chapter-end]]]" \
"\nURL syntax:" \
"\n [file://]filename plain media file" \
"\n http://ip:port/file HTTP url" \
"\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 stream sent by a streaming server"\
"\n vlc:pause pause execution of playlist items" \
"\n vlc:quit quit VLC" \
"\n")
......
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