Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
dcaa5aab
Commit
dcaa5aab
authored
Mar 15, 2004
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add description for demux2 (Closes:#1780)
parent
3c30dccf
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
include/vlc_help.h
include/vlc_help.h
+6
-1
include/vlc_interface.h
include/vlc_interface.h
+2
-1
No files found.
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
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