Commit dcaa5aab authored by Clément Stenac's avatar Clément Stenac

Add description for demux2 (Closes:#1780)

parent 3c30dccf
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vlc_help.h: Help strings * vlc_help.h: Help strings
***************************************************************************** *****************************************************************************
* Copyright (C) 2003 VideoLAN * Copyright (C) 2003 VideoLAN
* $Id: vlc_help.h,v 1.8 2004/02/06 03:52:09 hartman Exp $ * $Id$
* *
* Authors: Clment Stenac <zorglub@videolan.org> * Authors: Clment Stenac <zorglub@videolan.org>
* Anil Daoud <anil@videolan.org> * Anil Daoud <anil@videolan.org>
...@@ -73,6 +73,9 @@ ...@@ -73,6 +73,9 @@
#define DEMUX_TITLE N_("Demuxers settings") #define DEMUX_TITLE N_("Demuxers settings")
#define DEMUX_HELP N_( "These settings affect demuxer modules.") #define DEMUX_HELP N_( "These settings affect demuxer modules.")
#define DEMUX2_TITLE N_("Demuxers settings (new generation)")
#define DEMUX2_HELP N_("These settings affect new generation demuxer modules.")
#define INTERFACE_TITLE N_("Interface plugins settings") #define INTERFACE_TITLE N_("Interface plugins settings")
#define INTERFACE_HELP N_( \ #define INTERFACE_HELP N_( \
"Interface plugins can be enabled in the Interface section and " \ "Interface plugins can be enabled in the Interface section and " \
...@@ -133,6 +136,8 @@ static char * GetCapabilityHelp( char *psz_capability, int i_type) ...@@ -133,6 +136,8 @@ static char * GetCapabilityHelp( char *psz_capability, int i_type)
return i_type == 1 ? DECODER_TITLE : DECODER_HELP; return i_type == 1 ? DECODER_TITLE : DECODER_HELP;
if( !strcasecmp(psz_capability,"demux") ) if( !strcasecmp(psz_capability,"demux") )
return i_type == 1 ? DEMUX_TITLE : DEMUX_HELP; return i_type == 1 ? DEMUX_TITLE : DEMUX_HELP;
if( !strcasecmp(psz_capability,"demux2") )
return i_type == 1 ? DEMUX2_TITLE : DEMUX2_HELP;
if( !strcasecmp(psz_capability,"interface") ) if( !strcasecmp(psz_capability,"interface") )
return i_type == 1 ? INTERFACE_TITLE : INTERFACE_HELP; return i_type == 1 ? INTERFACE_TITLE : INTERFACE_HELP;
if( !strcasecmp(psz_capability,"sout access") ) if( !strcasecmp(psz_capability,"sout access") )
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* interface, such as message output. * interface, such as message output.
***************************************************************************** *****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN * Copyright (C) 1999, 2000 VideoLAN
* $Id: vlc_interface.h,v 1.10 2004/03/01 18:31:12 gbazin Exp $ * $Id$
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* *
...@@ -136,6 +136,7 @@ VLC_EXPORT( void, intf_Destroy, ( intf_thread_t * ) ); ...@@ -136,6 +136,7 @@ VLC_EXPORT( void, intf_Destroy, ( intf_thread_t * ) );
#define INTF_DIALOG_SAT 5 #define INTF_DIALOG_SAT 5
#define INTF_DIALOG_STREAMWIZARD 8 #define INTF_DIALOG_STREAMWIZARD 8
#define INTF_DIALOG_WIZARD 9
#define INTF_DIALOG_PLAYLIST 10 #define INTF_DIALOG_PLAYLIST 10
#define INTF_DIALOG_MESSAGES 11 #define INTF_DIALOG_MESSAGES 11
......
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