Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
d5eacbea
Commit
d5eacbea
authored
Dec 16, 2004
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Really fix all the set_name.
Sorry for the trouble
parent
8921e021
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
16 additions
and
16 deletions
+16
-16
modules/access/directory.c
modules/access/directory.c
+1
-1
modules/access/dvdnav.c
modules/access/dvdnav.c
+1
-1
modules/access/dvdread.c
modules/access/dvdread.c
+1
-1
modules/access/file.c
modules/access/file.c
+1
-1
modules/access/ftp.c
modules/access/ftp.c
+1
-1
modules/access/http.c
modules/access/http.c
+1
-1
modules/access/mms/mms.c
modules/access/mms/mms.c
+1
-1
modules/access/tcp.c
modules/access/tcp.c
+1
-1
modules/access/udp.c
modules/access/udp.c
+1
-1
modules/mux/asf.c
modules/mux/asf.c
+1
-1
modules/mux/mp4.c
modules/mux/mp4.c
+1
-1
modules/mux/mpeg/ps.c
modules/mux/mpeg/ps.c
+1
-1
modules/mux/mpeg/ts.c
modules/mux/mpeg/ts.c
+1
-1
modules/video_output/x11/glx.c
modules/video_output/x11/glx.c
+1
-1
modules/video_output/x11/x11.c
modules/video_output/x11/x11.c
+1
-1
modules/video_output/x11/xvideo.c
modules/video_output/x11/xvideo.c
+1
-1
No files found.
modules/access/directory.c
View file @
d5eacbea
...
...
@@ -76,7 +76,7 @@ static char *psz_recursive_list_text[] = { N_("none"), N_("collapse"),
vlc_module_begin
();
set_category
(
CAT_INPUT
);
set_name
(
_
(
"Directory"
)
);
set_
short
name
(
_
(
"Directory"
)
);
set_subcategory
(
SUBCAT_INPUT_ACCESS
);
set_description
(
_
(
"Standard filesystem directory input"
)
);
set_capability
(
"access2"
,
55
);
...
...
modules/access/dvdnav.c
View file @
d5eacbea
...
...
@@ -69,7 +69,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
();
set_name
(
_
(
"DVD with menus
(DVD with menu support)
"
)
);
set_
short
name
(
_
(
"DVD with menus"
)
);
set_description
(
_
(
"DVDnav Input"
)
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ACCESS
);
...
...
modules/access/dvdread.c
View file @
d5eacbea
...
...
@@ -87,7 +87,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
();
set_name
(
_
(
"DVD without menus"
)
);
set_
short
name
(
_
(
"DVD without menus"
)
);
set_description
(
_
(
"DVDRead Input (DVD without menu support)"
)
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ACCESS
);
...
...
modules/access/file.c
View file @
d5eacbea
...
...
@@ -86,7 +86,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"Standard filesystem file input"
)
);
set_name
(
_
(
"File"
)
);
set_
short
name
(
_
(
"File"
)
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ACCESS
);
add_integer
(
"file-caching"
,
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
VLC_TRUE
);
...
...
modules/access/ftp.c
View file @
d5eacbea
...
...
@@ -52,7 +52,7 @@ static void Close( vlc_object_t * );
"used for the connection.")
vlc_module_begin
();
set_name
(
"FTP"
);
set_
short
name
(
"FTP"
);
set_description
(
_
(
"FTP input"
)
);
set_capability
(
"access2"
,
0
);
set_category
(
CAT_INPUT
);
...
...
modules/access/http.c
View file @
d5eacbea
...
...
@@ -74,7 +74,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"HTTP input"
)
);
set_capability
(
"access2"
,
0
);
set_name
(
_
(
"HTTP/HTTPS"
)
);
set_
short
name
(
_
(
"HTTP/HTTPS"
)
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ACCESS
);
...
...
modules/access/mms/mms.c
View file @
d5eacbea
...
...
@@ -55,7 +55,7 @@ static void Close( vlc_object_t * );
"Always select the stream with the maximum bitrate." )
vlc_module_begin
();
set_name
(
_
(
"MMS"
)
);
set_
short
name
(
_
(
"MMS"
)
);
set_description
(
_
(
"Microsoft Media Server (MMS) input"
)
);
set_capability
(
"access2"
,
-
1
);
set_category
(
CAT_INPUT
);
...
...
modules/access/tcp.c
View file @
d5eacbea
...
...
@@ -43,7 +43,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
();
set_name
(
_
(
"TCP"
)
);
set_
short
name
(
_
(
"TCP"
)
);
set_description
(
_
(
"TCP input"
)
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ACCESS
);
...
...
modules/access/udp.c
View file @
d5eacbea
...
...
@@ -51,7 +51,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
();
set_name
(
_
(
"UDP/RTP"
)
);
set_
short
name
(
_
(
"UDP/RTP"
)
);
set_description
(
_
(
"UDP/RTP input"
)
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ACCESS
);
...
...
modules/mux/asf.c
View file @
d5eacbea
...
...
@@ -64,7 +64,7 @@ vlc_module_begin();
set_description
(
_
(
"ASF muxer"
)
);
set_category
(
CAT_SOUT
);
set_subcategory
(
SUBCAT_SOUT_MUX
);
set_name
(
"ASF"
);
set_
short
name
(
"ASF"
);
set_capability
(
"sout mux"
,
5
);
add_shortcut
(
"asf"
);
...
...
modules/mux/mp4.c
View file @
d5eacbea
...
...
@@ -56,7 +56,7 @@ vlc_module_begin();
set_description
(
_
(
"MP4/MOV muxer"
)
);
set_category
(
CAT_SOUT
);
set_subcategory
(
SUBCAT_SOUT_MUX
);
set_name
(
"MP4"
);
set_
short
name
(
"MP4"
);
add_bool
(
SOUT_CFG_PREFIX
"faststart"
,
1
,
NULL
,
FASTSTART_TEXT
,
FASTSTART_LONGTEXT
,
VLC_TRUE
);
...
...
modules/mux/mpeg/ps.c
View file @
d5eacbea
...
...
@@ -53,7 +53,7 @@ static void Close ( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"PS muxer"
)
);
set_name
(
"MPEG-PS"
);
set_
short
name
(
"MPEG-PS"
);
set_category
(
CAT_SOUT
);
set_subcategory
(
SUBCAT_SOUT_MUX
);
set_capability
(
"sout mux"
,
50
);
...
...
modules/mux/mpeg/ts.c
View file @
d5eacbea
...
...
@@ -127,7 +127,7 @@ static void Close ( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"TS muxer (libdvbpsi)"
)
);
set_name
(
"MPEG-TS"
);
set_
short
name
(
"MPEG-TS"
);
set_category
(
CAT_SOUT
);
set_subcategory
(
SUBCAT_SOUT_MUX
);
set_capability
(
"sout mux"
,
120
);
...
...
modules/video_output/x11/glx.c
View file @
d5eacbea
...
...
@@ -109,7 +109,7 @@ static void SwitchContext( vout_thread_t * );
"set it to 0 for first screen, 1 for the second.")
vlc_module_begin
();
set_name
(
N_
(
"OpenGL"
)
);
set_
short
name
(
N_
(
"OpenGL"
)
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
set_description
(
_
(
"X11 OpenGL provider"
)
);
...
...
modules/video_output/x11/x11.c
View file @
d5eacbea
...
...
@@ -64,7 +64,7 @@ extern void E_(Deactivate) ( vlc_object_t * );
"set it to 0 for first screen, 1 for the second.")
vlc_module_begin
();
set_name
(
N_
(
"X11"
)
);
set_
short
name
(
N_
(
"X11"
)
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
add_string
(
"x11-display"
,
NULL
,
NULL
,
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
VLC_TRUE
);
...
...
modules/video_output/x11/xvideo.c
View file @
d5eacbea
...
...
@@ -75,7 +75,7 @@ extern void E_(Deactivate) ( vlc_object_t * );
"set it to 0 for first screen, 1 for the second.")
vlc_module_begin
();
set_name
(
N_
(
"XVideo"
)
);
set_
short
name
(
N_
(
"XVideo"
)
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
add_string
(
"xvideo-display"
,
NULL
,
NULL
,
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
VLC_TRUE
);
...
...
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