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
998bed84
Commit
998bed84
authored
Apr 12, 2005
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ALL: removed l10n of various untranslatable strings such as 'ffmpeg' or 'Vorbis'
parent
b3c3a1c1
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
10 additions
and
10 deletions
+10
-10
modules/codec/ffmpeg/ffmpeg.c
modules/codec/ffmpeg/ffmpeg.c
+2
-2
modules/codec/toolame.c
modules/codec/toolame.c
+1
-1
modules/codec/vorbis.c
modules/codec/vorbis.c
+1
-1
modules/control/showintf.c
modules/control/showintf.c
+1
-1
modules/control/telnet.c
modules/control/telnet.c
+1
-1
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+1
-1
modules/demux/ts.c
modules/demux/ts.c
+1
-1
modules/gui/macosx/macosx.m
modules/gui/macosx/macosx.m
+1
-1
modules/gui/wxwindows/wxwindows.cpp
modules/gui/wxwindows/wxwindows.cpp
+1
-1
No files found.
modules/codec/ffmpeg/ffmpeg.c
View file @
998bed84
...
@@ -76,7 +76,7 @@ static char *enc_hq_list_text[] = { N_("rd"), N_("bits"), N_("simple") };
...
@@ -76,7 +76,7 @@ static char *enc_hq_list_text[] = { N_("rd"), N_("bits"), N_("simple") };
* Module descriptor
* Module descriptor
*****************************************************************************/
*****************************************************************************/
vlc_module_begin
();
vlc_module_begin
();
set_shortname
(
_
(
"Ffmpeg"
)
);
set_shortname
(
"ffmpeg"
);
set_category
(
CAT_INPUT
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_SCODEC
);
set_subcategory
(
SUBCAT_INPUT_SCODEC
);
/* decoder main module */
/* decoder main module */
...
@@ -86,7 +86,7 @@ vlc_module_begin();
...
@@ -86,7 +86,7 @@ vlc_module_begin();
/*add_requirement( ALTIVEC );*/
/*add_requirement( ALTIVEC );*/
set_capability
(
"decoder"
,
71
);
set_capability
(
"decoder"
,
71
);
#else
#else
set_description
(
_
(
"
F
fmpeg audio/video decoder/encoder ((MS)MPEG4,SVQ1,H263,WMV,WMA)"
)
);
set_description
(
_
(
"
f
fmpeg audio/video decoder/encoder ((MS)MPEG4,SVQ1,H263,WMV,WMA)"
)
);
set_capability
(
"decoder"
,
70
);
set_capability
(
"decoder"
,
70
);
#endif
#endif
set_section
(
N_
(
"Decoding"
)
,
NULL
);
set_section
(
N_
(
"Decoding"
)
,
NULL
);
...
...
modules/codec/toolame.c
View file @
998bed84
...
@@ -60,7 +60,7 @@ static block_t *Encode ( encoder_t *, aout_buffer_t * );
...
@@ -60,7 +60,7 @@ static block_t *Encode ( encoder_t *, aout_buffer_t * );
"By default the encoding is CBR." )
"By default the encoding is CBR." )
vlc_module_begin
();
vlc_module_begin
();
set_shortname
(
_
(
"Toolame"
)
);
set_shortname
(
"toolame"
);
set_description
(
_
(
"Libtoolame audio encoder"
)
);
set_description
(
_
(
"Libtoolame audio encoder"
)
);
set_capability
(
"encoder"
,
50
);
set_capability
(
"encoder"
,
50
);
set_callbacks
(
OpenEncoder
,
CloseEncoder
);
set_callbacks
(
OpenEncoder
,
CloseEncoder
);
...
...
modules/codec/vorbis.c
View file @
998bed84
...
@@ -141,7 +141,7 @@ static block_t *Encode ( encoder_t *, aout_buffer_t * );
...
@@ -141,7 +141,7 @@ static block_t *Encode ( encoder_t *, aout_buffer_t * );
"Allows you to force a constant bitrate encoding (CBR)." )
"Allows you to force a constant bitrate encoding (CBR)." )
vlc_module_begin
();
vlc_module_begin
();
set_shortname
(
_
(
"Vorbis"
)
);
set_shortname
(
"Vorbis"
);
set_description
(
_
(
"Vorbis audio decoder"
)
);
set_description
(
_
(
"Vorbis audio decoder"
)
);
#ifdef MODULE_NAME_IS_tremor
#ifdef MODULE_NAME_IS_tremor
set_capability
(
"decoder"
,
90
);
set_capability
(
"decoder"
,
90
);
...
...
modules/control/showintf.c
View file @
998bed84
...
@@ -63,7 +63,7 @@ static int MouseEvent( vlc_object_t *, char const *,
...
@@ -63,7 +63,7 @@ static int MouseEvent( vlc_object_t *, char const *,
#define THRESHOLD_LONGTEXT N_( "Height of the zone triggering the interface" )
#define THRESHOLD_LONGTEXT N_( "Height of the zone triggering the interface" )
vlc_module_begin
();
vlc_module_begin
();
set_shortname
(
_
(
"Showintf"
)
);
set_shortname
(
"Showintf"
);
set_category
(
CAT_INTERFACE
);
set_category
(
CAT_INTERFACE
);
set_subcategory
(
SUBCAT_INTERFACE_CONTROL
);
set_subcategory
(
SUBCAT_INTERFACE_CONTROL
);
add_integer
(
"showintf-threshold"
,
10
,
NULL
,
THRESHOLD_TEXT
,
THRESHOLD_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"showintf-threshold"
,
10
,
NULL
,
THRESHOLD_TEXT
,
THRESHOLD_LONGTEXT
,
VLC_TRUE
);
...
...
modules/control/telnet.c
View file @
998bed84
...
@@ -82,7 +82,7 @@ static void Close( vlc_object_t * );
...
@@ -82,7 +82,7 @@ static void Close( vlc_object_t * );
#define TELNETPWD_LONGTEXT N_( "Default to admin" )
#define TELNETPWD_LONGTEXT N_( "Default to admin" )
vlc_module_begin
();
vlc_module_begin
();
set_shortname
(
_
(
"Telnet"
)
);
set_shortname
(
"Telnet"
);
set_category
(
CAT_INTERFACE
);
set_category
(
CAT_INTERFACE
);
set_subcategory
(
SUBCAT_INTERFACE_GENERAL
);
set_subcategory
(
SUBCAT_INTERFACE_GENERAL
);
add_integer
(
"telnet-port"
,
4212
,
NULL
,
TELNETPORT_TEXT
,
add_integer
(
"telnet-port"
,
4212
,
NULL
,
TELNETPORT_TEXT
,
...
...
modules/demux/mkv.cpp
View file @
998bed84
...
@@ -115,7 +115,7 @@ static int Open ( vlc_object_t * );
...
@@ -115,7 +115,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
();
vlc_module_begin
();
set_shortname
(
_
(
"Matroska"
)
);
set_shortname
(
"Matroska"
);
set_description
(
_
(
"Matroska stream demuxer"
)
);
set_description
(
_
(
"Matroska stream demuxer"
)
);
set_capability
(
"demux2"
,
50
);
set_capability
(
"demux2"
,
50
);
set_callbacks
(
Open
,
Close
);
set_callbacks
(
Open
,
Close
);
...
...
modules/demux/ts.c
View file @
998bed84
...
@@ -102,7 +102,7 @@ static void Close ( vlc_object_t * );
...
@@ -102,7 +102,7 @@ static void Close ( vlc_object_t * );
vlc_module_begin
();
vlc_module_begin
();
set_description
(
_
(
"MPEG Transport Stream demuxer"
)
);
set_description
(
_
(
"MPEG Transport Stream demuxer"
)
);
set_shortname
(
_
(
"MPEG-TS"
)
);
set_shortname
(
"MPEG-TS"
);
set_category
(
CAT_INPUT
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_DEMUX
);
set_subcategory
(
SUBCAT_INPUT_DEMUX
);
...
...
modules/gui/macosx/macosx.m
View file @
998bed84
...
@@ -86,7 +86,7 @@ vlc_module_begin();
...
@@ -86,7 +86,7 @@ vlc_module_begin();
add_bool( "macosx-fill", 0, NULL, FILL_TEXT, FILL_LONGTEXT,
add_bool( "macosx-fill", 0, NULL, FILL_TEXT, FILL_LONGTEXT,
VLC_TRUE );
VLC_TRUE );
add_submodule();
add_submodule();
set_description(
_("Mac OS X OpenGL")
);
set_description(
"Mac OS X OpenGL"
);
set_capability( "opengl provider", 100 );
set_capability( "opengl provider", 100 );
set_callbacks( E_(OpenVideoGL), E_(CloseVideoGL) );
set_callbacks( E_(OpenVideoGL), E_(CloseVideoGL) );
vlc_module_end();
vlc_module_end();
...
...
modules/gui/wxwindows/wxwindows.cpp
View file @
998bed84
...
@@ -104,7 +104,7 @@ vlc_module_begin();
...
@@ -104,7 +104,7 @@ vlc_module_begin();
#else
#else
int
i_score
=
getenv
(
"DISPLAY"
)
==
NULL
?
15
:
150
;
int
i_score
=
getenv
(
"DISPLAY"
)
==
NULL
?
15
:
150
;
#endif
#endif
set_shortname
(
(
char
*
)
_
(
"wxWindows"
)
);
set_shortname
(
(
char
*
)
"wxWindows"
);
set_description
(
(
char
*
)
_
(
"wxWindows interface module"
)
);
set_description
(
(
char
*
)
_
(
"wxWindows interface module"
)
);
set_category
(
CAT_INTERFACE
);
set_category
(
CAT_INTERFACE
);
set_subcategory
(
SUBCAT_INTERFACE_GENERAL
);
set_subcategory
(
SUBCAT_INTERFACE_GENERAL
);
...
...
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