Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
d6f04ffa
Commit
d6f04ffa
authored
Aug 21, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/libvlc.h: updated useage.
* src/input/input.c: hack for udp access and MRLSections().
parent
25d2a663
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
12 deletions
+20
-12
src/input/input.c
src/input/input.c
+6
-0
src/libvlc.h
src/libvlc.h
+14
-12
No files found.
src/input/input.c
View file @
d6f04ffa
...
...
@@ -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
);
...
...
src/libvlc.h
View file @
d6f04ffa
...
...
@@ -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")
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment