[vlc-devel] commit: dummy: change vlc: comments to vlc:// comments (Derk-Jan Hartman )
git version control
git at videolan.org
Thu Jul 24 14:40:20 CEST 2008
vlc | branch: master | Derk-Jan Hartman <hartman at videolan.org> | Thu Jul 24 14:37:19 2008 +0200| [0ec27002334a468048bd296458610321370266c4]
dummy: change vlc: comments to vlc:// comments
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0ec27002334a468048bd296458610321370266c4
---
modules/misc/dummy/input.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/misc/dummy/input.c b/modules/misc/dummy/input.c
index 4caf9f9..03de416 100644
--- a/modules/misc/dummy/input.c
+++ b/modules/misc/dummy/input.c
@@ -1,5 +1,5 @@
/*****************************************************************************
- * 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
* $Id$
@@ -154,7 +154,7 @@ int OpenDemux ( vlc_object_t *p_this )
p_demux->pf_control = DemuxControl;
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 ) )
{
msg_Info( p_demux, "command `nop'" );
@@ -162,7 +162,7 @@ int OpenDemux ( vlc_object_t *p_this )
return VLC_SUCCESS;
}
- /* Check for a "vlc:quit" command */
+ /* Check for a "vlc://quit" command */
if( i_len == 4 && !strncasecmp( psz_name, "quit", 4 ) )
{
msg_Info( p_demux, "command `quit'" );
@@ -170,7 +170,7 @@ int OpenDemux ( vlc_object_t *p_this )
return VLC_SUCCESS;
}
- /* Check for a "vlc:pause:***" command */
+ /* Check for a "vlc://pause:***" command */
if( i_len > 6 && !strncasecmp( psz_name, "pause:", 6 ) )
{
i_arg = atoi( psz_name + 6 );
More information about the vlc-devel
mailing list