Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
dcaa5aab
Commit
dcaa5aab
authored
Mar 15, 2004
by
zorglub
Browse files
Add description for demux2 (Closes:#1780)
parent
3c30dccf
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/vlc_help.h
View file @
dcaa5aab
...
...
@@ -2,7 +2,7 @@
* vlc_help.h: Help strings
*****************************************************************************
* 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>
* Anil Daoud <anil@videolan.org>
...
...
@@ -73,6 +73,9 @@
#define DEMUX_TITLE N_("Demuxers settings")
#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_HELP N_( \
"Interface plugins can be enabled in the Interface section and " \
...
...
@@ -133,6 +136,8 @@ static char * GetCapabilityHelp( char *psz_capability, int i_type)
return
i_type
==
1
?
DECODER_TITLE
:
DECODER_HELP
;
if
(
!
strcasecmp
(
psz_capability
,
"demux"
)
)
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"
)
)
return
i_type
==
1
?
INTERFACE_TITLE
:
INTERFACE_HELP
;
if
(
!
strcasecmp
(
psz_capability
,
"sout access"
)
)
...
...
include/vlc_interface.h
View file @
dcaa5aab
...
...
@@ -4,7 +4,7 @@
* interface, such as message output.
*****************************************************************************
* 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>
*
...
...
@@ -136,6 +136,7 @@ VLC_EXPORT( void, intf_Destroy, ( intf_thread_t * ) );
#define INTF_DIALOG_SAT 5
#define INTF_DIALOG_STREAMWIZARD 8
#define INTF_DIALOG_WIZARD 9
#define INTF_DIALOG_PLAYLIST 10
#define INTF_DIALOG_MESSAGES 11
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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