Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
0ec27002
Commit
0ec27002
authored
Jul 24, 2008
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dummy: change vlc: comments to vlc:// comments
parent
902be08a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/misc/dummy/input.c
modules/misc/dummy/input.c
+4
-4
No files found.
modules/misc/dummy/input.c
View file @
0ec27002
/*****************************************************************************
/*****************************************************************************
* input_dummy.c: dummy input plugin, to manage "vlc:***" special options
* input_dummy.c: dummy input plugin, to manage "vlc:
//
***" special options
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001, 2002 the VideoLAN team
* Copyright (C) 2001, 2002 the VideoLAN team
* $Id$
* $Id$
...
@@ -154,7 +154,7 @@ int OpenDemux ( vlc_object_t *p_this )
...
@@ -154,7 +154,7 @@ int OpenDemux ( vlc_object_t *p_this )
p_demux
->
pf_control
=
DemuxControl
;
p_demux
->
pf_control
=
DemuxControl
;
p_demux
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
demux_sys_t
)
);
p_demux
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
demux_sys_t
)
);
/* Check for a "vlc:nop" command */
/* Check for a "vlc:
//
nop" command */
if
(
i_len
==
3
&&
!
strncasecmp
(
psz_name
,
"nop"
,
3
)
)
if
(
i_len
==
3
&&
!
strncasecmp
(
psz_name
,
"nop"
,
3
)
)
{
{
msg_Info
(
p_demux
,
"command `nop'"
);
msg_Info
(
p_demux
,
"command `nop'"
);
...
@@ -162,7 +162,7 @@ int OpenDemux ( vlc_object_t *p_this )
...
@@ -162,7 +162,7 @@ int OpenDemux ( vlc_object_t *p_this )
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
/* Check for a "vlc:quit" command */
/* Check for a "vlc:
//
quit" command */
if
(
i_len
==
4
&&
!
strncasecmp
(
psz_name
,
"quit"
,
4
)
)
if
(
i_len
==
4
&&
!
strncasecmp
(
psz_name
,
"quit"
,
4
)
)
{
{
msg_Info
(
p_demux
,
"command `quit'"
);
msg_Info
(
p_demux
,
"command `quit'"
);
...
@@ -170,7 +170,7 @@ int OpenDemux ( vlc_object_t *p_this )
...
@@ -170,7 +170,7 @@ int OpenDemux ( vlc_object_t *p_this )
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
/* Check for a "vlc:pause:***" command */
/* Check for a "vlc:
//
pause:***" command */
if
(
i_len
>
6
&&
!
strncasecmp
(
psz_name
,
"pause:"
,
6
)
)
if
(
i_len
>
6
&&
!
strncasecmp
(
psz_name
,
"pause:"
,
6
)
)
{
{
i_arg
=
atoi
(
psz_name
+
6
);
i_arg
=
atoi
(
psz_name
+
6
);
...
...
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